Commit a2823d0f authored by Mark Otto's avatar Mark Otto

Fixes #9061: Panel titles should inherit color when linked

parent d95ff9da
...@@ -2418,6 +2418,10 @@ a.list-group-item.active .list-group-item-text { ...@@ -2418,6 +2418,10 @@ a.list-group-item.active .list-group-item-text {
font-weight: 500; font-weight: 500;
} }
.panel-title > a {
color: inherit;
}
.panel-footer { .panel-footer {
padding: 10px 15px; padding: 10px 15px;
margin: 15px -15px -15px; margin: 15px -15px -15px;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -47,6 +47,9 @@ ...@@ -47,6 +47,9 @@
margin-bottom: 0; margin-bottom: 0;
font-size: (@font-size-base * 1.25); font-size: (@font-size-base * 1.25);
font-weight: 500; font-weight: 500;
> a {
color: inherit;
}
} }
// Optional footer (stays gray in every modifier class) // Optional footer (stays gray in every modifier class)
......
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