2016-12-31 09:27:40 -05:00
|
|
|
<style id="custom-styles" data-color="{{ setting('app-color') }}" data-color-light="{{ setting('app-color-light') }}">
|
2019-04-07 06:34:40 -04:00
|
|
|
.primary-background {
|
2016-08-14 07:29:35 -04:00
|
|
|
background-color: {{ setting('app-color') }} !important;
|
2016-06-12 08:37:15 -04:00
|
|
|
}
|
2019-04-06 12:43:44 -04:00
|
|
|
.primary-background-light {
|
2016-08-14 07:29:35 -04:00
|
|
|
background-color: {{ setting('app-color-light') }};
|
2016-06-12 08:37:15 -04:00
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
.button.primary, .button.primary:hover, .button.primary:active, .button.primary:focus {
|
2016-08-14 07:29:35 -04:00
|
|
|
background-color: {{ setting('app-color') }};
|
2017-12-06 12:32:29 -05:00
|
|
|
border-color: {{ setting('app-color') }};
|
2016-06-12 08:37:15 -04:00
|
|
|
}
|
|
|
|
.nav-tabs a.selected, .nav-tabs .tab-item.selected {
|
2016-08-14 07:29:35 -04:00
|
|
|
border-bottom-color: {{ setting('app-color') }};
|
2016-06-12 08:37:15 -04:00
|
|
|
}
|
2019-04-07 06:36:50 -04:00
|
|
|
.text-primary, .text-primary-hover:hover, .text-primary:hover {
|
2019-04-07 06:34:40 -04:00
|
|
|
color: {{ setting('app-color') }} !important;
|
2019-04-07 06:36:50 -04:00
|
|
|
fill: {{ setting('app-color') }} !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
a, a:hover, a:focus, .text-button, .text-button:hover, .text-button:focus {
|
|
|
|
color: {{ setting('app-color') }};
|
|
|
|
fill: {{ setting('app-color') }};
|
2016-06-12 08:37:15 -04:00
|
|
|
}
|
2018-09-15 05:45:42 -04:00
|
|
|
</style>
|