From: Chris Rebert Date: Thu, 14 Jan 2016 00:21:52 +0000 (-0800) Subject: Use proper variable for .dropdown-backdrop's z-index X-Git-Tag: v4.0.0-alpha.3~360^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=27a7fff0fb325cfa9a272c34f1cdf4ea02847060;p=thirdparty%2Fbootstrap.git Use proper variable for .dropdown-backdrop's z-index --- diff --git a/scss/_dropdown.scss b/scss/_dropdown.scss index d9776d59c6..a21989779a 100644 --- a/scss/_dropdown.scss +++ b/scss/_dropdown.scss @@ -161,7 +161,7 @@ right: 0; bottom: 0; left: 0; - z-index: ($zindex-dropdown - 10); + z-index: $zindex-dropdown-backdrop; } // Right aligned dropdowns diff --git a/scss/_variables.scss b/scss/_variables.scss index cb478d76a1..da987b9376 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -359,6 +359,7 @@ $dropdown-header-color: $gray-light !default; // Warning: Avoid customizing these values. They're used for a bird's eye view // of components dependent on the z-axis and are designed to all work together. +$zindex-dropdown-backdrop: 990 !default; $zindex-navbar: 1000 !default; $zindex-dropdown: 1000 !default; $zindex-popover: 1060 !default;