Commit 0a816e00 authored by Mark Otto's avatar Mark Otto

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

parent a25b866e
...@@ -4655,7 +4655,8 @@ a.list-group-item.active > .badge, ...@@ -4655,7 +4655,8 @@ a.list-group-item.active > .badge,
.jumbotron > hr { .jumbotron > hr {
border-top-color: #d5d5d5; border-top-color: #d5d5d5;
} }
.container .jumbotron { .container .jumbotron,
.container-fluid .jumbotron {
border-radius: 6px; border-radius: 6px;
} }
.jumbotron .container { .jumbotron .container {
......
This diff was suppressed by a .gitattributes entry.
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -23,7 +23,8 @@ ...@@ -23,7 +23,8 @@
border-top-color: darken(@jumbotron-bg, 10%); 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 border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment