From e106db76d4f6c531484bff28b4e38c56e209f4c1 Mon Sep 17 00:00:00 2001 From: John Firebaugh Date: Tue, 5 Mar 2013 12:28:56 -0800 Subject: [PATCH] Hidden tooltips should be `display: none` `display: block; opacity: 0` leads to odd mouse behavior. --- css/app.css | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/css/app.css b/css/app.css index 22c633e26..fecf8e61f 100644 --- a/css/app.css +++ b/css/app.css @@ -1528,16 +1528,14 @@ a.success-action { .tooltip { width: 200px; position: absolute; - z-index: -1000; - height: 0; - opacity: 0; - display: block; + display: none; } .tooltip.in { opacity: 0.8; z-index: 1030; height: auto; + display: block; } .tooltip.top {