Browse Source

#2778 fix issue with flex-direction on left dropdown menu in menu

pull/2755/merge
Jack Lukic 9 years ago
parent
commit
2c8aa03bb4
2 changed files with 2 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 1
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -31,6 +31,7 @@
- **Modal** - Fix autofocus setting in modal not working due to improper selector #2737 - **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 - **Modal** - Increased `close` specificity, modal will now only close on `> .close` #2736
- **Transition** - Transition callbacks now all have the correct `this` set. #2758 - **Transition** - Transition callbacks now all have the correct `this` set. #2758
- **Dropdown** - Fix `left menu` inside `ui menu` appearing horizontally #2778
**Additional Bugs** **Additional Bugs**
- **Build Tools** - Fixes issue on `win` platform where packaged theme would not correctly update when using watch due to regExp not matching windows path separators. - **Build Tools** - Fixes issue on `win` platform where packaged theme would not correctly update when using watch due to regExp not matching windows path separators.

1
src/definitions/collections/menu.less

@ -229,6 +229,7 @@
background: @dropdownBackground; background: @dropdownBackground;
margin: @dropdownMenuDistance 0px 0px; margin: @dropdownMenuDistance 0px 0px;
box-shadow: @dropdownMenuBoxShadow; box-shadow: @dropdownMenuBoxShadow;
flex-direction: column !important;
} }

Loading…
Cancel
Save