Commit f45df646 authored by Mark Otto's avatar Mark Otto

Fixes #12914: Darken immediate children hr elements in jumbotrons

parent 64579505
...@@ -5499,6 +5499,10 @@ a.list-group-item.active > .badge, ...@@ -5499,6 +5499,10 @@ a.list-group-item.active > .badge,
font-weight: 200; font-weight: 200;
} }
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron { .container .jumbotron {
border-radius: 6px; border-radius: 6px;
} }
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -4411,6 +4411,9 @@ a.list-group-item.active > .badge, ...@@ -4411,6 +4411,9 @@ a.list-group-item.active > .badge,
font-size: 21px; font-size: 21px;
font-weight: 200; font-weight: 200;
} }
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron { .container .jumbotron {
border-radius: 6px; border-radius: 6px;
} }
......
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.
This source diff could not be displayed because it is too large. You can view the blob instead.
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.
...@@ -19,6 +19,10 @@ ...@@ -19,6 +19,10 @@
font-weight: 200; font-weight: 200;
} }
> hr {
border-top-color: darken(@jumbotron-bg, 10%);
}
.container & { .container & {
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