From ae9eaba8c286436cc5822dfe11656c19f61838ca Mon Sep 17 00:00:00 2001 From: Stefan Breunig Date: Wed, 13 Feb 2013 17:45:07 +0100 Subject: [PATCH] further refine tooltips to be more visible against the map --- style.css | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/style.css b/style.css index f179dc6a..46ffb18c 100644 --- a/style.css +++ b/style.css @@ -450,6 +450,10 @@ h3 { border: 1px solid #666; } +.mods span:not([title]) { + cursor: auto; +} + .res .mods span, .res .meter { border: 1px solid #0076b6; } @@ -615,14 +619,20 @@ aside:nth-child(odd) span { /* tooltips */ .ui-tooltip { - background: #1E425D; - border: 1px solid #20A8B1; - box-shadow:0 0 7px #000; - color: #EEEEEE; - font-family: Verdana, sans-serif; - font-size:13px; max-width: 300px; - padding: 8px; position: absolute; z-index: 9999; + background-color: #fff; + border: 1px solid #ccc; + color: #222; + font: 13px/15px "Helvetica Neue", Arial, Helvetica, sans-serif; + padding: 2px 4px; +} + +td { + padding: 0; +} + +td + td { + padding-left: 4px; }