Feature/refactor dark theme css selector (#3662)

* Refactor dark theme CSS selector

* Update changelog
This commit is contained in:
Thomas Kaul
2024-08-11 15:43:02 +02:00
committed by GitHub
parent d1276dc1a7
commit 9246a73f41
42 changed files with 44 additions and 43 deletions

View File

@@ -15,7 +15,7 @@
}
}
:host-context(.is-dark-theme) {
:host-context(.theme-dark) {
.mat-mdc-form-field {
color: rgba(var(--light-primary-text));
}

View File

@@ -40,7 +40,7 @@
}
}
:host-context(.is-dark-theme) {
:host-context(.theme-dark) {
.activity-type-badge {
background-color: rgba(var(--palette-foreground-text-dark), 0.1) !important;
}

View File

@@ -10,7 +10,7 @@
}
}
:host-context(.is-dark-theme) {
:host-context(.theme-dark) {
&.has-focus {
a {
color: rgba(var(--dark-primary-text));

View File

@@ -26,7 +26,7 @@
}
}
:host-context(.is-dark-theme) {
:host-context(.theme-dark) {
.date-range-selector-container {
border-color: rgba(var(--light-dividers));
}

View File

@@ -25,7 +25,7 @@
}
}
:host-context(.is-dark-theme) {
:host-context(.theme-dark) {
::ng-deep {
.mdc-text-field--disabled {
.mdc-notched-outline__leading,

View File

@@ -11,6 +11,6 @@
}
}
:host-context(.is-dark-theme) {
:host-context(.theme-dark) {
border-color: rgba(var(--light-dividers));
}