From: Mischa POSLAWSKY Date: Mon, 6 Dec 2010 20:40:47 +0000 (+0100) Subject: style: fix hovered links in level cells X-Git-Tag: v1.4~54 X-Git-Url: http://git.shiar.nl/sheet.git/commitdiff_plain/800bf2e0f78452d2e2297aee41c5f62a9e2ef471 style: fix hovered links in level cells Was unreadable in circus. --- diff --git a/base.css b/base.css index d05e452..7e9168a 100644 --- a/base.css +++ b/base.css @@ -558,6 +558,10 @@ ul.legend-set li { #browser td > a { text-decoration: none; } +#browser td > a:active, +#browser td > a:hover { + text-decoration: underline; +} #browser tr .aside { font-size: 80%; overflow: hidden; diff --git a/circus.css b/circus.css index 4389deb..69137b2 100644 --- a/circus.css +++ b/circus.css @@ -2,14 +2,19 @@ @import url(terse.css) all and (max-width: 80em); .l1 {background: #F77} +.l1:hover a, .l1:hover a:visited, .l1:hover { color: #F77; background: #000} .l2 {background: #FC6} +.l2:hover a, .l2:hover a:visited, .l2:hover { color: #FC6; background: #000} .l3 {background: #FF6} +.l3:hover a, .l3:hover a:visited, .l3:hover { color: #FF6; background: #000} .l4 {background: #CF8} +.l4:hover a, .l4:hover a:visited, .l4:hover { color: #CF8; background: #000} .l5 {background: #8F8} +.l5:hover a, .l5:hover a:visited, .l5:hover { color: #8F8; background: #000} .ex { color: #D00}