mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
Fix floats in navbar
This commit is contained in:
parent
01b32f472d
commit
360f0c5359
5
docs/assets/css/bootstrap.css
vendored
5
docs/assets/css/bootstrap.css
vendored
@ -3046,6 +3046,7 @@ button.close {
|
||||
margin-left: -15px;
|
||||
}
|
||||
.navbar .nav {
|
||||
float: left;
|
||||
margin-top: 0;
|
||||
}
|
||||
.navbar .nav:before,
|
||||
@ -3056,6 +3057,9 @@ button.close {
|
||||
.navbar .nav:after {
|
||||
clear: both;
|
||||
}
|
||||
.navbar .nav.pull-right {
|
||||
float: right;
|
||||
}
|
||||
.navbar .nav > li {
|
||||
float: left;
|
||||
}
|
||||
@ -3063,7 +3067,6 @@ button.close {
|
||||
display: none;
|
||||
}
|
||||
.nav-collapse.collapse {
|
||||
float: left;
|
||||
height: auto !important;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
@ -76,8 +76,8 @@
|
||||
background-color: @navbar-link-bg-active;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 768px) {
|
||||
|
||||
@media screen and (min-width: 768px) {
|
||||
.navbar {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
@ -89,8 +89,13 @@
|
||||
margin-left: -15px;
|
||||
}
|
||||
.navbar .nav {
|
||||
.clear_float();
|
||||
float: left;
|
||||
margin-top: 0; // undo top margin to make nav extend full height of navbar
|
||||
.clear_float();
|
||||
|
||||
&.pull-right {
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.navbar .nav > li {
|
||||
float: left;
|
||||
@ -101,11 +106,9 @@
|
||||
display: none;
|
||||
}
|
||||
.nav-collapse.collapse {
|
||||
float: left;
|
||||
height: auto !important;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Inverse navbar
|
||||
|
Loading…
Reference in New Issue
Block a user