Since we no longer ask for # in the setting, let's prefix

This commit is contained in:
James Brooks
2014-12-20 18:34:34 +00:00
parent ccfab70668
commit d04da0ba78

View File

@@ -1,10 +1,10 @@
<style type='text/css'>
body.status-page {
@if($styleBackgroundColor = Setting::get('style_background_color'))
background-color: {{ $styleBackgroundColor }};
background-color: #{{ $styleBackgroundColor }};
@endif
@if($styleTextColor = Setting::get('style_text_color'))
color: {{ $styleTextColor }};
color: #{{ $styleTextColor }};
@endif
}
</style>