aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-04-26 03:29:56 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-04-26 03:29:56 +0200
commit4b02181465e0f2bd2338c6a9860e903bfa18dd2a (patch)
tree6c02289431be0f800d2a662bf774281167951e22
parentMonth view better colors. (diff)
downloadcalp-4b02181465e0f2bd2338c6a9860e903bfa18dd2a.tar.gz
calp-4b02181465e0f2bd2338c6a9860e903bfa18dd2a.tar.xz
CSS change scale from percent to parts.
Apparently chrome doesn't support transform: scale(100%), but just scale(1). Firefox support both.
-rw-r--r--static/style.css4
1 files 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 {