Browse Source

#1475, quick fix before flexbox merge for dropdown hover

pull/1890/head
jlukic 9 years ago
parent
commit
f0109a06ac
2 changed files with 6 additions and 0 deletions
  1. 5
      src/definitions/collections/menu.less
  2. 1
      src/themes/default/collections/menu.variables

5
src/definitions/collections/menu.less

@ -1172,6 +1172,11 @@
}
.ui.inverted.menu .dropdown .menu .item {
color: @dropdownTextColor !important;
transition: none;
}
.ui.inverted.menu .dropdown .menu .item:hover {
background: @dropdownBackgroundHover !important;
color: @dropdownTextColorHover !important;
}
.ui.inverted.menu .item.disabled,
.ui.inverted.menu .item.disabled:hover {

1
src/themes/default/collections/menu.variables

@ -124,6 +124,7 @@
@dropdownPointingDistance: 0px;
@dropdownTextColor: @textColor;
@dropdownBackgroundHover: @transparentBlack;
@dropdownTextColorHover: @darkTextColor;
@dropdownIconMargin: 0em 0em 0em 1em;

Loading…
Cancel
Save