manually set default icon color

This commit is contained in:
MaysWind
2023-08-07 00:48:48 +08:00
parent 195f513416
commit 1753a6c247
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -39,13 +39,13 @@ input[type=number] {
/** Custom class **/ /** Custom class **/
:root { :root {
--default-icon-color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)); --default-icon-color: #000;
--v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); --v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
--v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); --v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
} }
:root .v-theme--dark { :root .v-theme--dark {
--default-icon-color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)); --default-icon-color: #fff;
--v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); --v-expand-panel-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
--v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity)); --v-card-title-bg: rgba(var(--v-theme-on-surface), var(--v-hover-opacity));
} }
+3 -3
View File
@@ -97,11 +97,11 @@ i.icon.la, i.icon.las, i.icon.lab {
/** custom class **/ /** custom class **/
:root { :root {
--default-icon-color: var(--f7-text-color); --default-icon-color: #000;
} }
:root .dark { :root.dark {
--default-icon-color: var(--f7-text-color); --default-icon-color: #fff;
} }
.pin-codes-input { .pin-codes-input {