From 3022fa0ca9c2616cc627900c8d4f3442ba9656f3 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 18 May 2015 12:58:16 -0400 Subject: [PATCH] Fix hover color on pointing menu #2263 --- src/definitions/collections/menu.less | 3 +++ src/themes/default/collections/menu.variables | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/definitions/collections/menu.less b/src/definitions/collections/menu.less index d8d204857..40d89de4d 100755 --- a/src/definitions/collections/menu.less +++ b/src/definitions/collections/menu.less @@ -1626,6 +1626,9 @@ Floated Menu / Item .ui.vertical.pointing.menu .active.item:after { background-color: @arrowVerticalActiveColor; } +.ui.pointing.menu .active.item:hover:after { + background-color: @arrowActiveHoverColor; +} .ui.vertical.pointing.menu .menu .active.item:after { background-color: @arrowVerticalSubMenuColor; } diff --git a/src/themes/default/collections/menu.variables b/src/themes/default/collections/menu.variables index 7b94b0f23..2a3d976a0 100644 --- a/src/themes/default/collections/menu.variables +++ b/src/themes/default/collections/menu.variables @@ -90,7 +90,7 @@ @arrowTransition: background @defaultDuration @defaultEasing; @arrowZIndex: 11; -@arrowHoverColor: #FAFAFA; +@arrowHoverColor: #F4F4F4; @arrowActiveColor: #F4F4F4; @arrowActiveHoverColor: @arrowActiveColor;