Browse Source

Fix table margins, border radius on colored

pull/993/head
jlukic 10 years ago
parent
commit
facedc3f84
2 changed files with 5 additions and 3 deletions
  1. 1
      src/definitions/collections/table.less
  2. 7
      src/themes/packages/default/collections/table.variables

1
src/definitions/collections/table.less

@ -27,6 +27,7 @@
.ui.table {
width: 100%;
background: @background;
margin: @margin;
border: @border;
box-shadow: @boxShadow;
border-radius: @borderRadius;

7
src/themes/packages/default/collections/table.variables

@ -3,9 +3,10 @@
*******************************/
/*-------------------
Collection
Element
--------------------*/
@margin: 1em 0em;
@borderCollapse: separate;
@borderSpacing: 0px;
@transition: all 0.2s @defaultEasing;
@ -16,7 +17,7 @@
@boxShadow: none;
/*--------------
Elements
Parts
---------------*/
/* Table Row */
@ -142,7 +143,7 @@
/* Colors */
@coloredBorderSize: 0.2em;
@coloredBorderRadius: 0em;
@coloredBorderRadius: @borderRadius;
/* Inverted */
@invertedBackground: #333333;

Loading…
Cancel
Save