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:active {
background: transparent;
color: RGB(var(--body-text));
color: RGB(var(--raised-text));
}
}

View File

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

View File

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