Closed FDiskas closed 8 years ago
SCSS example:
$state: active; $background: white; .table-hover > tbody > tr { > td.#{$state}:hover, > th.#{$state}:hover, &.#{$state}:hover > td, &:hover > .#{$state}, &.#{$state}:hover > th { background-color: darken($background, 5%); } }
Compiles to INVALID:
> td.active:hover, > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #f2f2f2; }
Should be:
.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #f2f2f2; }
:goberserk: wrong repo :octocat: sorry
SCSS example:
Compiles to INVALID:
Should be: