blob: bfc9540a03f733ab4897f1478820dc63e2347c7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* @file
* Table sort indicator.
*
* @see tablesort-indicator.html.twig
*/
.tablesort {
display: inline-block;
width: 16px;
height: 16px;
background-size: 100%;
}
.tablesort--asc {
background-image: url(../icons/787878/twistie-down.svg);
}
.tablesort--desc {
background-image: url(../icons/787878/twistie-up.svg);
}
|