aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Yeo <[email protected]>2017-08-18 18:17:05 -0700
committerMark Otto <[email protected]>2017-08-21 18:20:14 -0700
commit3bf3bdf420833ed929c999f98dd7e3fa8708b683 (patch)
tree3ba1b1c1b1d60a5285a743e5b1f51ae9d9ccfa2a
parent07594279357fe933d64a3350cd48863ace69404e (diff)
downloadbootstrap-3bf3bdf420833ed929c999f98dd7e3fa8708b683.tar.xz
bootstrap-3bf3bdf420833ed929c999f98dd7e3fa8708b683.zip
Rename `.table-inverse`, `.thead-inverse`, `.thead-default` to `.table-dark`, `.thead-dark`, `.thead-light` respectively
-rw-r--r--scss/_tables.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 3f3a3f1b7..df097579c 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -99,25 +99,25 @@
@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;