Browse Source

Fix dropdown opening leftward inside menu

placeholder
Jack 6 years ago
parent
commit
56366b96d3
2 changed files with 3 additions and 2 deletions
  1. 3
      RELEASE-NOTES.md
  2. 2
      src/definitions/collections/menu.less

3
RELEASE-NOTES.md

@ -17,8 +17,9 @@ 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** - Fixed `left menu` inside `ui menu` would display horizontally as `flex` #6359
- **Dimmer** - Dimmer now sets `variation` at runtime, to support run-time swapping between `top aligned` and `middle aligned` using `.dimmer('setting', 'variation', 'top aligned')`
- **Modal** - Modal now will remove `blurring` after undimming, to prevent issues with position: fixed #6520
- **Modal** - Modal now will remove `blurring` after undimming, to prevent issues with `position: fixed` #6520
- **Menu/Dropdown** - Fixes dropdown item margin not obeyed inside `labeled icon menu` #6557
- **Modal** - Fixes `@mobileTopAlignedMargin` theming variable was not implemented
- **List** - Fixed issue where `content` would not take up 100% width when used alongside `img` or `icon`

2
src/definitions/collections/menu.less

@ -468,7 +468,7 @@ Floated Menu / Item
/* Left Floated */
.ui.menu:not(.vertical) .left.item,
.ui.menu:not(.vertical) .left.menu {
.ui.menu:not(.vertical) :not(.dropdown) > .left.menu {
display: flex;
margin-right: auto !important;
}

Loading…
Cancel
Save