~xdavidwu/xdavidwu.link

161f5ac7b95fb878427dd80f9fed2ef17689c7d0 — Earle Wilson 9 years ago de87753
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.
1 files changed, 3 insertions(+), 3 deletions(-)

M assets/less/typography.less
M assets/less/typography.less => assets/less/typography.less +3 -3
@@ 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 {