Browse Source

Fixes min-width on fluid labeled icon menu

pull/1574/head
jlukic 10 years ago
parent
commit
d3b3ea387f
2 changed files with 6 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 5
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -16,6 +16,7 @@
- **Popup** - Fix issue with `ui popup` receiving error ``$offsetParent is undefined`` when using a pre-defined popup
- **Popup** - Fix issue with ``ui popup` not appearing with ``ui flowing popup`` due to newly added ``min-width: max-content``
- **Form** - ``ui search dropdown`` inside a form has incorrect focus style
- **Menu** - Fixes ``ui fluid labeled icon menu`` to not have `min-width`
### Version 1.5.2 - January 02, 2015

5
src/definitions/collections/menu.less

@ -1063,6 +1063,11 @@
.ui.labeled.icon.menu {
text-align: center;
}
.ui.fluid.labeled.icon.menu > .item {
min-width: 0em;
}
.ui.labeled.icon.menu > .item {
min-width: @labeledIconMinWidth;
}

Loading…
Cancel
Save