mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Merge pull request #14564 from twbs/fixes_14557
Fixes #14557: .form-group margin in .navbar-form
This commit is contained in:
commit
994d0b20aa
4 changed files with 9 additions and 2 deletions
3
dist/css/bootstrap.css
vendored
3
dist/css/bootstrap.css
vendored
|
@ -4123,6 +4123,9 @@ select[multiple].input-group-sm > .input-group-btn > .btn {
|
||||||
.navbar-form .form-group {
|
.navbar-form .form-group {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
.navbar-form .form-group:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@media (min-width: 768px) {
|
@media (min-width: 768px) {
|
||||||
.navbar-form {
|
.navbar-form {
|
||||||
|
|
2
dist/css/bootstrap.css.map
vendored
2
dist/css/bootstrap.css.map
vendored
File diff suppressed because one or more lines are too long
2
dist/css/bootstrap.min.css
vendored
2
dist/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -299,6 +299,10 @@
|
||||||
.form-group {
|
.form-group {
|
||||||
@media (max-width: @grid-float-breakpoint-max) {
|
@media (max-width: @grid-float-breakpoint-max) {
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
|
|
||||||
|
&:last-child {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue