aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Yeo <[email protected]>2017-08-19 00:10:07 -0700
committerMark Otto <[email protected]>2017-08-21 18:20:14 -0700
commitf7eb3c98b261930270c2f65c0e565c454d6cb647 (patch)
tree1b40d325be837105fcf6ca66d4548dc61d957ccb
parent5c95dcc300b2f05f99f71347631b0f5dc2ddffe6 (diff)
downloadbootstrap-f7eb3c98b261930270c2f65c0e565c454d6cb647.tar.xz
bootstrap-f7eb3c98b261930270c2f65c0e565c454d6cb647.zip
`.thead-dark` and `.thead-light` border color should display the right border color
-rw-r--r--scss/_tables.scss22
1 files changed, 13 insertions, 9 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index df097579c..0ef107a7b 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -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;
+ }
}
}