Browse Source

Adds flex-shrink value for menu item

pull/2743/head
jlukic 9 years ago
parent
commit
065524a170
2 changed files with 5 additions and 0 deletions
  1. 4
      RELEASE-NOTES.md
  2. 1
      src/definitions/collections/menu.less

4
RELEASE-NOTES.md

@ -10,6 +10,10 @@
- **Modal** - Fix autofocus setting in modal not working due to improper selector #2737
- **Modal** - Increased `close` specificity, modal will now only close on `> .close` #2736
**Additional Bugs**
- **Menu** - Added `flex: 0 0 auto` to menu item to make sure menu do not collapse text content to reduce space
**[Merged PR](https://github.com/Semantic-Org/Semantic-UI/issues?q=is%3Aissue+milestone%3A2.1.0+is%3Aclosed)**
- **Menu** - Fixes tabular menu missing variable for background. **Thanks @frontdevde**

1
src/definitions/collections/menu.less

@ -82,6 +82,7 @@
line-height: 1;
text-decoration: none;
-webkit-tap-highlight-color: transparent;
flex: 0 0 auto;
user-select: none;
background: @itemBackground;

Loading…
Cancel
Save