diff options
author | marijus <mario@mariovavti.com> | 2014-03-08 11:24:53 +0100 |
---|---|---|
committer | marijus <mario@mariovavti.com> | 2014-03-08 11:24:53 +0100 |
commit | 56c84ba2676b474f55f73881fc0a1a56a284a29f (patch) | |
tree | 4d417b815ea24930a458d1b578bf699a3e3b9afa /view/theme | |
parent | aa8a93f1710f463f9467610cbcdc1cb754551c78 (diff) | |
download | volse-hubzilla-56c84ba2676b474f55f73881fc0a1a56a284a29f.tar.gz volse-hubzilla-56c84ba2676b474f55f73881fc0a1a56a284a29f.tar.bz2 volse-hubzilla-56c84ba2676b474f55f73881fc0a1a56a284a29f.zip |
style fixes
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/css/style.css | 18 | ||||
-rw-r--r-- | view/theme/redbasic/php/style.php | 2 |
2 files changed, 18 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 19e82b057..67aa6a3c1 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -2253,6 +2253,10 @@ blockquote { border-color: $nav_bd; } +.navbar-inverse .navbar-collapse { + border-color: $nav_bd; +} + .navbar-inverse .navbar-nav > .active > a { background-image: -webkit-linear-gradient(top, $nav_active_gradient_top 0%, $nav_active_gradient_bottom 100%); background-image: linear-gradient(to bottom, $nav_active_gradient_top 0%, $nav_active_gradient_bottom 100%); @@ -2283,12 +2287,24 @@ blockquote { color: $nav_active_icon_colour; } +.navbar-inverse .navbar-toggle { + border-color: $nav_bd; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: $nav_bg; +} + +.navbar-inverse .navbar-toggle .icon-bar { + background-color: $nav_active_icon_colour; +} + #expand-aside { color: $nav_active_icon_colour; padding: 7px 10px; } -@media screen and (max-width:767px) { +@media (max-width:767px) { aside#region_1 { background: rgba(0, 0, 0, .1); border-right: 1px solid $nav_bd; diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 4bb852a40..8fb4de381 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -81,7 +81,7 @@ if(! $a->install) { if (! $nav_active_gradient_bottom) $nav_active_gradient_bottom = "#282828"; if (! $nav_bd) - $nav_bd = "#080808"; + $nav_bd = "#222"; if (! $nav_icon_colour) $nav_icon_colour = "#999"; if (! $nav_active_icon_colour) |