From 0654d34d60192ce3577c66244829bb572c61f3ec Mon Sep 17 00:00:00 2001 From: Robert Martinez Date: Sat, 20 Oct 2018 11:44:46 +0200 Subject: [PATCH] Fix wrong color in mobile menu This should fix issue #1319. Reviewed-by: James Valleroy --- static/themes/default/css/plinth.css | 5 +++++ static/themes/default/css/responsive.css | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/static/themes/default/css/plinth.css b/static/themes/default/css/plinth.css index a4ad23450..a84513586 100644 --- a/static/themes/default/css/plinth.css +++ b/static/themes/default/css/plinth.css @@ -267,6 +267,11 @@ footer license-info p { .main-header .navbar-nav>li>a .nav-icon { margin-right: 0px; } + +.navbar-default .navbar-toggle .icon-bar { + background-color: #FFF; +} + /* applying styles to header - end */ .card-list { diff --git a/static/themes/default/css/responsive.css b/static/themes/default/css/responsive.css index 51bbea017..d44437216 100644 --- a/static/themes/default/css/responsive.css +++ b/static/themes/default/css/responsive.css @@ -6,4 +6,10 @@ footer{ position: relative; } -} \ No newline at end of file + + .navbar-default .navbar-nav .open .dropdown-menu > li > a, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover { + color: #FFF; + } + +}