Skip to content

Commit

Permalink
Fix #6557, specifity issue with dropdown in some menu types
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Sep 5, 2018
1 parent 8390e09 commit e70e659
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ For example when `attachable: false` is used with a modal, or if IE11/Edge is us
**Bugs**

- **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
Expand Down
4 changes: 2 additions & 2 deletions src/definitions/collections/menu.less
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
display: inline-block;
font-size: @dropdownItemIconFontSize !important;
float: @dropdownItemIconFloat;
margin: @dropdownItemIconMargin;
margin: @dropdownItemIconMargin !important;
}


Expand Down Expand Up @@ -1193,7 +1193,7 @@ Floated Menu / Item
}

/* Item */
.ui.labeled.icon.menu .item {
.ui.labeled.icon.menu .item {
min-width: @labeledIconMinWidth;
flex-direction: column;
}
Expand Down

0 comments on commit e70e659

Please sign in to comment.