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 { .ui.table {
width: 100%; width: 100%;
background: @background; background: @background;
margin: @margin;
border: @border; border: @border;
box-shadow: @boxShadow; box-shadow: @boxShadow;
border-radius: @borderRadius; border-radius: @borderRadius;

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

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

Loading…
Cancel
Save