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

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

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

Loading…
Cancel
Save