aboutsummaryrefslogtreecommitdiff
path: root/assets/css/bootstrap/mixins/_table-row.scss
diff options
context:
space:
mode:
authorMaZderMind2014-10-18 13:35:04 +0200
committerMaZderMind2014-10-18 13:35:04 +0200
commitc3a21ba38664d89d946b849f8a3c36941bc72e12 (patch)
tree7d3d529aa8f8586e90074d3acc24ab27bdd49e53 /assets/css/bootstrap/mixins/_table-row.scss
parent0bf0647032ff6f2d6f50b21dfe1f7e3f0837c834 (diff)
restructure css src
Diffstat (limited to 'assets/css/bootstrap/mixins/_table-row.scss')
-rw-r--r--assets/css/bootstrap/mixins/_table-row.scss28
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%);
- }
- }
-}