1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Rename -bg-inverse to -inverse-bg; add -inverse-color (#21371)

This commit is contained in:
Mark Otto 2016-12-19 21:50:31 -08:00 committed by GitHub
parent ab38529dcc
commit 37de11e386
2 changed files with 7 additions and 5 deletions

View file

@ -105,8 +105,8 @@
.thead-inverse {
th {
color: #fff;
background-color: $table-bg-inverse;
color: $table-inverse-color;
background-color: $table-inverse-bg;
}
}
@ -118,8 +118,8 @@
}
.table-inverse {
color: $body-bg;
background-color: $table-bg-inverse;
color: $table-inverse-color;
background-color: $table-inverse-bg;
th,
td,

View file

@ -324,7 +324,9 @@ $table-cell-padding: .75rem !default;
$table-sm-cell-padding: .3rem !default;
$table-bg: transparent !default;
$table-bg-inverse: $gray-dark !default;
$table-inverse-bg: $gray-dark !default;
$table-inverse-color: $body-bg !default;
$table-bg-accent: rgba(0,0,0,.05) !default;
$table-bg-hover: rgba(0,0,0,.075) !default;