diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index 7e0752f5f1..2e47761115 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -417,6 +417,10 @@ nav.navbar { z-index: 1030; color: $nav_icon_color; } +#topbar-first .navbar-toggle { + margin-top: 5px; + margin-bottom: 0; +} #topbar-first .nav > li > a, #topbar-first .nav > li > button, nav.navbar .nav > li > a, @@ -657,6 +661,21 @@ nav.navbar .nav > li > button:focus margin: 0px; padding: 12px 12px; } +#search-mobile { + position: fixed; + top: 90px; + left: 0; + right: 0; + z-index: 2; + + background-color: $background_color; + + /* fix bootstrap .well class not playing well with data-target slide animation */ + margin: 0; + padding: 0; + min-height: 0; + border-radius: 0; +} #search-mobile .navbar-form { margin: 0; } @@ -1398,9 +1417,9 @@ textarea.comment-edit-text:focus + .comment-edit-form .preview { .panel { border: none; background-color: rgba(255,255,255,$contentbg_transp); - box-shadow: 0 0 3px #dadada; - -webkit-box-shadow: 0 0 3px #dadada; - -moz-box-shadow: 0 0 3px #dadada; + box-shadow: 0 0 2px #dadada; + -webkit-box-shadow: 0 0 2px #dadada; + -moz-box-shadow: 0 0 2px #dadada; border-radius: 4px; position: relative; } @@ -1460,6 +1479,13 @@ aside .panel-body { border-top: none; } +.comment-edit-preview .wall-item-container.panel-body.preview { + margin-top: 4px; +} +.comment-edit-preview .panel { + margin-bottom: 0; +} + .wall-item-container .media { margin-top: 0; padding: 10px; @@ -1847,6 +1873,7 @@ wall-item-comment-wrapper.well { background-color: rgba(237, 237, 237, $contentbg_transp); background-image: none; margin-bottom: 1px; + background-color: red; } wall-item-comment-wrapper.well-small { padding: 10px; @@ -1908,6 +1935,7 @@ wall-item-comment-wrapper.well hr { .comment-edit-submit-wrapper { text-align: right; + margin-bottom: 0; } .comment-icon-list { @@ -3420,7 +3448,6 @@ section .profile-match-wrapper { left: 10%; z-index: -1; } - } /* Mobile display */ diff --git a/view/theme/frio/scheme/dark.php b/view/theme/frio/scheme/dark.php index 865f6d8dfe..eb1d3ca7bd 100644 --- a/view/theme/frio/scheme/dark.php +++ b/view/theme/frio/scheme/dark.php @@ -16,13 +16,14 @@ switch ($scheme_accent) { default: $link_color = '#' . $accentColor->lighten(25); } -$nav_icon_color = $scheme_accent; +$nav_icon_color = '#' . $accentColor->lighten(40); $nav_icon_hover_color = '#' . $accentColor->darken(20); + switch ($scheme_accent) { case FRIO_SCHEME_ACCENT_GREEN: case FRIO_SCHEME_ACCENT_RED: - $nav_bg = '#' . $accentColor->darken(25); - $background_color = '#' . $accentColor->darken(27); + $nav_bg = '#' . $accentColor->darken(27); + $background_color = '#' . $accentColor->darken(29); break; default: $nav_bg = '#' . $accentColor->darken(30); diff --git a/view/theme/frio/style.php b/view/theme/frio/style.php index b70f5657ab..0a69fea991 100644 --- a/view/theme/frio/style.php +++ b/view/theme/frio/style.php @@ -188,8 +188,8 @@ $options = [ '$background_repeat' => $background_repeat, '$login_bg_image' => $login_bg_image, '$login_bg_color' => $login_bg_color, - '$font_color_darker' => $font_color_darker ?? '#555', - '$font_color' => $font_color ?? '#777', + '$font_color_darker' => $font_color_darker ?? '#222', + '$font_color' => $font_color ?? '#444', ]; $css_tpl = file_get_contents('view/theme/frio/css/style.css'); diff --git a/view/theme/frio/templates/nav.tpl b/view/theme/frio/templates/nav.tpl index bb999c479d..705f02396a 100644 --- a/view/theme/frio/templates/nav.tpl +++ b/view/theme/frio/templates/nav.tpl @@ -25,51 +25,51 @@ {{* Buttons for the mobile view *}} {{* Left section of the NavBar with navigation shortcuts/icons *}}