From: Mark Dumay <61946753+markdumay@users.noreply.github.com> Date: Mon, 26 Dec 2022 19:19:53 +0000 (+0100) Subject: Improve consistency of navbar icon declaration (#37720) X-Git-Tag: v5.3.0-alpha2~223 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=98ebf3a33612d270e7b4e03ca17566334f531db1;p=thirdparty%2Fbootstrap.git Improve consistency of navbar icon declaration (#37720) * Use $navbar-light-color instead of inline color * Introduce separate $navbar-light-icon-color --- diff --git a/scss/_variables.scss b/scss/_variables.scss index 09438a6cb3..1be146bd0a 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -1165,7 +1165,8 @@ $navbar-light-color: rgba(var(--#{$prefix}emphasis-color-rgb), .6 $navbar-light-hover-color: rgba(var(--#{$prefix}emphasis-color-rgb), .8) !default; $navbar-light-active-color: rgba(var(--#{$prefix}emphasis-color-rgb), 1) !default; $navbar-light-disabled-color: rgba(var(--#{$prefix}emphasis-color-rgb), .3) !default; -$navbar-light-toggler-icon-bg: url("data:image/svg+xml,") !default; +$navbar-light-icon-color: rgba($body-color, .75) !default; +$navbar-light-toggler-icon-bg: url("data:image/svg+xml,") !default; $navbar-light-toggler-border-color: rgba(var(--#{$prefix}emphasis-color-rgb), .15) !default; $navbar-light-brand-color: $navbar-light-active-color !default; $navbar-light-brand-hover-color: $navbar-light-active-color !default;