fradrive/templates/table/colonnade.lucius
2018-04-09 22:22:38 +02:00

32 lines
560 B
Plaintext

table th {
cursor: pointer;
position: relative;
padding-right: 20px;
}
table th.sorted-asc,
table th.sorted-desc {
color: var(--lightbase);
}
table th.sorted-asc::after,
table th.sorted-desc::after {
content: '';
position: absolute;
right: 0;
top: 15px;
width: 0;
height: 0;
transform: translateY(-100%);
border-left: 8px solid transparent;
border-right: 8px solid transparent;
}
table th.sorted-asc::after {
border-top: 8px solid var(--lightbase);
}
table th.sorted-desc::after {
border-bottom: 8px solid var(--lightbase);
}