Browse Source

Fix hover color on pointing menu #2263

pull/2300/head
jlukic 9 years ago
parent
commit
3022fa0ca9
2 changed files with 4 additions and 1 deletions
  1. 3
      src/definitions/collections/menu.less
  2. 2
      src/themes/default/collections/menu.variables

3
src/definitions/collections/menu.less

@ -1626,6 +1626,9 @@ Floated Menu / Item
.ui.vertical.pointing.menu .active.item:after { .ui.vertical.pointing.menu .active.item:after {
background-color: @arrowVerticalActiveColor; background-color: @arrowVerticalActiveColor;
} }
.ui.pointing.menu .active.item:hover:after {
background-color: @arrowActiveHoverColor;
}
.ui.vertical.pointing.menu .menu .active.item:after { .ui.vertical.pointing.menu .menu .active.item:after {
background-color: @arrowVerticalSubMenuColor; background-color: @arrowVerticalSubMenuColor;
} }

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

@ -90,7 +90,7 @@
@arrowTransition: background @defaultDuration @defaultEasing; @arrowTransition: background @defaultDuration @defaultEasing;
@arrowZIndex: 11; @arrowZIndex: 11;
@arrowHoverColor: #FAFAFA;
@arrowHoverColor: #F4F4F4;
@arrowActiveColor: #F4F4F4; @arrowActiveColor: #F4F4F4;
@arrowActiveHoverColor: @arrowActiveColor; @arrowActiveHoverColor: @arrowActiveColor;

Loading…
Cancel
Save