From 8b032f03f2544f7c0794ef9e04dff077b51f3d13 Mon Sep 17 00:00:00 2001 From: Eston Bond Date: Mon, 13 Dec 2010 14:34:44 -0800 Subject: [PATCH] Adding absent link color --- lib/gollum/frontend/public/css/template.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/gollum/frontend/public/css/template.css b/lib/gollum/frontend/public/css/template.css index d1755a38..9cde6b98 100755 --- a/lib/gollum/frontend/public/css/template.css +++ b/lib/gollum/frontend/public/css/template.css @@ -24,6 +24,16 @@ text-decoration: none; } +/* + Link classes available: + .absent - for internal links that do not yet exist + .internal - for internal links (links that link to other wiki pages) + .present - for internal links that exist (normal color) +*/ +#template a.absent { + color: #d00 !important; +} + #template a:hover, #template a:visited { text-decoration: underline; }