You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.1 KiB
68 lines
2.1 KiB
/* date time picker colour changes for the theme */
|
|
.datepicker {
|
|
.table-sm {
|
|
> thead {
|
|
> tr > .prev {
|
|
color: $bg_white !important;
|
|
background-color: $primary_accent !important;
|
|
&:hover {
|
|
background-color: $dark_primary_accent !important;
|
|
}
|
|
> .fa {
|
|
color: $bg_white !important;
|
|
}
|
|
}
|
|
> tr > .next {
|
|
color: $bg_white !important;
|
|
background-color: $primary_accent !important;
|
|
&:hover {
|
|
background-color: $dark_primary_accent !important;
|
|
}
|
|
> .fa {
|
|
color: $bg_white !important;
|
|
}
|
|
}
|
|
> tr > .picker-switch {
|
|
color: $bg_white !important;
|
|
background-color: $primary_accent !important;
|
|
&:hover {
|
|
background-color: $dark_primary_accent !important;
|
|
}
|
|
}
|
|
}
|
|
> tbody > tr > td {
|
|
&.today:before {
|
|
border-bottom-color: $primary_accent !important;
|
|
}
|
|
&.active {
|
|
background-color: $primary_accent !important;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.picker-switch {
|
|
span.fa {
|
|
&.primary {
|
|
background-color: $primary_accent;
|
|
color: white;
|
|
&:hover {
|
|
background-color: $darker_primary_accent;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.daterangepicker .drp-calendar .calendar-table thead tr:first-child {
|
|
color: $bg_white;
|
|
background-color: $primary_accent;
|
|
}
|
|
|
|
.daterangepicker .drp-calendar .calendar-table tbody tr td:not(.off).active,
|
|
.daterangepicker .drp-calendar .calendar-table tbody tr td:not(.off).active:hover {
|
|
background-color: $primary_accent;
|
|
}
|
|
|
|
.daterangepicker .drp-calendar .calendar-table thead tr:first-child th.prev:hover,
|
|
.daterangepicker .drp-calendar .calendar-table thead tr:first-child th.next:hover {
|
|
background-color: $darker_primary_accent;
|
|
}
|