From 4b02181465e0f2bd2338c6a9860e903bfa18dd2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 26 Apr 2020 03:29:56 +0200 Subject: CSS change scale from percent to parts. Apparently chrome doesn't support transform: scale(100%), but just scale(1). Firefox support both. --- static/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 02f6228c..880f83d6 100644 --- a/static/style.css +++ b/static/style.css @@ -559,7 +559,7 @@ along with their colors. bars since the final position of the popup is calculated at runtime - Easier animation */ - transform: scale(0%); + transform: scale(0); transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1); z-index: 100; @@ -607,7 +607,7 @@ along with their colors. .popup.show { /* visibility: visible; */ - transform: scale(100%); + transform: scale(1); } .event-inner .body { -- cgit v1.2.3