summaryrefslogtreecommitdiff
path: root/searx/static/oscar/less/bootstrap/mixins/table-row.less
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2015-01-01 17:48:12 +0100
committerAdam Tauber <asciimoo@gmail.com>2015-01-01 17:48:12 +0100
commit9f12605f7ebc9ca5575fc4ee9900e0e821366c4d (patch)
treecbb1e9c475134ebbc22edefa4128b0a48f1e5770 /searx/static/oscar/less/bootstrap/mixins/table-row.less
parente3957d6adf5298dbc009a0892f5c088c397c586b (diff)
[enh] themes static content refactor
Diffstat (limited to 'searx/static/oscar/less/bootstrap/mixins/table-row.less')
-rw-r--r--searx/static/oscar/less/bootstrap/mixins/table-row.less28
1 files changed, 0 insertions, 28 deletions
diff --git a/searx/static/oscar/less/bootstrap/mixins/table-row.less b/searx/static/oscar/less/bootstrap/mixins/table-row.less
deleted file mode 100644
index 0f287f1a8..000000000
--- a/searx/static/oscar/less/bootstrap/mixins/table-row.less
+++ /dev/null
@@ -1,28 +0,0 @@
-// Tables
-
-.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%);
- }
- }
-}