Browse Source

Removes negative margin on adjacent segment #1587

pull/1615/head
jlukic 10 years ago
parent
commit
fef80ad974
2 changed files with 2 additions and 1 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -10,6 +10,7 @@
- **Modules** - Remove use of deprecated `.size()` for `.length` across all modules
**Bugs**
- **Segment** - ``ui tabular menu`` now correctly aligns with attached segment when using fluid variation
- **Steps** - Steps now use ``table-cell`` to allow steps to be equal height by default, even with different content height.
- **Button** - Fix issue with labeled icon groups in material theme

2
src/definitions/collections/menu.less

@ -651,7 +651,7 @@
}
.ui.tabular.menu ~ .bottom.attached.segment {
border-top: none;
margin: -1px 0px 0px;
margin: 0px;
}

Loading…
Cancel
Save