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 /examples | |
| 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 'examples')
| -rw-r--r-- | examples/theme/index.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/theme/index.html b/examples/theme/index.html index a0bad8793..bfa8efdcb 100644 --- a/examples/theme/index.html +++ b/examples/theme/index.html @@ -159,6 +159,18 @@ <li class="active"><a href="#">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li><a href="#">Action</a></li> + <li><a href="#">Another action</a></li> + <li><a href="#">Something else here</a></li> + <li class="divider"></li> + <li class="dropdown-header">Nav header</li> + <li><a href="#">Separated link</a></li> + <li><a href="#">One more separated link</a></li> + </ul> + </li> </ul> </div><!--/.nav-collapse --> </div> @@ -179,6 +191,18 @@ <li class="active"><a href="#">Home</a></li> <li><a href="#about">About</a></li> <li><a href="#contact">Contact</a></li> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li><a href="#">Action</a></li> + <li><a href="#">Another action</a></li> + <li><a href="#">Something else here</a></li> + <li class="divider"></li> + <li class="dropdown-header">Nav header</li> + <li><a href="#">Separated link</a></li> + <li><a href="#">One more separated link</a></li> + </ul> + </li> </ul> </div><!--/.nav-collapse --> </div> |
