Fixes #12914: Darken immediate children hr elements in jumbotrons

This commit is contained in:
Mark Otto 2014-03-04 13:54:09 -08:00
parent 64579505d2
commit f45df64670
9 changed files with 17 additions and 6 deletions

View File

@ -5499,6 +5499,10 @@ a.list-group-item.active > .badge,
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron {
border-radius: 6px;
}

File diff suppressed because one or more lines are too long

View File

@ -4411,6 +4411,9 @@ a.list-group-item.active > .badge,
font-size: 21px;
font-weight: 200;
}
.jumbotron > hr {
border-top-color: #d5d5d5;
}
.container .jumbotron {
border-radius: 6px;
}

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -19,6 +19,10 @@
font-weight: 200;
}
> hr {
border-top-color: darken(@jumbotron-bg, 10%);
}
.container & {
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}