diff options
| author | Mark Otto <[email protected]> | 2013-10-20 20:30:16 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-10-20 20:30:16 -0700 |
| commit | e486bb4f39e79dd55b3c68af134a4624b2fa4c08 (patch) | |
| tree | bc58c4e107f3db436e903f9997ffdab09eea95d3 /dist/css/bootstrap.css | |
| parent | 5aa4c5cb0c1b8bed3a4bb6b6a867f48b4a59f2fb (diff) | |
| download | bootstrap-e486bb4f39e79dd55b3c68af134a4624b2fa4c08.tar.xz bootstrap-e486bb4f39e79dd55b3c68af134a4624b2fa4c08.zip | |
Fixes #10433: Navbar z-index refactor
* Resets the default navbar z-index to auto at a certain breakpoint
* Adds fixed navbar z-index var to fixed bottom navbar (previously only on fixed top navbar)
Diffstat (limited to 'dist/css/bootstrap.css')
| -rw-r--r-- | dist/css/bootstrap.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dist/css/bootstrap.css b/dist/css/bootstrap.css index 71768f9a9..25e99925e 100644 --- a/dist/css/bootstrap.css +++ b/dist/css/bootstrap.css @@ -4294,6 +4294,7 @@ textarea.input-group-sm > .input-group-btn > .btn { @media (min-width: 768px) { .navbar { + z-index: auto; border-radius: 4px; } } @@ -4413,6 +4414,7 @@ textarea.input-group-sm > .input-group-btn > .btn { position: fixed; right: 0; left: 0; + z-index: 1030; } @media (min-width: 768px) { @@ -4424,7 +4426,6 @@ textarea.input-group-sm > .input-group-btn > .btn { .navbar-fixed-top { top: 0; - z-index: 1030; border-width: 0 0 1px; } |
