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