diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-02-23 14:42:41 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2022-02-24 23:45:18 +0100 |
commit | 06b351722e4d545fb8fb2f578aaf88e3883e68f5 (patch) | |
tree | 10b5fb0f4b94c426ceb38e272ff034b4b9b126cf /themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css | |
parent | e0e6989a4a6e06fb9375b41e4baf62d265dd2eaf (diff) |
luci-theme-bootstrap: add table column sort indicators
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css')
-rw-r--r-- | themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css index c1d1c8f51a..09f469784a 100644 --- a/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css +++ b/themes/luci-theme-bootstrap/htdocs/luci-static/bootstrap/cascade.css @@ -2051,6 +2051,10 @@ table table td, background: var(--background-color-medium); } +th[data-sortable-row] { cursor: pointer; } +th[data-sort-direction="asc"]::after { content: "\a0\25b2"; } +th[data-sort-direction="desc"]::after { content: "\a0\25bc"; } + .cbi-value-description { margin: .25em 0 0 1.25em; position: relative; |