1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-29 16:19:53 +02:00

.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

View File

@@ -103,10 +103,12 @@
// //
// Same table markup, but inverted color scheme: dark background and light text. // Same table markup, but inverted color scheme: dark background and light text.
.table {
.thead-dark { .thead-dark {
th { th {
color: $table-dark-color; color: $table-dark-color;
background-color: $table-dark-bg; background-color: $table-dark-bg;
border-color: $table-dark-border-color;
} }
} }
@@ -114,6 +116,8 @@
th { th {
color: $table-head-color; color: $table-head-color;
background-color: $table-head-bg; background-color: $table-head-bg;
border-color: $table-border-color;
}
} }
} }