aboutsummaryrefslogtreecommitdiff
path: root/assets/css/lib/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/lib/bootstrap/mixins/_table-row.scss
parent0bf0647032ff6f2d6f50b21dfe1f7e3f0837c834 (diff)
restructure css src
Diffstat (limited to 'assets/css/lib/bootstrap/mixins/_table-row.scss')
-rw-r--r--assets/css/lib/bootstrap/mixins/_table-row.scss28
1 files changed, 28 insertions, 0 deletions
diff --git a/assets/css/lib/bootstrap/mixins/_table-row.scss b/assets/css/lib/bootstrap/mixins/_table-row.scss
new file mode 100644
index 0000000..1367950
--- /dev/null
+++ b/assets/css/lib/bootstrap/mixins/_table-row.scss
@@ -0,0 +1,28 @@
+// 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%);
+ }
+ }
+}