Fixes #8820: correct navbar color in dark mode

This commit is contained in:
thatmattlove 2022-03-08 14:28:52 -07:00
parent 1fdc7a9163
commit 8cd24b1a67
3 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@
## v3.1.10 (FUTURE)
* [#8820](https://github.com/netbox-community/netbox/issues/8820) - Fix navbar background color in dark mode
---
## v3.1.9 (2022-03-07)

Binary file not shown.

View File

@ -145,9 +145,9 @@ $nav-tabs-link-active-border-color: $gray-800 $gray-800 $nav-tabs-link-active-bg
$nav-pills-link-active-color: $component-active-color;
$nav-pills-link-active-bg: $component-active-bg;
$navbar-light-color: $navbar-dark-color;
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-light-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
$navbar-light-color: $darker;
$navbar-light-toggler-border-color: $gray-700;
$navbar-light-toggler-icon-bg: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='#{$navbar-light-toggler-border-color}' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
// Dropdowns
$dropdown-color: $body-color;