Skip to content

Commit

Permalink
nested panels won't be messed with now
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtmiller committed Aug 19, 2016
1 parent 3e0ff87 commit e85ee38
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions dist/css/sb-admin-2.css
Original file line number Diff line number Diff line change
Expand Up @@ -240,43 +240,43 @@ table.dataTable thead .sorting:after {
.panel-green {
border-color: #5cb85c;
}
.panel-green .panel-heading {
.panel-green > .panel-heading {
border-color: #5cb85c;
color: white;
background-color: #5cb85c;
}
.panel-green a {
.panel-green > a {
color: #5cb85c;
}
.panel-green a:hover {
.panel-green > a:hover {
color: #3d8b3d;
}
.panel-red {
border-color: #d9534f;
}
.panel-red .panel-heading {
.panel-red > .panel-heading {
border-color: #d9534f;
color: white;
background-color: #d9534f;
}
.panel-red a {
.panel-red > a {
color: #d9534f;
}
.panel-red a:hover {
.panel-red > a:hover {
color: #b52b27;
}
.panel-yellow {
border-color: #f0ad4e;
}
.panel-yellow .panel-heading {
.panel-yellow > .panel-heading {
border-color: #f0ad4e;
color: white;
background-color: #f0ad4e;
}
.panel-yellow a {
.panel-yellow > a {
color: #f0ad4e;
}
.panel-yellow a:hover {
.panel-yellow > a:hover {
color: #df8a13;
}
.timeline {
Expand Down
2 changes: 1 addition & 1 deletion dist/css/sb-admin-2.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions less/sb-admin-2.less
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,12 @@ table.dataTable thead .sorting:after {

.panel-green {
border-color: @brand-success;
.panel-heading {
> .panel-heading {
border-color: @brand-success;
color: white;
background-color: @brand-success;
}
a {
> a {
color: @brand-success;
&:hover {
color: darken(@brand-success, 15%);
Expand All @@ -337,12 +337,12 @@ table.dataTable thead .sorting:after {

.panel-red {
border-color: @brand-danger;
.panel-heading {
> .panel-heading {
border-color: @brand-danger;
color: white;
background-color: @brand-danger;
}
a {
> a {
color: @brand-danger;
&:hover {
color: darken(@brand-danger, 15%);
Expand All @@ -352,12 +352,12 @@ table.dataTable thead .sorting:after {

.panel-yellow {
border-color: @brand-warning;
.panel-heading {
> .panel-heading {
border-color: @brand-warning;
color: white;
background-color: @brand-warning;
}
a {
> a {
color: @brand-warning;
&:hover {
color: darken(@brand-warning, 15%);
Expand Down

0 comments on commit e85ee38

Please sign in to comment.