From 574f8c2d8d887566d8ad6b62d54922fb9a8dd8d6 Mon Sep 17 00:00:00 2001 From: Alex P Date: Wed, 30 Nov 2016 15:30:32 -0800 Subject: [PATCH] Fixing dropdown item hover state UI bug --- ui/src/style/enterprise_style/theme-dark.scss | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/ui/src/style/enterprise_style/theme-dark.scss b/ui/src/style/enterprise_style/theme-dark.scss index 0efbc742fd..eddc1295b5 100644 --- a/ui/src/style/enterprise_style/theme-dark.scss +++ b/ui/src/style/enterprise_style/theme-dark.scss @@ -107,6 +107,10 @@ > li { width: 100%; font-size: 0px; + + &:hover { + @include gradient-h($c-laser,$c-pool); + } } > li > a { width: 100%; @@ -123,7 +127,7 @@ &:hover { cursor: pointer; - @include gradient-h($c-laser,$c-pool); + background-color: transparent; color: $g20-white !important; } } @@ -138,11 +142,13 @@ @include custom-scrollbar($c-rainforest,$c-honeydew); @include gradient-h($c-pool,$c-rainforest); + > li:hover { + @include gradient-h($c-laser,$c-rainforest); + } > li > a { color: $c-mint !important; &:hover { color: $g20-white !important; - @include gradient-h($c-laser,$c-rainforest); } } } @@ -150,11 +156,13 @@ @include custom-scrollbar($c-comet,$c-potassium); @include gradient-h($c-ocean,$c-comet); + > li:hover { + @include gradient-h($c-laser,$c-comet); + } > li > a { color: $c-cremedeviolette !important; &:hover { color: $g20-white !important; - @include gradient-h($c-laser,$c-comet); } } }