From 1c2906fdd022192f06b1b5c06bd903c3e41c1132 Mon Sep 17 00:00:00 2001 From: Laury GvR Date: Mon, 1 Feb 2016 15:28:22 -0500 Subject: [PATCH] Add border around topbar dropdown --- css/app.css | 8 +++++++- scss/_topbar.scss | 6 ++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/css/app.css b/css/app.css index 59576bf..5e810f1 100644 --- a/css/app.css +++ b/css/app.css @@ -6511,7 +6511,13 @@ header { min-width: 585px; background: #FFFFFF; border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; } + border-bottom-right-radius: 5px; + border-color: #3a8bb6; + border-left-width: 1px; + border-bottom-width: 1px; + border-right-width: 1px; + border-top-width: 0; + border-style: solid; } .top-bar-section ul li .dropdown li { position: relative; display: inline-block; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index f2f4699..5c8b7ba 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -107,6 +107,12 @@ background: $white; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; + border-color: $l-blue; + border-left-width: 1px; + border-bottom-width: 1px; + border-right-width: 1px; + border-top-width: 0; + border-style: solid; li { position: relative; display: inline-block; -- 2.17.1