Merge pull request #7361 from JeroenED/bugfix/frio-header-color-php
[FRIO] fixing chromium mobile navbar color when not logged in
This commit is contained in:
commit
a06de3127f
|
@ -53,6 +53,10 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
|
||||||
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
|
$nav_bg = PConfig::get($uid, 'frio', 'nav_bg');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (empty($nav_bg)) {
|
||||||
|
$nav_bg = Config::get('frio', 'nav_bg');
|
||||||
|
}
|
||||||
|
|
||||||
if (empty($nav_bg) || !is_string($nav_bg)) {
|
if (empty($nav_bg) || !is_string($nav_bg)) {
|
||||||
$nav_bg = "#708fa0";
|
$nav_bg = "#708fa0";
|
||||||
}
|
}
|
||||||
|
@ -79,7 +83,7 @@ $is_singleuser_class = $is_singleuser ? "is-singleuser" : "is-not-singleuser";
|
||||||
// special minimal style for modal dialogs
|
// special minimal style for modal dialogs
|
||||||
if ($minimal) {
|
if ($minimal) {
|
||||||
?>
|
?>
|
||||||
<!-- <?php echo __FILE__ ?> -->
|
<!-- <?php echo __FILE__ ?> -->
|
||||||
<section class="minimal">
|
<section class="minimal">
|
||||||
<?php if (!empty($page['content'])) echo $page['content']; ?>
|
<?php if (!empty($page['content'])) echo $page['content']; ?>
|
||||||
<div id="page-footer"></div>
|
<div id="page-footer"></div>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user