Fix navigation colors

This commit is contained in:
Andrew 2022-09-25 22:36:17 -04:00
parent c7a292a662
commit 95188a053d
3 changed files with 10 additions and 9 deletions

View File

@ -4528,16 +4528,16 @@ input[type="button"].btn-block {
.dropdown-item:hover, .dropdown-item:hover,
.dropdown-item:focus { .dropdown-item:focus {
color: #16181b; color: var(--base-text);
text-decoration: none; text-decoration: none;
background-color: #f8f9fa; background-color: var(--card-banner-bg);
} }
.dropdown-item.active, .dropdown-item.active,
.dropdown-item:active { .dropdown-item:active {
color: var(--base-text); color: var(--base-text);
text-decoration: none; text-decoration: none;
background-color: #007bff; background-color: var(--card-banner-bg);
} }
.dropdown-item.disabled, .dropdown-item.disabled,
@ -20019,7 +20019,8 @@ pre {
.dropdown-menu a:not([href]):not([tabindex]):hover.dropdown-item:hover, .dropdown-menu a:not([href]):not([tabindex]):hover.dropdown-item:hover,
.dropdown-menu a:not([href]):not([tabindex]):focus.dropdown-item:hover { .dropdown-menu a:not([href]):not([tabindex]):focus.dropdown-item:hover {
background: #2c2e47; cursor: pointer;
background: var(--card-banner-bg);
color: #ffffff; color: #ffffff;
} }
@ -20034,7 +20035,7 @@ pre {
} }
.dropdown-menu .dropdown-item:hover { .dropdown-menu .dropdown-item:hover {
background: #2c2e47; background: var(--card-banner-bg);
color: #ffffff; color: #ffffff;
} }

File diff suppressed because one or more lines are too long

View File

@ -4491,14 +4491,14 @@ input[type="button"].btn-block {
.dropdown-item:hover, .dropdown-item:hover,
.dropdown-item:focus { .dropdown-item:focus {
color: #16181b; color: var(--base-text);
text-decoration: none; text-decoration: none;
background-color: #f8f9fa; background-color: var(--card-banner-bg);
} }
.dropdown-item.active, .dropdown-item.active,
.dropdown-item:active { .dropdown-item:active {
var(--base-text); color: var(--base-text);
text-decoration: none; text-decoration: none;
background-color: #007bff; background-color: #007bff;
} }