From: Patrick Yeo Date: Sat, 19 Aug 2017 01:17:05 +0000 (-0700) Subject: Rename `.table-inverse`, `.thead-inverse`, `.thead-default` to `.table-dark`, `.thead... X-Git-Tag: v4.0.0-beta.2~331 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bf3bdf420833ed929c999f98dd7e3fa8708b683;p=thirdparty%2Fbootstrap.git Rename `.table-inverse`, `.thead-inverse`, `.thead-default` to `.table-dark`, `.thead-dark`, `.thead-light` respectively --- diff --git a/scss/_tables.scss b/scss/_tables.scss index 3f3a3f1b75..df097579c1 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;