Browse Source

#4248 Fix issue with attached item menu #4248

pull/5513/head
Jack 7 years ago
parent
commit
bdb1928465
2 changed files with 4 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 3
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -32,6 +32,7 @@
- **Input** - Fixes disabled style being applied twice on input **Thanks @levithomason** #5284 - **Input** - Fixes disabled style being applied twice on input **Thanks @levithomason** #5284
- **Message** - Fix issue with `compact icon message` not appearing compact #4759 - **Message** - Fix issue with `compact icon message` not appearing compact #4759
- **Menu** - Fixed issue where `left menu` and `right menu` did not display correctly in `stackable menu` on mobile #3604 #5116 **Thanks @BleuDiamant @Traverse** - **Menu** - Fixed issue where `left menu` and `right menu` did not display correctly in `stackable menu` on mobile #3604 #5116 **Thanks @BleuDiamant @Traverse**
- **Menu** - Fixed issue where `(x) item attached menu` was off by 1 pixel due to a css inheritance issue #4248
- **Popup** - Fixed issue where popup would incorrectly add itself to the wrong offset context when using `popup` and `target` setting together in cases where the `target` has a different `offsetParent` than the activating element. - **Popup** - Fixed issue where popup would incorrectly add itself to the wrong offset context when using `popup` and `target` setting together in cases where the `target` has a different `offsetParent` than the activating element.
- **Segment** - Fixed issue where using colored segment e.g. `red segment` inside `segments` would not work when `:first-child` #4013 - **Segment** - Fixed issue where using colored segment e.g. `red segment` inside `segments` would not work when `:first-child` #4013
- **Sticky** - Fixed an issue where `ui sticky` used with a percentage based width would not resize properly if the content size of container changed when "stuck" #4360 - **Sticky** - Fixed an issue where `ui sticky` used with a percentage based width would not resize properly if the content size of container changed when "stuck" #4360

3
src/definitions/collections/menu.less

@ -1654,6 +1654,9 @@ Floated Menu / Item
text-align: center; text-align: center;
justify-content: center; justify-content: center;
} }
.ui.attached.item.menu {
margin: 0em @attachedHorizontalOffset !important;
}
.ui.item.menu .item:last-child:before { .ui.item.menu .item:last-child:before {
display: none; display: none;

Loading…
Cancel
Save