17 lines
394 B
SCSS
17 lines
394 B
SCSS
// Tables
|
|
|
|
@mixin table-row-variant($state, $background) {
|
|
// Exact selectors below required to override `.table-striped` and prevent
|
|
// inheritance to nested tables.
|
|
.table > thead > tr,
|
|
.table > tbody > tr,
|
|
.table > tfoot > tr {
|
|
> td.#{$state},
|
|
> th.#{$state},
|
|
&.#{$state} > td,
|
|
&.#{$state} > th {
|
|
background-color: $background;
|
|
}
|
|
}
|
|
}
|