More color style fixes

This commit is contained in:
Alex Tselegidis 2022-06-02 11:51:15 +02:00
parent b15a051ee3
commit 2effec6c23
1 changed files with 10 additions and 4 deletions

View File

@ -4,7 +4,7 @@
*/ */
?> ?>
<?php if ($company_color && $company_color !== DEFAULT_COMPANY_COLOR): ?> <?php if ($company_color !== DEFAULT_COMPANY_COLOR): ?>
<style> <style>
/* Generic Overrides */ /* Generic Overrides */
@ -14,7 +14,6 @@
a:hover { a:hover {
color: <?= $company_color ?>; color: <?= $company_color ?>;
filter: brightness(120%);
} }
.btn-primary { .btn-primary {
@ -29,6 +28,7 @@
border-color: <?= $company_color ?>; border-color: <?= $company_color ?>;
filter: brightness(120%); filter: brightness(120%);
outline: none; outline: none;
box-shadow: none;
} }
.btn-primary:disabled, .btn-primary.disabled { .btn-primary:disabled, .btn-primary.disabled {
@ -71,6 +71,14 @@
background: <?= $company_color ?> !important; background: <?= $company_color ?> !important;
} }
.fc-daygrid-event {
color: rgb(51, 51, 51) !important;
}
body .ui-draggable .ui-dialog-titlebar {
background: <?= $company_color ?> !important;
}
/* Booking Layout */ /* Booking Layout */
#book-appointment-wizard #header { #book-appointment-wizard #header {
@ -148,7 +156,6 @@
#header #header-menu .nav-item:hover, #header #header-menu .nav-item:hover,
#header #header-menu .nav-item.active { #header #header-menu .nav-item.active {
background: <?= $company_color ?> !important; background: <?= $company_color ?> !important;
filter: brightness(120%);
} }
#header #header-logo small { #header #header-logo small {
@ -159,6 +166,5 @@
.backend-page .filter-records .results .entry.selected { .backend-page .filter-records .results .entry.selected {
border-right-color: <?= $company_color ?> !important; border-right-color: <?= $company_color ?> !important;
} }
</style> </style>
<?php endif ?> <?php endif ?>