From 8a39753a5d5ddada6b42581b2911703a9e16ddd9 Mon Sep 17 00:00:00 2001 From: andreabix Date: Wed, 24 Mar 2004 10:58:26 +0000 Subject: [PATCH] Theme update: modified the .autolink class in order to obtain a question mark cursor when mouse hovers the glossary link. --- theme/formal_white/config.php | 2 +- theme/formal_white/styles.php | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/theme/formal_white/config.php b/theme/formal_white/config.php index dfc6380f69..4ab2c05840 100644 --- a/theme/formal_white/config.php +++ b/theme/formal_white/config.php @@ -8,7 +8,7 @@ $THEME->cellcontent2 = "#C6BDA8"; // Alternate colour $THEME->borders = "#C6BDA8"; // Table borders $THEME->highlight = "#849DBC"; // Highlighted text (eg after a search) $THEME->hidden = "#979EA8"; // To color things that are hidden -$THEME->autolink = "#849DBC"; // To color auto-generated links (eg glossary) +$THEME->autolink = "#FEF9F6"; // To color auto-generated links (eg glossary) $THEME->custompix = false; // If true, then this theme must have a "pix" // subdirectory that contains copies of all diff --git a/theme/formal_white/styles.php b/theme/formal_white/styles.php index 92e62d2f11..d6f0407085 100644 --- a/theme/formal_white/styles.php +++ b/theme/formal_white/styles.php @@ -439,17 +439,23 @@ a.autolink:link { text-decoration: none; color: #000000; background-color: autolink?>; + border-bottom: dashed 1px #000000; + cursor: help; } a.autolink:visited { text-decoration: none; color: #000000; background-color: autolink?>; + border-bottom: dashed 1px #000000; + cursor: help; } a.autolink:hover { - text-decoration: underline; - color: #990000; + text-decoration: none; + border-bottom: solid 1px #000000; + color: #000000; + cursor: help; } .userinfobox { -- 2.39.5