From: Ian Weller Date: Wed, 10 Aug 2016 20:20:38 +0000 (-0400) Subject: updating the dropdown indicator X-Git-Tag: v1.0.0^2~151 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=cd3a5b157f868658fff579d7777ddc4fd90fc36f;p=WP-Themes%2Fpetoskeyarea.git updating the dropdown indicator --- diff --git a/assets/dropdown-hlighlight-big.png b/assets/dropdown-hlighlight-big.png new file mode 100644 index 0000000..7f24526 Binary files /dev/null and b/assets/dropdown-hlighlight-big.png differ diff --git a/css/app.css b/css/app.css index 3cb8360..672b9b8 100644 --- a/css/app.css +++ b/css/app.css @@ -6428,14 +6428,14 @@ header { .top-bar-section ul li:not(.has-form):not(.active) > a:not(.button) { background: transparent; } .top-bar-section ul li.has-dropdown:hover:after { - content: url(../assets/green-dropdown-indicator.jpg); + content: url(../assets/dropdown-hlighlight-big.png); position: absolute; - left: 35%; + left: 25%; bottom: -6px; } .top-bar-section ul li.has-dropdown:nth-child(2):hover:after { - content: url(../assets/green-dropdown-indicator.jpg); + content: url(../assets/dropdown-hlighlight-big.png); position: absolute; - left: 20%; + left: 10%; bottom: -6px; } .top-bar-section ul li.has-dropdown ul.dropdown { background: #FFFFFF; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index fef9a3d..e6ed596 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -46,18 +46,18 @@ &.has-dropdown { &:hover { &:after { - content: url(../assets/green-dropdown-indicator.jpg); + content: url(../assets/dropdown-hlighlight-big.png); position: absolute; - left: 35%; + left: 25%; bottom: -6px; } } &:nth-child(2) { &:hover { &:after { - content: url(../assets/green-dropdown-indicator.jpg); + content: url(../assets/dropdown-hlighlight-big.png); position: absolute; - left: 20%; + left: 10%; bottom: -6px; } }