mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
42 lines
983 B
SCSS
42 lines
983 B
SCSS
|
|
@include color-mode(dark, true) {
|
|
$dark-font-opacity: 0.6;
|
|
|
|
/*
|
|
--tblr-body-bg: #1e222b;
|
|
--tblr-bg-surface-tertiary: #1e222b;
|
|
--tblr-bg-surface: #1e222b;
|
|
--tblr-bg-surface-secondary: #17202b;
|
|
//--tblr-muted: #d9dcdf;
|
|
*/
|
|
|
|
.table thead th {
|
|
color: inherit;
|
|
opacity: $dark-font-opacity;
|
|
}
|
|
table.dataTable {
|
|
thead .sorting:after {
|
|
opacity: $dark-font-opacity;
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
> .fas {
|
|
color: var(--tblr-white);
|
|
}
|
|
}
|
|
/* Fix tabs pills (e.g. user profile) */
|
|
.nav {
|
|
--tblr-nav-link-color: inherit;
|
|
opacity: $dark-font-opacity;
|
|
}
|
|
.datagrid-title {
|
|
color: inherit;
|
|
opacity: $dark-font-opacity;
|
|
}
|
|
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
|
|
color: inherit;
|
|
}
|
|
} |