`.thead-dark` and `.thead-light` border color should display the right border color

This commit is contained in:
Patrick Yeo 2017-08-19 00:10:07 -07:00 committed by Mark Otto
parent 5c95dcc300
commit f7eb3c98b2
1 changed files with 13 additions and 9 deletions

View File

@ -103,17 +103,21 @@
//
// Same table markup, but inverted color scheme: dark background and light text.
.thead-dark {
th {
color: $table-dark-color;
background-color: $table-dark-bg;
.table {
.thead-dark {
th {
color: $table-dark-color;
background-color: $table-dark-bg;
border-color: $table-dark-border-color;
}
}
}
.thead-light {
th {
color: $table-head-color;
background-color: $table-head-bg;
.thead-light {
th {
color: $table-head-color;
background-color: $table-head-bg;
border-color: $table-border-color;
}
}
}