Skip to content

Commit

Permalink
.thead-dark and .thead-light border color should display the righ…
Browse files Browse the repository at this point in the history
…t border color
  • Loading branch information
pat270 authored and mdo committed Aug 22, 2017
1 parent 5c95dcc commit f7eb3c9
Showing 1 changed file with 13 additions and 9 deletions.
22 changes: 13 additions & 9 deletions scss/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
}

Expand Down

0 comments on commit f7eb3c9

Please sign in to comment.