From 04f6ce23e9bf70622887c02d3a5b1b0618fa6a63 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Sat, 15 Sep 2007 01:10:24 +0000 Subject: [PATCH] sharvey: link colours are very difficult to see compared to black text - fixed by making them blue with an underline (merged from branches/gsoc) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@41876 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- css/layout.css | 4 ++++ css/typography.css | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/css/layout.css b/css/layout.css index b8b966be..29b0ebbb 100644 --- a/css/layout.css +++ b/css/layout.css @@ -168,7 +168,11 @@ html>body #top #MainMenu li { #top #MainMenu a { color: white; + text-decoration: none; } + #top #MainMenu a:hover { + text-decoration: underline; + } #top #MainMenu .current { background-color: #d4d0c8; diff --git a/css/typography.css b/css/typography.css index 267e1558..d03c33da 100644 --- a/css/typography.css +++ b/css/typography.css @@ -30,11 +30,11 @@ h2 { } a { - color: #162F42; - text-decoration: none; + color: #1E3F94; + text-decoration: underline; } a:hover { - text-decoration: underline; + text-decoration: none; } a img { border-style: none;