1
0
Fork 0

Style for clickable column names.

This commit is contained in:
Alexander Andreev 2022-06-28 04:28:34 +04:00
parent cc3e34bd02
commit a7a008ce5a
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 20 additions and 0 deletions

View File

@ -153,6 +153,26 @@ td a:hover { transition: none; }
td:nth-child(2),
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 {
font-size: .8rem;
text-align: center;