2016-03-06 05:52:10 -05:00
|
|
|
@if(Setting::get('app-color'))
|
|
|
|
<style>
|
2016-05-13 16:20:21 -04:00
|
|
|
header, #back-to-top, .primary-background {
|
2016-03-06 05:52:10 -05:00
|
|
|
background-color: {{ Setting::get('app-color') }};
|
|
|
|
}
|
2016-05-13 16:20:21 -04:00
|
|
|
.faded-small, .primary-background-light {
|
2016-03-06 05:52:10 -05:00
|
|
|
background-color: {{ Setting::get('app-color-light') }};
|
|
|
|
}
|
|
|
|
.button-base, .button, input[type="button"], input[type="submit"] {
|
|
|
|
background-color: {{ Setting::get('app-color') }};
|
|
|
|
}
|
|
|
|
.button-base:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover, .button:focus {
|
|
|
|
background-color: {{ Setting::get('app-color') }};
|
|
|
|
}
|
2016-04-03 09:59:54 -04:00
|
|
|
.nav-tabs a.selected, .nav-tabs .tab-item.selected {
|
2016-03-06 05:52:10 -05:00
|
|
|
border-bottom-color: {{ Setting::get('app-color') }};
|
|
|
|
}
|
|
|
|
p.primary:hover, p .primary:hover, span.primary:hover, .text-primary:hover, a, a:hover, a:focus {
|
|
|
|
color: {{ Setting::get('app-color') }};
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@endif
|