From e7240ea6b469917626fc73a70e6b9d27d725e1c3 Mon Sep 17 00:00:00 2001 From: Joshua Seigler Date: Fri, 9 Sep 2016 22:38:15 -0400 Subject: [PATCH] fix: mute button delays disappearing --- style.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style.css b/style.css index 28030ad..b5dc901 100644 --- a/style.css +++ b/style.css @@ -102,11 +102,13 @@ a { border-radius: 0 0 0.5em 0; border-width: 0 0.1em 0.1em 0; transition: opacity 0.5s; + transition-delay: 1s; opacity: 0; cursor: pointer; } #muteToggle:hover { opacity: 1; + transition-delay: 0s; } #muteToggle:before { content: 'Mute';