]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Rename `.table-inverse`, `.thead-inverse`, `.thead-default` to `.table-dark`, `.thead...
authorPatrick Yeo <patrick.yeo@liferay.com>
Sat, 19 Aug 2017 01:17:05 +0000 (18:17 -0700)
committerMark Otto <markd.otto@gmail.com>
Tue, 22 Aug 2017 01:20:14 +0000 (18:20 -0700)
scss/_tables.scss

index 3f3a3f1b757690f5c870264a60f4cb793f801235..df097579c16a9da952a44340460048b710b92062 100644 (file)
 @include table-row-variant(active, $table-active-bg);
 
 
-// Inverse styles
+// Dark styles
 //
 // Same table markup, but inverted color scheme: dark background and light text.
 
-.thead-inverse {
+.thead-dark {
   th {
     color: $table-dark-color;
     background-color: $table-dark-bg;
   }
 }
 
-.thead-default {
+.thead-light {
   th {
     color: $table-head-color;
     background-color: $table-head-bg;
   }
 }
 
-.table-inverse {
+.table-dark {
   color: $table-dark-color;
   background-color: $table-dark-bg;