diff options
author | git-marijus <mario@mariovavti.com> | 2017-07-18 15:45:45 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2017-07-18 15:46:34 +0200 |
commit | c664a4bdcd1bd578f5ec3c2884f7c97e9f68d2d7 (patch) | |
tree | 44c184171fa50867b5ba5d59555b86ac72e1a2fb | |
parent | 8896ebf7cbf20c242399c3821be5881e6068175a (diff) | |
download | volse-hubzilla-c664a4bdcd1bd578f5ec3c2884f7c97e9f68d2d7.tar.gz volse-hubzilla-c664a4bdcd1bd578f5ec3c2884f7c97e9f68d2d7.tar.bz2 volse-hubzilla-c664a4bdcd1bd578f5ec3c2884f7c97e9f68d2d7.zip |
some fixes for the bs-default schema
-rw-r--r-- | view/theme/redbasic/schema/BS-Default.css | 7 | ||||
-rw-r--r-- | view/theme/redbasic/schema/BS-Default.php | 20 |
2 files changed, 12 insertions, 15 deletions
diff --git a/view/theme/redbasic/schema/BS-Default.css b/view/theme/redbasic/schema/BS-Default.css new file mode 100644 index 000000000..9045d3b97 --- /dev/null +++ b/view/theme/redbasic/schema/BS-Default.css @@ -0,0 +1,7 @@ +.navbar-dark .navbar-toggler { + color: rgba(0,0,0,0.7); +} + +#notifications-btn.text-white { + color: #777 !important; +} diff --git a/view/theme/redbasic/schema/BS-Default.php b/view/theme/redbasic/schema/BS-Default.php index ce464fe2c..14ee130d9 100644 --- a/view/theme/redbasic/schema/BS-Default.php +++ b/view/theme/redbasic/schema/BS-Default.php @@ -1,22 +1,12 @@ <?php if (! $nav_bg) - $nav_bg = "#f8f8f8"; - if (! $nav_bd) - $nav_bd = "#e7e7e7"; - if (! $nav_gradient_top) - $nav_gradient_top = "#fff"; - if (! $nav_gradient_bottom) - $nav_gradient_bottom = "#f8f8f8"; - if (! $nav_active_gradient_top) - $nav_active_gradient_top = "#ebebeb"; - if (! $nav_active_gradient_bottom) - $nav_active_gradient_bottom = "#f3f3f3"; + $nav_bg = "#f8f9fa"; if (! $nav_icon_colour) - $nav_icon_colour = "#777"; + $nav_icon_colour = "rgba(0, 0, 0, 0.5);"; if (! $nav_active_icon_colour) - $nav_active_icon_colour = "#555"; + $nav_active_icon_colour = "rgba(0, 0, 0, 0.7)"; if (! $radius) - $radius = "4"; + $radius = "4px"; if (! $banner_colour) - $banner_colour = "#777"; + $banner_colour = "rgba(0, 0, 0, 0.7)"; |