From 328608dfffe5a88e442029176d1e275c887f2bf0 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 29 Feb 2016 21:40:40 +0000 Subject: [PATCH] Colour the panel message arrows. Closes #1567 --- resources/views/partials/stylesheet.blade.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/resources/views/partials/stylesheet.blade.php b/resources/views/partials/stylesheet.blade.php index 087671d33..d34391c17 100644 --- a/resources/views/partials/stylesheet.blade.php +++ b/resources/views/partials/stylesheet.blade.php @@ -109,9 +109,13 @@ body.status-page { background-color: {{ $theme_background_fills }}; border-color: {{ color_darken($theme_background_fills, -0.1) }}; } +.panel.panel-message:before { + border-left-color: {{ $theme_background_fills }} !important; + border-right-color: {{ $theme_background_fills }} !important; +} .panel.panel-message:after { - border-left-color: {{ $theme_background_fills }}; - border-right-color: {{ $theme_background_fills }}; + border-left-color: {{ $theme_background_fills }} !important; + border-right-color: {{ $theme_background_fills }} !important; } .footer a { color: {{ $theme_text_color }};