mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
24 lines
366 B
SCSS
24 lines
366 B
SCSS
thead.table-header {
|
|
th {
|
|
&.th-sortable {
|
|
cursor: pointer;
|
|
}
|
|
&.th-sorted-asc, &.th-sorted-desc {
|
|
&:after {
|
|
display: inline-block;
|
|
padding-left: 10px;
|
|
}
|
|
}
|
|
&.th-sorted-asc {
|
|
&:after {
|
|
content: "⇧";
|
|
}
|
|
}
|
|
&.th-sorted-desc {
|
|
&:after {
|
|
content: "⇩";
|
|
}
|
|
}
|
|
}
|
|
}
|