From 161f5ac7b95fb878427dd80f9fed2ef17689c7d0 Mon Sep 17 00:00:00 2001 From: Earle Wilson Date: Mon, 28 Jul 2014 20:45:03 -0700 Subject: [PATCH] fixed link colors Fix allows users to change linkcolorhover, linkcolorfocus and linkcolorvisited from the variables.less file. In the original source code, the link color settings in typography.less did not match link colors settings in variables.less. This caused the link settings in the typography file to override the link settings in variables.less file. --- assets/less/typography.less | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/less/typography.less b/assets/less/typography.less index 0bb1448..0d29c4f 100644 --- a/assets/less/typography.less +++ b/assets/less/typography.less @@ -28,14 +28,14 @@ a { text-decoration: none; color: @link-color; &:visited { - color: lighten(@link-color, 20); + color: @linkcolorvisited; } &:hover { - color: darken(@link-color, 20); + color: @linkcolorhover; } &:focus { outline: thin dotted; - color: darken(@link-color, 20); + color: @linkcolorfocus; } &:hover, &:active { -- 2.43.0