Partial overriding of the status page colours!
This commit is contained in:
@@ -13,6 +13,8 @@
|
||||
<link href='http://fonts.googleapis.com/css?family=Raleway:400,700,300,600' rel='stylesheet' type='text/css'>
|
||||
<link rel="stylesheet" href="{{ elixir('css/all.css') }}">
|
||||
|
||||
@include('partials.stylesheet')
|
||||
|
||||
<script src="{{ elixir('js/all.js') }}"></script>
|
||||
</head>
|
||||
<body class='status-page'>
|
||||
|
||||
10
app/views/partials/stylesheet.blade.php
Normal file
10
app/views/partials/stylesheet.blade.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<style type='text/css'>
|
||||
body.status-page {
|
||||
@if($styleBackgroundColor = Setting::get('style_background_color'))
|
||||
background-color: {{ $styleBackgroundColor }};
|
||||
@endif
|
||||
@if($styleTextColor = Setting::get('style_text_color'))
|
||||
color: {{ $styleTextColor }};
|
||||
@endif
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user