mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-25 02:34:17 +00:00
Make it look right with Internet Exploder.
This commit is contained in:
parent
1fb523c0fa
commit
d38b23f873
@ -38,13 +38,13 @@
|
||||
}
|
||||
|
||||
$style = ($client_page == "Interoperability" ? ' class="selected"' : '' );
|
||||
printf( '<p%s><a href="clients.php?client=Interoperability">Interoperability</a></p>', $style );
|
||||
printf( '<p%s><a%s href="clients.php?client=Interoperability">Interoperability</a></p>', $style, $style );
|
||||
|
||||
sort($clients);
|
||||
foreach( $clients AS $k => $v ) {
|
||||
if ( $v == "Interoperability" ) continue;
|
||||
$style = (strcmp($client_page,$v) == 0 ? ' class="selected"' : '' );
|
||||
printf( '<p%s><a href="clients.php?client=%s">', $style, urlencode($v) );
|
||||
printf( '<p%s><a%s href="clients.php?client=%s">', $style, $style, urlencode($v) );
|
||||
if ( isset($icons[$v]) ) {
|
||||
printf( '<img src="clients/%s"><br />', urlencode($icons[$v]) );
|
||||
}
|
||||
|
||||
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user