diff options
| author | Mark Otto <[email protected]> | 2016-05-12 11:24:09 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-05-12 11:24:09 -0700 |
| commit | 8b7ce089c9886e8ec57b534b56ff98b03e8566ed (patch) | |
| tree | b30082cf5fa9daeff3db83adf6498aa787cf7bf1 | |
| parent | 2a36b4b320fb18f5bc21513e9bf164159a1acf1e (diff) | |
| download | bootstrap-8b7ce089c9886e8ec57b534b56ff98b03e8566ed.tar.xz bootstrap-8b7ce089c9886e8ec57b534b56ff98b03e8566ed.zip | |
Alternate fix to #18865: Change the .navbar-toggler color for light/dark navbars as we do with the .navbar-brand
| -rw-r--r-- | scss/_navbar.scss | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scss/_navbar.scss b/scss/_navbar.scss index 6c4e9efa5..ddb68080f 100644 --- a/scss/_navbar.scss +++ b/scss/_navbar.scss @@ -165,7 +165,8 @@ // Dark links against a light background .navbar-light { - .navbar-brand { + .navbar-brand, + .navbar-toggler { color: $navbar-light-active-color; @include hover-focus { @@ -199,7 +200,8 @@ // White links against a dark background .navbar-dark { - .navbar-brand { + .navbar-brand, + .navbar-toggler { color: $navbar-dark-active-color; @include hover-focus { |
