From 3617b5b1e8a2f044e38a75034144357f075dcaea Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Mon, 1 Feb 2016 15:39:02 -0500 Subject: [PATCH] Side borders on topbar hover --- css/app.css | 8 ++++++++ scss/_topbar.scss | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/css/app.css b/css/app.css index 5e810f1..05585dc 100644 --- a/css/app.css +++ b/css/app.css @@ -6452,6 +6452,14 @@ header { .tab-bar .tab-bar-section.middle { text-align: right; } +#menu-main-menu .top-bar-section ul li:hover:not(.has-form) > a { + border-left-width: 1px; + border-right-width: 1px; + border-top-width: 0; + border-bottom-width: 0; + border-color: #3a8bb6; + border-style: solid; } + .top-bar-section { background: transparent; float: none; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index 5c8b7ba..76d80b6 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -13,6 +13,14 @@ text-align: right; } } +#menu-main-menu .top-bar-section ul li:hover:not(.has-form) > a { + border-left-width: 1px; + border-right-width: 1px; + border-top-width: 0; + border-bottom-width: 0; + border-color: $l-blue; + border-style: solid; +} .top-bar-section { background: transparent; float: none; -- 2.17.1