From d38b23f8738ba497f8da9970707996a0efbd44bd Mon Sep 17 00:00:00 2001 From: Andrew McMillan Date: Sun, 12 Nov 2006 00:33:29 +1300 Subject: [PATCH] Make it look right with Internet Exploder. --- docs/website/clients.php | 4 ++-- docs/website/style.css | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/website/clients.php b/docs/website/clients.php index 4ae15b49..fcda89b3 100644 --- a/docs/website/clients.php +++ b/docs/website/clients.php @@ -38,13 +38,13 @@ } $style = ($client_page == "Interoperability" ? ' class="selected"' : '' ); - printf( 'Interoperability

', $style ); + printf( 'Interoperability

', $style, $style ); sort($clients); foreach( $clients AS $k => $v ) { if ( $v == "Interoperability" ) continue; $style = (strcmp($client_page,$v) == 0 ? ' class="selected"' : '' ); - printf( '', $style, urlencode($v) ); + printf( '', $style, $style, urlencode($v) ); if ( isset($icons[$v]) ) { printf( '
', urlencode($icons[$v]) ); } diff --git a/docs/website/style.css b/docs/website/style.css index aacdf9c1..eac72483 100644 --- a/docs/website/style.css +++ b/docs/website/style.css @@ -240,9 +240,14 @@ pre { border: none; } -#leftSide a { +#leftSide a, #leftSide a:link, #leftSide a:hover, #leftSide a:active, #leftSide a:visited { text-decoration: none; - color: inherit; + color: black; +} + +#leftSide a.selected, #leftSide a.selected:link, #leftSide a.selected:hover, #leftSide a.selected:active, #leftSide a.selected:visited { + text-decoration: none; + color: white; } #rightSide {