Index: trunk/phase3/skins/common/diff.css |
— | — | @@ -11,6 +11,12 @@ |
12 | 12 | td.diff-marker { |
13 | 13 | text-align: right; |
14 | 14 | } |
| 15 | +.rtl td.diff-marker { |
| 16 | + text-align: left; |
| 17 | +} |
| 18 | +td.diff-lineno { |
| 19 | + font-weight: bold; |
| 20 | +} |
15 | 21 | td.diff-addedline { |
16 | 22 | background: #cfc; |
17 | 23 | font-size: smaller; |
Index: trunk/phase3/includes/DifferenceEngine.php |
— | — | @@ -1734,8 +1734,8 @@ |
1735 | 1735 | } |
1736 | 1736 | |
1737 | 1737 | function _block_header( $xbeg, $xlen, $ybeg, $ylen ) { |
1738 | | - $r = '<tr><td colspan="2" align="left"><strong><!--LINE '.$xbeg."--></strong></td>\n" . |
1739 | | - '<td colspan="2" align="left"><strong><!--LINE '.$ybeg."--></strong></td></tr>\n"; |
| 1738 | + $r = '<tr><td colspan="2" class="diff-lineno"><!--LINE '.$xbeg."--></td>\n" . |
| 1739 | + '<td colspan="2" class="diff-lineno"><!--LINE '.$ybeg."--></td></tr>\n"; |
1740 | 1740 | return $r; |
1741 | 1741 | } |
1742 | 1742 | |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1125,7 +1125,7 @@ |
1126 | 1126 | * to ensure that client-side caches don't keep obsolete copies of global |
1127 | 1127 | * styles. |
1128 | 1128 | */ |
1129 | | -$wgStyleVersion = '70'; |
| 1129 | +$wgStyleVersion = '71'; |
1130 | 1130 | |
1131 | 1131 | |
1132 | 1132 | # Server-side caching: |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -64,6 +64,7 @@ |
65 | 65 | and the dupes removed from the default skin files. |
66 | 66 | Skins can still override the default rules. |
67 | 67 | * (bug 1229) Balance columns in diff display evenly |
| 68 | +* Right-align diff line numbers in RTL language display |
68 | 69 | |
69 | 70 | |
70 | 71 | == MediaWiki API changes since 1.10 == |