Style for clickable column names.
This commit is contained in:
parent
cc3e34bd02
commit
a7a008ce5a
@ -153,6 +153,26 @@ td a:hover { transition: none; }
|
|||||||
td:nth-child(2),
|
td:nth-child(2),
|
||||||
td:last-child { white-space: nowrap; }
|
td:last-child { white-space: nowrap; }
|
||||||
|
|
||||||
|
thead tr th.clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
thead tr th.clickable:hover {
|
||||||
|
color: var(--secondary-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
thead tr th.clickable:not(.sort-up):not(.sort-down)::after {
|
||||||
|
content: '⇅';
|
||||||
|
}
|
||||||
|
|
||||||
|
thead tr th.clickable.sort-up::after {
|
||||||
|
content: '↑';
|
||||||
|
}
|
||||||
|
|
||||||
|
thead tr th.clickable.sort-down::after {
|
||||||
|
content: '↓';
|
||||||
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
font-size: .8rem;
|
font-size: .8rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
Loading…
Reference in New Issue
Block a user