Fixes #14979: Override .jumbotron padding within .container-fluid to match .container

This commit is contained in:
Mark Otto 2014-11-07 23:01:20 -08:00
parent 2862c30320
commit 8fbb2bbbd1
9 changed files with 10 additions and 7 deletions

View file

@ -4675,7 +4675,8 @@ a.list-group-item.active > .badge,
.jumbotron {
padding: 48px 0;
}
.container .jumbotron {
.container .jumbotron,
.container-fluid .jumbotron {
padding-right: 60px;
padding-left: 60px;
}

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -4675,7 +4675,8 @@ a.list-group-item.active > .badge,
.jumbotron {
padding: 48px 0;
}
.container .jumbotron {
.container .jumbotron,
.container-fluid .jumbotron {
padding-right: 60px;
padding-left: 60px;
}

Binary file not shown.

File diff suppressed because one or more lines are too long

View file

@ -35,7 +35,8 @@
@media screen and (min-width: @screen-sm-min) {
padding: (@jumbotron-padding * 1.6) 0;
.container & {
.container &,
.container-fluid & {
padding-left: (@jumbotron-padding * 2);
padding-right: (@jumbotron-padding * 2);
}