From: Chad Horohoe Date: Wed, 15 Jul 2009 23:36:16 +0000 (+0000) Subject: (bug 18708) CSS plainlinks class now available to all skins X-Git-Tag: 1.31.0-rc.0~40900 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/journal.php?a=commitdiff_plain;h=af01db6f62aaedb6374344a6359a0ac6c411dd84;p=lhc%2Fweb%2Fwiklou.git (bug 18708) CSS plainlinks class now available to all skins --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1879cf82ef..3f144ec375 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -275,6 +275,7 @@ this. Was used when mwEmbed was going to be an extension. history view, edit page, or something similar * (bug 19513) RTL fixes for new Search UI * (bug 16497) Special:Allmessages is paginated +* (bug 18708) CSS plainlinks class now available to all skins == API changes in 1.16 == diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 9e04bb7028..d84fd598d5 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1566,7 +1566,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches do not keep obsolete copies of global * styles. */ -$wgStyleVersion = '232'; +$wgStyleVersion = '233'; # Server-side caching: diff --git a/skins/common/shared.css b/skins/common/shared.css index 30a5fd5ff7..e99e926d25 100644 --- a/skins/common/shared.css +++ b/skins/common/shared.css @@ -533,6 +533,13 @@ a.feedlink { padding-left: 16px; } +/* Plainlinks - this can be used to switch + * off special external link styling */ +.plainlinks a { + background: none !important; + padding: 0 !important; +} + /* wikitable class for skinning normal tables */ table.wikitable { margin: 1em 1em 1em 0; diff --git a/skins/modern/main.css b/skins/modern/main.css index fd848337e7..909c03c3da 100644 --- a/skins/modern/main.css +++ b/skins/modern/main.css @@ -531,12 +531,6 @@ img.thumbborder { .hiddenStructure { display: none; } - -#mw_content .plainlinks a { - background: none !important; - padding: 0 !important; -} - .mw-warning { border: 1px solid #aaa; background-color: #f9f9f9; diff --git a/skins/monobook/main.css b/skins/monobook/main.css index b4043c2daa..d545f9525f 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -573,12 +573,6 @@ table.rimage { #bodyContent a.external { color: #36b; } -/* this can be used in the content area to switch off -special external link styling */ -#bodyContent .plainlinks a { - background: none !important; - padding: 0 !important; -} /* ** Structural Elements */ diff --git a/skins/vector/main-ltr.css b/skins/vector/main-ltr.css index 5c0e1474a3..de2f85d097 100644 --- a/skins/vector/main-ltr.css +++ b/skins/vector/main-ltr.css @@ -947,12 +947,6 @@ h1#firstHeading { #content a.external { color: #36b; } -#content .plainlinks a { - /* this can be used in the content area to switch off special external link - * styling */ - background: none !important; - padding: 0 !important; -} #content .printfooter { display: none; } diff --git a/skins/vector/main-rtl.css b/skins/vector/main-rtl.css index 47268abc31..9558c9c76f 100644 --- a/skins/vector/main-rtl.css +++ b/skins/vector/main-rtl.css @@ -947,12 +947,6 @@ h1#firstHeading { #content a.external { color: #36b; } -#content .plainlinks a { - /* this can be used in the content area to switch off special external link - * styling */ - background: none !important; - padding: 0 !important; -} #content .printfooter { display: none; }