Let relevant style overrides use the new raised text colors

This commit is contained in:
Andreas Nedbal 2023-01-29 20:44:40 +01:00
parent ab6e8270df
commit 520d77bb44
3 changed files with 8 additions and 6 deletions

View File

@ -42,7 +42,7 @@
& .dropdown-item:hover, & .dropdown-item:hover,
& .dropdown-item:active { & .dropdown-item:active {
background: transparent; background: transparent;
color: RGB(var(--body-text)); color: RGB(var(--raised-text));
} }
} }

View File

@ -1,14 +1,14 @@
.dropdown-menu { .dropdown-menu {
color: RGB(var(--body-text)); color: RGB(var(--raised-text));
background-color: var(--raised-bg); background-color: var(--raised-bg);
box-shadow: $box-shadow-lg; box-shadow: $box-shadow-lg;
border: none; border: none;
} }
.dropdown-item { .dropdown-item {
color: RGB(var(--body-text)); color: RGB(var(--raised-text));
&.active, &.active,
&:active, &:active,
&:active:hover { &:active:hover {
color: RGB(var(--primary-text)); color: RGB(var(--primary-text));
@ -16,6 +16,7 @@
} }
&:hover { &:hover {
color: RGB(var(--raised-accent-text));
background-color: var(--raised-accent); background-color: var(--raised-accent);
} }
} }
@ -32,4 +33,4 @@
.dropdown-menu--lists { .dropdown-menu--lists {
max-width: 275px; max-width: 275px;
} }
} }

View File

@ -13,9 +13,10 @@
} }
.list-group-item-action { .list-group-item-action {
color: RGB(var(--body-text)); color: RGB(var(--raised-text));
&:hover, &:focus { &:hover, &:focus {
color: RGB(var(--raised-accent-text));
background-color: var(--raised-accent); background-color: var(--raised-accent);
} }