mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-04-22 16:23:06 +03:00
Fixed theme color elements not showing on new instance
Also cleaned notification session access
This commit is contained in:
parent
991dd8a558
commit
d582e76fed
@ -5,6 +5,8 @@
|
||||
*/
|
||||
return [
|
||||
|
||||
'app-editor' => 'wysiwyg'
|
||||
'app-editor' => 'wysiwyg',
|
||||
'app-color' => '#0288D1',
|
||||
'app-color-light' => 'rgba(21, 101, 192, 0.15)'
|
||||
|
||||
];
|
@ -1,4 +1,3 @@
|
||||
@if(Setting::get('app-color'))
|
||||
<style>
|
||||
header, #back-to-top, .primary-background {
|
||||
background-color: {{ Setting::get('app-color') }} !important;
|
||||
@ -19,4 +18,3 @@
|
||||
color: {{ Setting::get('app-color') }};
|
||||
}
|
||||
</style>
|
||||
@endif
|
@ -1,12 +1,12 @@
|
||||
|
||||
<div class="notification anim pos" @if(!Session::has('success')) style="display:none;" @endif>
|
||||
<i class="zmdi zmdi-check-circle"></i> <span>{!! nl2br(htmlentities(Session::get('success'))) !!}</span>
|
||||
<div class="notification anim pos" @if(!session()->has('success')) style="display:none;" @endif>
|
||||
<i class="zmdi zmdi-check-circle"></i> <span>{!! nl2br(htmlentities(session()->get('success'))) !!}</span>
|
||||
</div>
|
||||
|
||||
<div class="notification anim warning stopped" @if(!Session::has('warning')) style="display:none;" @endif>
|
||||
<i class="zmdi zmdi-info"></i> <span>{!! nl2br(htmlentities(Session::get('warning'))) !!}</span>
|
||||
<div class="notification anim warning stopped" @if(!session()->has('warning')) style="display:none;" @endif>
|
||||
<i class="zmdi zmdi-info"></i> <span>{!! nl2br(htmlentities(session()->get('warning'))) !!}</span>
|
||||
</div>
|
||||
|
||||
<div class="notification anim neg stopped" @if(!Session::has('error')) style="display:none;" @endif>
|
||||
<i class="zmdi zmdi-alert-circle"></i> <span>{!! nl2br(htmlentities(Session::get('error'))) !!}</span>
|
||||
<div class="notification anim neg stopped" @if(!session()->has('error')) style="display:none;" @endif>
|
||||
<i class="zmdi zmdi-alert-circle"></i> <span>{!! nl2br(htmlentities(session()->get('error'))) !!}</span>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user