Browse Source

Fix basic table segment

pull/1063/head
jlukic 10 years ago
parent
commit
6a42e3dfb1
2 changed files with 12 additions and 1 deletions
  1. 12
      src/definitions/elements/segment.less
  2. 1
      src/themes/packages/default/elements/segment.variables

12
src/definitions/elements/segment.less

@ -25,7 +25,7 @@
.ui.segment { .ui.segment {
position: relative; position: relative;
background-color: @white;
background-color: @background;
box-shadow: @boxShadow; box-shadow: @boxShadow;
@ -85,10 +85,12 @@
Loose Coupling Loose Coupling
--------------------*/ --------------------*/
/* Menu */
.ui.pointing.menu + .ui.attached.segment { .ui.pointing.menu + .ui.attached.segment {
top: 1px; top: 1px;
} }
/* Grid */
.ui.page.grid.segment, .ui.page.grid.segment,
.ui.grid .ui.segment.column { .ui.grid .ui.segment.column {
padding-top: @pageGridMargin; padding-top: @pageGridMargin;
@ -102,6 +104,14 @@
border: none; border: none;
} }
/* Table */
.ui.basic.table.segment {
background: @background;
border-radius: @borderRadius;
border: @border;
box-shadow: @boxShadow;
}
/******************************* /*******************************
Types Types

1
src/themes/packages/default/elements/segment.variables

@ -6,6 +6,7 @@
Element Element
--------------------*/ --------------------*/
@background: @white;
@borderWidth: 1px; @borderWidth: 1px;
@border: none; @border: none;

Loading…
Cancel
Save