56 lines
1.3 KiB
SCSS
56 lines
1.3 KiB
SCSS
@include dark-mode {
|
|
.form-check-input {
|
|
border-color: $input-border-color;
|
|
}
|
|
|
|
/* selectpicker.scss / Tom Select */
|
|
.ts-wrapper.form-select .ts-control,
|
|
.ts-wrapper.form-select.single.input-active .ts-control {
|
|
color: $dark-mode-text;
|
|
}
|
|
.ts-dropdown {
|
|
background-color: $dark-mode-lighten;
|
|
color: $dark-mode-text;
|
|
}
|
|
.ts-control {
|
|
> input {
|
|
min-width: unset;
|
|
color: $dark-mode-text;
|
|
}
|
|
|
|
.item {
|
|
background-color: $dark;
|
|
color: $dark-mode-text;
|
|
}
|
|
}
|
|
.optgroup-header {
|
|
background-color: $dropdown-dark-bg;
|
|
color: $dark-mode-text;
|
|
}
|
|
|
|
table.dataTable {
|
|
th.weekend, td.weekend {
|
|
background-color: $dark-mode-weekend;
|
|
color: $dark-mode-text;
|
|
}
|
|
/* must be defined after weekend, to overwrite it */
|
|
th.today, td.today {
|
|
background-color: $dark-mode-today;
|
|
color: $dark-mode-text;
|
|
}
|
|
|
|
tr {
|
|
&.summary td {
|
|
background-color: $dark-mode-darken;
|
|
}
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
> .fas {
|
|
color: $dark-mode-text;
|
|
}
|
|
}
|
|
} |