Browse Source

Fix horizontal segments inside grids

pull/1129/head
jlukic 10 years ago
parent
commit
05f454447a
2 changed files with 6 additions and 1 deletions
  1. 6
      src/definitions/collections/grid.less
  2. 1
      src/definitions/elements/segment.less

6
src/definitions/collections/grid.less

@ -130,6 +130,12 @@
margin: (@rowSpacing / 2) (@gutterWidth / 2);
}
/* remove Border on last horizontal segment */
.ui.grid > .row > .column:last-child > .horizontal.segment,
.ui.grid > .column:last-child > .horizontal.segment {
box-shadow: none;
}
/*******************************
Variations
*******************************/

1
src/definitions/elements/segment.less

@ -85,7 +85,6 @@
padding-left: 0em;
}
.ui.horizontal.segment:last-child {
box-shadow: none;
padding-right: 0em;
}

Loading…
Cancel
Save