From aa23a7bce5c59f43cd4690f31b29e98a8aee8901 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Fri, 3 Oct 2014 09:56:05 +0200 Subject: [PATCH] Re enable rotation button transition The opacity transition was broken with #2782 --- css/ol.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/css/ol.css b/css/ol.css index 44ea0f35e9..e09c563cac 100644 --- a/css/ol.css +++ b/css/ol.css @@ -53,11 +53,12 @@ .ol-rotate { top: .5em; right: .5em; - transition: opacity .25s; + transition: opacity .25s linear, visibility 0s linear; } .ol-rotate.ol-hidden { opacity: 0; - display: none; + visibility: hidden; + transition: opacity .25s linear, visibility 0s linear .25s; } .ol-zoom-extent { top: 4.643em;