Fixes #14337: Round .jumbotron corners within .container and .container-fluid

This commit is contained in:
Mark Otto 2014-08-27 23:01:58 -07:00
parent a25b866ec7
commit 0a816e009f
4 changed files with 6 additions and 4 deletions

View File

@ -4655,7 +4655,8 @@ a.list-group-item.active > .badge,
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron {
.container .jumbotron,
.container-fluid .jumbotron {
border-radius: 6px;
}
.jumbotron .container {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -23,7 +23,8 @@
border-top-color: darken(@jumbotron-bg, 10%);
}
.container & {
.container &,
.container-fluid & {
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}