Browse Source

Fix #6557, specifity issue with dropdown in some menu types

pull/6294/merge
Jack 6 years ago
parent
commit
e70e659dd9
2 changed files with 3 additions and 2 deletions
  1. 1
      RELEASE-NOTES.md
  2. 4
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -16,6 +16,7 @@ For example when `attachable: false` is used with a modal, or if IE11/Edge is us
**Bugs** **Bugs**
- **Dropdown** - Fixed issue where `onChange` when used with `action: hide` would be missing the third param `$item` #6555 - **Dropdown** - Fixed issue where `onChange` when used with `action: hide` would be missing the third param `$item` #6555
- **Menu/Dropdown** - Fixes dropdown item margin not obeyed inside `labeled icon menu` #6557
### Version 2.3.3 - June 18, 2018 ### Version 2.3.3 - June 18, 2018

4
src/definitions/collections/menu.less

@ -254,7 +254,7 @@
display: inline-block; display: inline-block;
font-size: @dropdownItemIconFontSize !important; font-size: @dropdownItemIconFontSize !important;
float: @dropdownItemIconFloat; float: @dropdownItemIconFloat;
margin: @dropdownItemIconMargin;
margin: @dropdownItemIconMargin !important;
} }
@ -1193,7 +1193,7 @@ Floated Menu / Item
} }
/* Item */ /* Item */
.ui.labeled.icon.menu .item {
.ui.labeled.icon.menu .item {
min-width: @labeledIconMinWidth; min-width: @labeledIconMinWidth;
flex-direction: column; flex-direction: column;
} }

Loading…
Cancel
Save