Dark theme tweaks

The `app-language-select` wasn't themeable.
This commit is contained in:
leekelleher
2024-04-18 10:22:00 +01:00
parent 8d2bdbb987
commit 9b5b8032c7
2 changed files with 6 additions and 1 deletions

View File

@@ -6,7 +6,7 @@
--uui-color-current: #316dca;
--uui-color-current-emphasis: #3e79d0;
--uui-color-current-standalone: #5b8dd7;
--uui-color-current-contrast: #f000;
--uui-color-current-contrast: #eeeeef;
--uui-color-disabled: #434c56;
--uui-color-disabled-standalone: #545d68;
--uui-color-disabled-contrast: #fcfcfc4d;

View File

@@ -114,6 +114,7 @@ export class UmbAppLanguageSelectElement extends UmbLitElement {
}
#toggle {
color: var(--uui-color-text);
width: var(--umb-section-sidebar-width);
text-align: left;
background: none;
@@ -132,6 +133,10 @@ export class UmbAppLanguageSelectElement extends UmbLitElement {
#toggle:hover {
background-color: var(--uui-color-surface-emphasis);
}
uui-menu-item {
color: var(--uui-color-text);
}
`,
];
}