Index: trunk/phase3/skins/monobook/feed-icon.png |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Index: trunk/phase3/skins/monobook/rtl.css |
— | — | @@ -77,12 +77,6 @@ |
78 | 78 | right: 0; |
79 | 79 | } |
80 | 80 | |
81 | | -/* feed links */ |
82 | | -#feed-atom, #feed-rss { |
83 | | - background: none; |
84 | | - padding-left: 0; |
85 | | -} |
86 | | - |
87 | 81 | #p-cactions { |
88 | 82 | left: auto; |
89 | 83 | right: 11.5em; |
Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -900,12 +900,6 @@ |
901 | 901 | z-index: 3; |
902 | 902 | } |
903 | 903 | |
904 | | -/* feed links */ |
905 | | -#feed-atom, #feed-rss { |
906 | | - background: url("feed-icon.png") center left no-repeat; |
907 | | - padding-left: 16px; |
908 | | -} |
909 | | - |
910 | 904 | /* TODO: #t-iscite is only used by the Cite extension, come up with some |
911 | 905 | * system which allows extensions to add to this file on the fly |
912 | 906 | */ |
Index: trunk/phase3/skins/modern/feed-icon.png |
Cannot display: file marked as a binary type. |
svn:mime-type = application/octet-stream |
Index: trunk/phase3/skins/modern/rtl.css |
— | — | @@ -116,12 +116,6 @@ |
117 | 117 | padding: 0.1em 1em 0.3em 0; |
118 | 118 | } |
119 | 119 | |
120 | | -/* feed links */ |
121 | | -#feed-atom, #feed-rss { |
122 | | - background: none; |
123 | | - padding-left: 0; |
124 | | -} |
125 | | - |
126 | 120 | #p-cactions li { |
127 | 121 | float: right; |
128 | 122 | } |
Index: trunk/phase3/skins/modern/main.css |
— | — | @@ -162,12 +162,6 @@ |
163 | 163 | margin-top: .4em; |
164 | 164 | } |
165 | 165 | |
166 | | -/* feed links */ |
167 | | -#feed-atom, #feed-rss { |
168 | | - background: url("feed-icon.png") center left no-repeat; |
169 | | - padding-left: 16px; |
170 | | -} |
171 | | - |
172 | 166 | .portlet h5 { |
173 | 167 | padding: 0.1em 0 0.3em 1em; |
174 | 168 | margin: 0 0 0 0; |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -317,4 +317,10 @@ |
318 | 318 | strong.mw-revdelundel-link { |
319 | 319 | font-family: monospace; |
320 | 320 | font-size: smaller |
321 | | -} |
\ No newline at end of file |
| 321 | +} |
| 322 | + |
| 323 | +/* feed links */ |
| 324 | +a.feedlink { |
| 325 | + background: url("images/feed-icon.png") center left no-repeat; |
| 326 | + padding-left: 16px; |
| 327 | +} |
Index: trunk/phase3/skins/common/common_rtl.css |
— | — | @@ -46,3 +46,9 @@ |
47 | 47 | html > body div#article ul { |
48 | 48 | display: table; |
49 | 49 | } |
| 50 | + |
| 51 | +/* feed links */ |
| 52 | +a.feedlink { |
| 53 | + background: none; |
| 54 | + padding-left: 0; |
| 55 | +} |
Index: trunk/phase3/skins/simple/rtl.css |
— | — | @@ -71,6 +71,12 @@ |
72 | 72 | right: 0; |
73 | 73 | } |
74 | 74 | |
| 75 | +/* feed links */ |
| 76 | +a.feedlink { |
| 77 | + background: none; |
| 78 | + padding-left: 0; |
| 79 | +} |
| 80 | + |
75 | 81 | /* Fix margins for non-css2 browsers */ |
76 | 82 | /* top right bottom left */ |
77 | 83 | |
Index: trunk/phase3/skins/simple/main.css |
— | — | @@ -175,6 +175,12 @@ |
176 | 176 | padding: 0.5em 0.4em 0.4em 0.4em; |
177 | 177 | } |
178 | 178 | |
| 179 | +/* feed links */ |
| 180 | +a.feedlink { |
| 181 | + background: url("../common/images/feed-icon.png") center left no-repeat; |
| 182 | + padding-left: 16px; |
| 183 | +} |
| 184 | + |
179 | 185 | textarea { |
180 | 186 | width: 100%; |
181 | 187 | } |
Index: trunk/phase3/skins/MonoBook.php |
— | — | @@ -296,7 +296,7 @@ |
297 | 297 | if($this->data['feeds']) { ?> |
298 | 298 | <li id="feedlinks"><?php foreach($this->data['feeds'] as $key => $feed) { |
299 | 299 | ?><a id="<?php echo Sanitizer::escapeId( "feed-$key" ) ?>" href="<?php |
300 | | - echo htmlspecialchars($feed['href']) ?>"<?php echo $this->skin->tooltipAndAccesskey('feed-'.$key) ?>><?php echo htmlspecialchars($feed['text'])?></a> |
| 300 | + echo htmlspecialchars($feed['href']) ?>" class="feedlink"<?php echo $this->skin->tooltipAndAccesskey('feed-'.$key) ?>><?php echo htmlspecialchars($feed['text'])?></a> |
301 | 301 | <?php } ?></li><?php |
302 | 302 | } |
303 | 303 | |
Index: trunk/phase3/skins/Modern.php |
— | — | @@ -294,7 +294,7 @@ |
295 | 295 | if($this->data['feeds']) { ?> |
296 | 296 | <li id="feedlinks"><?php foreach($this->data['feeds'] as $key => $feed) { |
297 | 297 | ?><a id="<?php echo Sanitizer::escapeId( "feed-$key" ) ?>" href="<?php |
298 | | - echo htmlspecialchars($feed['href']) ?>"<?php echo $this->skin->tooltipAndAccesskey('feed-'.$key) ?>><?php echo htmlspecialchars($feed['text'])?></a> |
| 298 | + echo htmlspecialchars($feed['href']) ?>" class="feedlink"<?php echo $this->skin->tooltipAndAccesskey('feed-'.$key) ?>><?php echo htmlspecialchars($feed['text'])?></a> |
299 | 299 | <?php } ?></li><?php |
300 | 300 | } |
301 | 301 | |
Index: trunk/phase3/includes/DefaultSettings.php |
— | — | @@ -1455,7 +1455,7 @@ |
1456 | 1456 | * to ensure that client-side caches don't keep obsolete copies of global |
1457 | 1457 | * styles. |
1458 | 1458 | */ |
1459 | | -$wgStyleVersion = '200'; |
| 1459 | +$wgStyleVersion = '201'; |
1460 | 1460 | |
1461 | 1461 | |
1462 | 1462 | # Server-side caching: |
Index: trunk/phase3/includes/Skin.php |
— | — | @@ -1005,7 +1005,7 @@ |
1006 | 1006 | if( $wgOut->isSyndicated() ) { |
1007 | 1007 | foreach( $wgFeedClasses as $format => $class ) { |
1008 | 1008 | $feedurl = $wgRequest->escapeAppendQuery( "feed=$format" ); |
1009 | | - $s .= " | <a href=\"$feedurl\">{$format}</a>"; |
| 1009 | + $s .= " | <a href=\"$feedurl\" class=\"feedlink\">{$format}</a>"; |
1010 | 1010 | } |
1011 | 1011 | } |
1012 | 1012 | return $s; |