diff options
author | MaZderMind | 2014-10-18 13:35:04 +0200 |
---|---|---|
committer | MaZderMind | 2014-10-18 13:35:04 +0200 |
commit | c3a21ba38664d89d946b849f8a3c36941bc72e12 (patch) | |
tree | 7d3d529aa8f8586e90074d3acc24ab27bdd49e53 /assets/css/bootstrap/mixins/_table-row.scss | |
parent | 0bf0647032ff6f2d6f50b21dfe1f7e3f0837c834 (diff) |
restructure css src
Diffstat (limited to 'assets/css/bootstrap/mixins/_table-row.scss')
-rw-r--r-- | assets/css/bootstrap/mixins/_table-row.scss | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/assets/css/bootstrap/mixins/_table-row.scss b/assets/css/bootstrap/mixins/_table-row.scss deleted file mode 100644 index 1367950..0000000 --- a/assets/css/bootstrap/mixins/_table-row.scss +++ /dev/null @@ -1,28 +0,0 @@ -// 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; - } - } - - // Hover states for `.table-hover` - // Note: this is not available for cells or rows within `thead` or `tfoot`. - .table-hover > tbody > tr { - > td.#{$state}:hover, - > th.#{$state}:hover, - &.#{$state}:hover > td, - &:hover > .#{$state}, - &.#{$state}:hover > th { - background-color: darken($background, 5%); - } - } -} |