diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2014-04-17 15:18:53 +0000 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2014-04-17 15:18:53 +0000 |
commit | ca5f7ef446a230e53daeb1e6ca8c6ff5d69a6a18 (patch) | |
tree | c05760d4dae502eaed8871128c8e6b74b91fcb04 /view/theme/redbasic/css | |
parent | 083cf12d48760a553c2ea857bb88c1d2f3902818 (diff) | |
download | volse-hubzilla-ca5f7ef446a230e53daeb1e6ca8c6ff5d69a6a18.tar.gz volse-hubzilla-ca5f7ef446a230e53daeb1e6ca8c6ff5d69a6a18.tar.bz2 volse-hubzilla-ca5f7ef446a230e53daeb1e6ca8c6ff5d69a6a18.zip |
Last 3 dropdown menus fixed for dark schema. Dark schema completed (by now).
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 35cf66991..033be8564 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1541,15 +1541,15 @@ header { } -#nav-notify-menu { +#nav-notify-menu, #nav-network-menu, #nav-home-menu { background: $notify_bgcolour; } -#nav-notify-menu a { +#nav-notify-menu a, #nav-network-menu a, #nav-home-menu a { color: $notify_linkcolour; } -#nav-notify-menu a:hover { +#nav-notify-menu a:hover, #nav-network-menu a:hover, #nav-home-menu a:hover { background: $notify_bghover; } @@ -2139,6 +2139,21 @@ nav .dropdown-menu { border-top-left-radius: 0px; border-bottom-right-radius: $radiuspx; border-bottom-left-radius: $radiuspx; + background-color: $notify_bgcolour; +} + +nav .dropdown-menu .divider{ + background-color: $navmenu_bgchover; +} + +nav .dropdown-menu>li>a{ + color: $notify_linkcolour; +} + +nav .dropdown-menu>li>a:hover,nav .dropdown-menu>li>a:focus{ + color: $notify_linkcolour; + background-color: $navmenu_bgchover; + $navmenu_bgimage } #usermenu-caret { |