Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -815,3 +815,8 @@ |
816 | 816 | background-position: middle middle; |
817 | 817 | background-repeat: no-repeat; |
818 | 818 | } |
| 819 | + |
| 820 | +/* Sort arrows added by SortableTables */ |
| 821 | +a.sortheader { |
| 822 | + margin: 0 0.3em; |
| 823 | +} |
Index: trunk/phase3/skins/common/wikibits.js |
— | — | @@ -534,8 +534,7 @@ |
535 | 535 | for (var i = 0; i < firstRow.cells.length; i++) { |
536 | 536 | var cell = firstRow.cells[i]; |
537 | 537 | if ((" "+cell.className+" ").indexOf(" unsortable ") == -1) { |
538 | | - cell.innerHTML += ' ' |
539 | | - + '<a href="#" class="sortheader" ' |
| 538 | + cell.innerHTML += '<a href="#" class="sortheader" ' |
540 | 539 | + 'onclick="ts_resortTable(this);return false;">' |
541 | 540 | + '<span class="sortarrow">' |
542 | 541 | + '<img src="' |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1605,7 +1605,7 @@ |
1606 | 1606 | * to ensure that client-side caches do not keep obsolete copies of global |
1607 | 1607 | * styles. |
1608 | 1608 | */ |
1609 | | -$wgStyleVersion = '249'; |
| 1609 | +$wgStyleVersion = '250'; |
1610 | 1610 | |
1611 | 1611 | |
1612 | 1612 | # Server-side caching: |