diff options
author | friendica <info@friendica.com> | 2014-02-01 21:12:26 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-01 21:12:26 -0800 |
commit | 17436f060f54e1c218296bce0bdc7b05abe4ee33 (patch) | |
tree | 6ae490aeca317249cc42a3e694157d9b0029914e /view | |
parent | 34850289ffd35efcc96c267e9d8b0207db83e575 (diff) | |
download | volse-hubzilla-17436f060f54e1c218296bce0bdc7b05abe4ee33.tar.gz volse-hubzilla-17436f060f54e1c218296bce0bdc7b05abe4ee33.tar.bz2 volse-hubzilla-17436f060f54e1c218296bce0bdc7b05abe4ee33.zip |
fix default link color
Diffstat (limited to 'view')
-rw-r--r-- | view/theme/redbasic/css/style.css | 2 | ||||
-rw-r--r-- | view/theme/redbasic/php/style.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 1a36c1c43..fe6d24f18 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -44,7 +44,7 @@ a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { text-decoration: none; } -a:hover, .fakelink:hover { color: #c40003; text-decoration: underline; } +a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; } .fakelink { cursor: pointer; diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index fcb762891..981aaddb2 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -65,7 +65,7 @@ $nav_bg_4 = "#b00"; } if (! $link_colour) - $link_colour = "#7b0000"; + $link_colour = "#0080FF"; if (! $banner_colour) $banner_colour = "fff"; if (! $bgcolour) |