Browse Source

Fixes vertical text menu includes horizontal padding

pull/4107/head
Jack Lukic 8 years ago
parent
commit
00587e1e52
2 changed files with 3 additions and 0 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      src/definitions/collections/menu.less

1
RELEASE-NOTES.md

@ -106,6 +106,7 @@
- **List** - Bullets would be affected by font weight, or whether the list item was a link #3715 #3721 - **List** - Bullets would be affected by font weight, or whether the list item was a link #3715 #3721
- **List** - Divided lists had unnecessary padding on first and last items, in both horizontal and vertical layouts #3710 - **List** - Divided lists had unnecessary padding on first and last items, in both horizontal and vertical layouts #3710
- **Menu** - `stackable` menu with `left/right` `menu` or `item` would incorrectly be floated when stacked. #3604 - **Menu** - `stackable` menu with `left/right` `menu` or `item` would incorrectly be floated when stacked. #3604
- **Menu** - `vertical text menu` no longer includes `left` or `right` padding, but will now sit flush with content.
- **Menu** - `@dividerSize` was not being used in `vertical menu` #3781 - **Menu** - `@dividerSize` was not being used in `vertical menu` #3781
- **Modal** - RGB values set for dimmer `background-color` were not being correctly interpreted #3665 **Thanks @larsbo** - **Modal** - RGB values set for dimmer `background-color` were not being correctly interpreted #3665 **Thanks @larsbo**
- **Modal/Dimmer** - Fixed issue with `destroy` not properly removing events from dimmer #3200 - **Modal/Dimmer** - Fixed issue with `destroy` not properly removing events from dimmer #3200

2
src/definitions/collections/menu.less

@ -1071,6 +1071,8 @@ Floated Menu / Item
} }
.ui.vertical.text.menu .item { .ui.vertical.text.menu .item {
margin: @textVerticalMenuItemMargin; margin: @textVerticalMenuItemMargin;
padding-left: 0em;
padding-right: 0em;
} }
.ui.vertical.text.menu .item > i.icon { .ui.vertical.text.menu .item > i.icon {
float: @textVerticalMenuIconFloat; float: @textVerticalMenuIconFloat;

Loading…
Cancel
Save