From: Tim Starling Date: Wed, 1 Feb 2006 04:44:23 +0000 (+0000) Subject: Use a.external instead of a[href ^="http://"] to detect external links. This is to... X-Git-Tag: 1.6.0~389 X-Git-Url: http://git.cyclocoop.org/ecrire?a=commitdiff_plain;h=181b26c09b81f0c75e4ee48296aaf2880846d3e0;p=lhc%2Fweb%2Fwiklou.git Use a.external instead of a[href ^=""] to detect external links. This is to support interwiki transclusion with action=render. The protocol-specific rules below still seem to work. --- diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 238352d593..e0c9460526 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -562,7 +562,7 @@ span.diffchange { ** keep the whitespace in front of the ^=, hides rule from konqueror ** this is css3, the validator doesn't like it when validating as css2 */ -#bodyContent a[href ^="http://"], +#bodyContent a.external, #bodyContent a[href ^="gopher://"] { background: url(external.png) center right no-repeat; padding-right: 13px;