Index: trunk/phase3/skins/modern/main.css |
— | — | @@ -411,38 +411,36 @@ |
412 | 412 | } |
413 | 413 | |
414 | 414 | #mw_content a.external, |
415 | | -#mw_content a[href ^="gopher://"] { |
| 415 | +#mw_content a.external[href ^="gopher://"] { |
416 | 416 | /* @embed */ |
417 | 417 | background: url(external.png) center right no-repeat; |
418 | 418 | padding-right: 13px; |
419 | 419 | } |
420 | | -#mw_content a[href ^="https://"], |
| 420 | +#mw_content a.external[href ^="https://"], |
421 | 421 | .link-https { |
422 | 422 | /* @embed */ |
423 | 423 | background: url(lock_icon.gif) center right no-repeat; |
424 | 424 | padding-right: 16px; |
425 | 425 | } |
426 | | -#mw_content a[href ^="mailto:"], |
| 426 | +#mw_content a.external[href ^="mailto:"], |
427 | 427 | .link-mailto { |
428 | 428 | /* @embed */ |
429 | 429 | background: url(mail_icon.gif) center right no-repeat; |
430 | 430 | padding-right: 18px; |
431 | 431 | } |
432 | | -#mw_content a[href ^="news://"] { |
| 432 | +#mw_content a.external[href ^="news://"] { |
433 | 433 | /* @embed */ |
434 | 434 | background: url(news_icon.png) center right no-repeat; |
435 | 435 | padding-right: 18px; |
436 | 436 | } |
437 | | -#mw_content a[href ^="ftp://"], |
| 437 | +#mw_content a.external[href ^="ftp://"], |
438 | 438 | .link-ftp { |
439 | 439 | /* @embed */ |
440 | 440 | background: url(file_icon.gif) center right no-repeat; |
441 | 441 | padding-right: 18px; |
442 | 442 | } |
443 | | -#mw_content a[href ^="irc://"], |
444 | | -#mw_content a.extiw[href ^="irc://"], |
445 | | -#mw_content a[href ^="ircs://"], |
446 | | -#mw_content a.extiw[href ^="ircs://"], |
| 443 | +#mw_content a.external[href ^="irc://"], |
| 444 | +#mw_content a.external[href ^="ircs://"], |
447 | 445 | .link-irc { |
448 | 446 | /* @embed */ |
449 | 447 | background: url(discussionitem_icon.gif) center right no-repeat; |
— | — | @@ -624,8 +622,6 @@ |
625 | 623 | #mw_content a.extiw, |
626 | 624 | #mw_content a.extiw:active { |
627 | 625 | color: #36b; |
628 | | - background: none; |
629 | | - padding: 0; |
630 | 626 | } |
631 | 627 | #mw_content a.external { |
632 | 628 | color: #36b; |
Index: trunk/phase3/skins/common/commonElements.css |
— | — | @@ -31,9 +31,6 @@ |
32 | 32 | .mw-body a.extiw, |
33 | 33 | .mw-body a.extiw:active { |
34 | 34 | color: #36b; |
35 | | - /* Don't show icons for interwiki links */ |
36 | | - background: none; |
37 | | - padding: 0; |
38 | 35 | } |
39 | 36 | .mw-body a.extiw:visited { |
40 | 37 | color: #636; |
Index: trunk/phase3/skins/simple/main.css |
— | — | @@ -198,34 +198,32 @@ |
199 | 199 | h1.firstHeading, h2 { |
200 | 200 | border-bottom: solid 1px black; |
201 | 201 | } |
202 | | -#bodyContent a[href ^="http://"], |
203 | | -#bodyContent a[href ^="gopher://"] { |
| 202 | +#bodyContent a.external, |
| 203 | +#bodyContent a.external[href ^="gopher://"] { |
204 | 204 | background: url("external.png") center right no-repeat; |
205 | 205 | padding-right: 13px; |
206 | 206 | } |
207 | | -#bodyContent a[href ^="https://"], |
| 207 | +#bodyContent a.external[href ^="https://"], |
208 | 208 | .link-https { |
209 | 209 | background: url("lock_icon.gif") center right no-repeat; |
210 | 210 | padding-right: 16px; |
211 | 211 | } |
212 | | -#bodyContent a[href ^="mailto:"], |
| 212 | +#bodyContent a.external[href ^="mailto:"], |
213 | 213 | .link-mailto { |
214 | 214 | background: url("mail_icon.gif") center right no-repeat; |
215 | 215 | padding-right: 18px; |
216 | 216 | } |
217 | | -#bodyContent a[href ^="news://"] { |
| 217 | +#bodyContent a.external[href ^="news://"] { |
218 | 218 | background: url("news_icon.png") center right no-repeat; |
219 | 219 | padding-right: 18px; |
220 | 220 | } |
221 | | -#bodyContent a[href ^="ftp://"], |
| 221 | +#bodyContent a.external[href ^="ftp://"], |
222 | 222 | .link-ftp { |
223 | 223 | background: url("file_icon.gif") center right no-repeat; |
224 | 224 | padding-right: 18px; |
225 | 225 | } |
226 | | -#bodyContent a[href ^="irc://"], |
227 | | -#bodyContent a.extiw[href ^="irc://"], |
228 | | -#bodyContent a[href ^="ircs://"], |
229 | | -#bodyContent a.extiw[href ^="ircs://"], |
| 226 | +#bodyContent a.external[href ^="irc://"], |
| 227 | +#bodyContent a.external[href ^="ircs://"], |
230 | 228 | .link-irc { |
231 | 229 | background: url("discussionitem_icon.gif") center right no-repeat; |
232 | 230 | padding-right: 18px; |
— | — | @@ -234,8 +232,6 @@ |
235 | 233 | #bodyContent a.extiw, |
236 | 234 | #bodyContent a.extiw:active { |
237 | 235 | color: #5E7CFF; |
238 | | - background: none; |
239 | | - padding: 0; |
240 | 236 | } |
241 | 237 | |
242 | 238 | td.diff-addedline { |
Index: trunk/phase3/skins/vector/screen.css |
— | — | @@ -695,38 +695,36 @@ |
696 | 696 | font-size: 1.6em; |
697 | 697 | } |
698 | 698 | div#content a.external, |
699 | | -div#content a[href ^="gopher://"] { |
| 699 | +div#content a.external[href ^="gopher://"] { |
700 | 700 | /* @embed */ |
701 | 701 | background: url(images/external-link-ltr-icon.png) center right no-repeat; |
702 | 702 | padding-right: 13px; |
703 | 703 | } |
704 | | -div#content a[href ^="https://"], |
| 704 | +div#content a.external[href ^="https://"], |
705 | 705 | .link-https { |
706 | 706 | /* @embed */ |
707 | 707 | background: url(images/lock-icon.png) center right no-repeat; |
708 | 708 | padding-right: 13px; |
709 | 709 | } |
710 | | -div#content a[href ^="mailto:"], |
| 710 | +div#content a.external[href ^="mailto:"], |
711 | 711 | .link-mailto { |
712 | 712 | /* @embed */ |
713 | 713 | background: url(images/mail-icon.png) center right no-repeat; |
714 | 714 | padding-right: 13px; |
715 | 715 | } |
716 | | -div#content a[href ^="news://"] { |
| 716 | +div#content a.external[href ^="news://"] { |
717 | 717 | /* @embed */ |
718 | 718 | background: url(images/news-icon.png) center right no-repeat; |
719 | 719 | padding-right: 13px; |
720 | 720 | } |
721 | | -div#content a[href ^="ftp://"], |
| 721 | +div#content a.external[href ^="ftp://"], |
722 | 722 | .link-ftp { |
723 | 723 | /* @embed */ |
724 | 724 | background: url(images/file-icon.png) center right no-repeat; |
725 | 725 | padding-right: 13px; |
726 | 726 | } |
727 | | -div#content a[href ^="irc://"], |
728 | | -div#content a.extiw[href ^="irc://"], |
729 | | -div#content a[href ^="ircs://"], |
730 | | -div#content a.extiw[href ^="ircs://"], |
| 727 | +div#content a.external[href ^="irc://"], |
| 728 | +div#content a.external[href ^="ircs://"], |
731 | 729 | .link-irc { |
732 | 730 | /* @embed */ |
733 | 731 | background: url(images/talk-icon.png) center right no-repeat; |