aboutsummaryrefslogtreecommitdiff
path: root/docs/layout
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-10-27 09:31:38 -0700
committerMark Otto <[email protected]>2016-10-27 09:31:38 -0700
commit115a37db1a21dd249daf852cbd71cbd5ad1b7c3f (patch)
tree5661d4de225ce4c331e7384ee6f5c8c364b1fb74 /docs/layout
parent3cc023990369168aa451bf49a69b7fb4a2dcaa67 (diff)
downloadbootstrap-115a37db1a21dd249daf852cbd71cbd5ad1b7c3f.tar.xz
bootstrap-115a37db1a21dd249daf852cbd71cbd5ad1b7c3f.zip
Change variable for modal backdrop zindex, rearrange to be ordered from lowest to highest
Diffstat (limited to 'docs/layout')
-rw-r--r--docs/layout/overview.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/layout/overview.md b/docs/layout/overview.md
index 5b5ceb16c..c22203fde 100644
--- a/docs/layout/overview.md
+++ b/docs/layout/overview.md
@@ -166,12 +166,12 @@ We don't encourage customization of these values; should you change one, you lik
$zindex-dropdown-backdrop: 990 !default;
$zindex-navbar: 1000 !default;
$zindex-dropdown: 1000 !default;
-$zindex-popover: 1060 !default;
-$zindex-tooltip: 1070 !default;
$zindex-navbar-fixed: 1030 !default;
$zindex-navbar-sticky: 1030 !default;
-$zindex-modal-bg: 1040 !default;
+$zindex-modal-backdrop: 1040 !default;
$zindex-modal: 1050 !default;
+$zindex-popover: 1060 !default;
+$zindex-tooltip: 1070 !default;
```
Background elements—like the backdrops that allow click-dismissing—tend to reside on a lower `z-index`s, while navigation and popovers utilize higher `z-index`s to ensure they overlay surrounding content.