From: Brion Vibber Date: Wed, 12 Oct 2005 06:25:22 +0000 (+0000) Subject: Remove mysteriously hardcoded s from 'active' links on skin. Use CSS for... X-Git-Tag: 1.6.0~1450 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=0e68de762dac67323100d21e6fe81d9adaa40b18;p=lhc%2Fweb%2Fwiklou.git Remove mysteriously hardcoded s from 'active' links on skin. Use CSS for this. --- diff --git a/skins/MonoBook.php b/skins/MonoBook.php index d410aa4e2f..58ea897c41 100644 --- a/skins/MonoBook.php +++ b/skins/MonoBook.php @@ -110,11 +110,11 @@ class MonoBookTemplate extends QuickTemplate {
    data['personal_urls'] as $key => $item) { - ?>
  • ' ?>"> class="">' ?>
@@ -134,9 +134,7 @@ class MonoBookTemplate extends QuickTemplate { echo '
  • '; - if ( $val['active'] ) echo ''; echo '' . htmlspecialchars($val['text']) . ''; - if ( $val['active'] ) echo ''; echo '
  • '; } ?> diff --git a/skins/monobook/main.css b/skins/monobook/main.css index 149b3e2400..46eca561ac 100644 --- a/skins/monobook/main.css +++ b/skins/monobook/main.css @@ -693,6 +693,7 @@ special external link styling */ #p-navigation li.active a, #p-navigation li.active a:hover { text-decoration: none; display: inline; + font-weight: bold; }