Commit bab4c5d0 authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:sparkles: feat(interface): Added visual indication that a column is sorted

An icon is shown after column text to show that it it sorted

closes #5708
Showing with 16 additions and 0 deletions
+16 -0
......@@ -31,6 +31,14 @@ html.rtl table.listingTable > thead > tr > th {
border-left: 1px solid #c0c2c3;
}
/* Up and Down Arrows */
.listingTable > thead > tr > th.descend:after {
content: "\25B2";
}
.listingTable > thead > tr > th.ascend:after {
content: "\25BC";
}
table.listingTable > tbody {
height: 100%;
overflow-x: hidden;
......
......@@ -31,6 +31,14 @@ html.rtl table.listingTable > thead > tr > th {
border-left: 1px solid #aaa;
}
/* Up and Down Arrows */
.listingTable > thead > tr > th.descend:after {
content: "\25B2";
}
.listingTable > thead > tr > th.ascend:after {
content: "\25BC";
}
table.listingTable > tbody {
height: 100%;
overflow-x: hidden;
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment