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