]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
`.thead-dark` and `.thead-light` border color should display the right border color
authorPatrick Yeo <patrick.yeo@liferay.com>
Sat, 19 Aug 2017 07:10:07 +0000 (00:10 -0700)
committerMark Otto <markd.otto@gmail.com>
Tue, 22 Aug 2017 01:20:14 +0000 (18:20 -0700)
scss/_tables.scss

index df097579c16a9da952a44340460048b710b92062..0ef107a7b794114bb1ae62cab0eae9858672d95f 100644 (file)
 //
 // 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;
+    }
   }
 }