mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
updates to responsive and docs for responsive navbar
This commit is contained in:
parent
f1e520badd
commit
59d9983ebc
5 changed files with 15 additions and 5 deletions
3
docs/assets/css/bootstrap.css
vendored
3
docs/assets/css/bootstrap.css
vendored
|
@ -2359,6 +2359,9 @@ button.btn.small, input[type="submit"].btn.small {
|
|||
.btn-navbar .i-bar + .i-bar {
|
||||
margin-top: 3px;
|
||||
}
|
||||
.nav-collapse.collapse {
|
||||
height: auto !important;
|
||||
}
|
||||
.navbar .brand:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
@ -671,11 +671,6 @@ form.well {
|
|||
}
|
||||
}
|
||||
|
||||
@media (min-width: 940px) {
|
||||
.nav-collapse.collapse {
|
||||
height: auto !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
|
||||
|
@ -768,6 +763,7 @@ form.well {
|
|||
|
||||
}
|
||||
|
||||
|
||||
@media (max-width: 940px) {
|
||||
|
||||
/* Unfloat brand */
|
||||
|
@ -780,6 +776,7 @@ form.well {
|
|||
|
||||
}
|
||||
|
||||
|
||||
/* LARGE DESKTOP SCREENS */
|
||||
@media (min-width: 1210px) {
|
||||
|
||||
|
|
|
@ -766,6 +766,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</pre>
|
||||
<div class="alert alert-info">
|
||||
<strong>Heads up!</strong> The responsive navbar requires the <a href="./javascript.html#collapse">collapse plugin</a>.
|
||||
</div>
|
||||
|
||||
</div><!-- /.span -->
|
||||
<div class="span4">
|
||||
|
|
3
docs/templates/pages/components.mustache
vendored
3
docs/templates/pages/components.mustache
vendored
|
@ -694,6 +694,9 @@
|
|||
</div>
|
||||
</div>
|
||||
</pre>
|
||||
<div class="alert alert-info">
|
||||
<strong>{{_i}}Heads up!{{/i}}</strong> The responsive navbar requires the <a href="./javascript.html#collapse">collapse plugin</a>.
|
||||
</div>
|
||||
|
||||
</div><!-- /.span -->
|
||||
<div class="span4">
|
||||
|
|
|
@ -38,6 +38,10 @@
|
|||
.btn-navbar .i-bar + .i-bar {
|
||||
margin-top: 3px;
|
||||
}
|
||||
.nav-collapse.collapse {
|
||||
height: auto !important; // Required to be !important to override native collapse plugin
|
||||
}
|
||||
|
||||
|
||||
// Brand, links, text, and buttons
|
||||
.navbar {
|
||||
|
|
Loading…
Reference in a new issue