Skip to content

Commit

Permalink
[#200] Fix for navbar butter color.
Browse files Browse the repository at this point in the history
  • Loading branch information
CatalinFrancu committed Oct 14, 2021
1 parent 1106a66 commit ebcc613
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions www/css/colors.css
Original file line number Diff line number Diff line change
Expand Up @@ -197,24 +197,25 @@ html.dark .card-header {
border-bottom-color: rgba(255, 255, 255, 0.125);
}

html.dark .dropdown-divider {
/* Use main so that we don't affect the navbar dropdowns */
html.dark main .dropdown-divider {
border-top-color: rgba(255, 255, 255, 0.15);
}

html.dark .dropdown-item {
html.dark main .dropdown-item {
color: var(--bs-gray-100);
}
html.dark .dropdown-item:hover,
html.dark .dropdown-item:focus {
html.dark main .dropdown-item:hover,
html.dark main .dropdown-item:focus {
color: var(--c-dropdown-item-hover);
background-color: var(--bs-gray-800);
}
html.dark .dropdown-item.disabled,
html.dark .dropdown-item:disabled {
html.dark main .dropdown-item.disabled,
html.dark main .dropdown-item:disabled {
color: var(--bs-gray-500);
}

html.dark .dropdown-menu {
html.dark main .dropdown-menu {
background-color: var(--bs-gray-900);
border-color: rgba(255, 255, 255, 0.15);
color: var(--bs-gray-300);
Expand Down

0 comments on commit ebcc613

Please sign in to comment.