Version 1
[yaffs-website] / web / core / themes / seven / css / components / tablesort-indicator.css
1 /**
2  * @file
3  * Tablesort indicator styles.
4  */
5
6 .tablesort {
7   float: right; /* LTR */
8   margin-top: 5px;
9   width: 10px;
10   height: 10px;
11 }
12 [dir="rtl"] .tablesort {
13   float: left;
14 }
15 .tablesort--asc {
16   background-image: url(../../../../misc/icons/004875/twistie-down.svg);
17 }
18 a:hover .tablesort--asc {
19   background-image: url(../../../../misc/icons/008ee6/twistie-down.svg);
20 }
21 .tablesort--desc {
22   background-image: url(../../../../misc/icons/004875/twistie-up.svg);
23 }
24 a:hover .tablesort--desc {
25   background-image: url(../../../../misc/icons/008ee6/twistie-up.svg);
26 }