]> BookStack Code Mirror - bookstack/blob - resources/views/partials/custom-styles.blade.php
Updated template test to be more stable
[bookstack] / resources / views / partials / custom-styles.blade.php
1 <style id="custom-styles" data-color="{{ setting('app-color') }}" data-color-light="{{ setting('app-color-light') }}">
2     .primary-background {
3         background-color: {{ setting('app-color') }} !important;
4     }
5     .primary-background-light {
6         background-color: {{ setting('app-color-light') }};
7     }
8     .button.primary, .button.primary:hover, .button.primary:active, .button.primary:focus {
9         background-color: {{ setting('app-color') }};
10         border-color: {{ setting('app-color') }};
11     }
12     .nav-tabs a.selected, .nav-tabs .tab-item.selected {
13         border-bottom-color: {{ setting('app-color') }};
14     }
15     .text-primary, .text-primary-hover:hover, .text-primary:hover {
16         color: {{ setting('app-color') }} !important;
17         fill: {{ setting('app-color') }} !important;
18     }
19
20     a, a:hover, a:focus, .text-button, .text-button:hover, .text-button:focus {
21         color: {{ setting('app-color') }};
22         fill: {{ setting('app-color') }};
23     }
24 </style>