From c2e6e8e2b635fecf0ed5935065ec007ec188c416 Mon Sep 17 00:00:00 2001 From: Colin Fleming Date: Tue, 16 Dec 2014 19:49:30 +0000 Subject: Remove "link", "vlink" and "alink" from BODY tag This is a positional change to remove "link", "vlink" and "alink" from the BODY tag, the following themes do not have Anchor tags defined in CSS, so they use the colours defined in the BODY tag, which is blue (hex: #0000CC). _corporate code-red metallic nervecenter pfsense pfsense-dropdown Update "all.css" in the above themes with Anchor tags defined, so that the colour definition can be removed from the BODY tag. --- usr/local/www/themes/_corporate/all.css | 16 ++++++++++++++++ usr/local/www/themes/code-red/all.css | 17 +++++++++++++++++ usr/local/www/themes/metallic/all.css | 17 +++++++++++++++++ usr/local/www/themes/nervecenter/all.css | 17 +++++++++++++++++ usr/local/www/themes/pfsense-dropdown/all.css | 17 +++++++++++++++++ usr/local/www/themes/pfsense/all.css | 17 +++++++++++++++++ 6 files changed, 101 insertions(+) diff --git a/usr/local/www/themes/_corporate/all.css b/usr/local/www/themes/_corporate/all.css index 1b75d1b..b97ba4e 100644 --- a/usr/local/www/themes/_corporate/all.css +++ b/usr/local/www/themes/_corporate/all.css @@ -99,6 +99,22 @@ form { a { text-decoration: none; } +a:link { + color: #0000CC; +} + +a:visited { + color: #0000CC; +} + +a:active { + color: #0000CC; +} + +a:hover { + color: #0000CC; +} + form input { font-size: 1.1em; } diff --git a/usr/local/www/themes/code-red/all.css b/usr/local/www/themes/code-red/all.css index 25548e2..fddc89a 100644 --- a/usr/local/www/themes/code-red/all.css +++ b/usr/local/www/themes/code-red/all.css @@ -154,6 +154,23 @@ form { a { text-decoration: none; } + +a:link { + color: #0000CC; +} + +a:visited { + color: #0000CC; +} + +a:active { + color: #0000CC; +} + +a:hover { + color: #0000CC; +} + form input { font-size: 1.1em; } diff --git a/usr/local/www/themes/metallic/all.css b/usr/local/www/themes/metallic/all.css index a5b7c70..b1c78e7 100644 --- a/usr/local/www/themes/metallic/all.css +++ b/usr/local/www/themes/metallic/all.css @@ -142,6 +142,23 @@ form { a { text-decoration: none; } + +a:link { + color: #0000CC; +} + +a:visited { + color: #0000CC; +} + +a:active { + color: #0000CC; +} + +a:hover { + color: #0000CC; +} + form input { font-size: 1.1em; } diff --git a/usr/local/www/themes/nervecenter/all.css b/usr/local/www/themes/nervecenter/all.css index a7cda13..7fb626c 100644 --- a/usr/local/www/themes/nervecenter/all.css +++ b/usr/local/www/themes/nervecenter/all.css @@ -154,6 +154,23 @@ form { a { text-decoration: none; } + +a:link { + color: #0000CC; +} + +a:visited { + color: #0000CC; +} + +a:active { + color: #0000CC; +} + +a:hover { + color: #0000CC; +} + form input { font-size: 1.1em; } diff --git a/usr/local/www/themes/pfsense-dropdown/all.css b/usr/local/www/themes/pfsense-dropdown/all.css index 3bfdca4..37e0441 100644 --- a/usr/local/www/themes/pfsense-dropdown/all.css +++ b/usr/local/www/themes/pfsense-dropdown/all.css @@ -76,6 +76,23 @@ form { a { text-decoration: none; } + +a:link { + color: #0000CC; +} + +a:visited { + color: #0000CC; +} + +a:active { + color: #0000CC; +} + +a:hover { + color: #0000CC; +} + form input { font-size: 1.1em; } diff --git a/usr/local/www/themes/pfsense/all.css b/usr/local/www/themes/pfsense/all.css index 07afe1e..3846854 100644 --- a/usr/local/www/themes/pfsense/all.css +++ b/usr/local/www/themes/pfsense/all.css @@ -75,6 +75,23 @@ form { a { text-decoration: none; } + +a:link { + color: #0000CC; +} + +a:visited { + color: #0000CC; +} + +a:active { + color: #0000CC; +} + +a:hover { + color: #0000CC; +} + form input { font-size: 1.1em; } -- cgit v1.1