mirror of
https://github.com/searxng/searxng.git
synced 2025-08-03 10:32:21 +02:00
oscar template: generate bootstrap.min.css from source
This commit is contained in:
parent
14b0604bc0
commit
841f1eedfc
74 changed files with 9169 additions and 5 deletions
28
searx/static/oscar/less/bootstrap/mixins/table-row.less
Normal file
28
searx/static/oscar/less/bootstrap/mixins/table-row.less
Normal file
|
@ -0,0 +1,28 @@
|
|||
// 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%);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue