3bea471f14cb53d86a7ee8873739b9e6b4a4ff5d
[lhc/web/wiklou.git] / resources / src / jquery.tablesorter / jquery.tablesorter.less
1 @import 'mediawiki.mixins';
2
3 /* Table Sorting */
4
5 table.jquery-tablesorter {
6 th.headerSort {
7 .background-image-svg( 'images/sort_both.svg', 'images/sort_both.png' );
8 cursor: pointer;
9 background-repeat: no-repeat;
10 background-position: center right;
11 // Note: To avoid reflows, a padding is set in
12 // the jquery.tableSorter.styles module as a render blocking style.
13 // Please do not add any CSS rules here that impact the positioning of the element
14 // e.g. padding, margin, position or float.
15 }
16
17 th.headerSortUp {
18 .background-image-svg( 'images/sort_up.svg', 'images/sort_up.png' );
19 }
20
21 th.headerSortDown {
22 .background-image-svg( 'images/sort_down.svg', 'images/sort_down.png' );
23 }
24 }