From 6f0e5e64ec1f260b0552e631da852debcb697d7e Mon Sep 17 00:00:00 2001 From: Franziska Kunsmann Date: Sat, 25 Dec 2021 09:30:26 +0100 Subject: [PATCH] frontend_rc3.css: remove initial animation If we have an animation, this is unusable for OBS studio mode, because then there's only two options: - switch to live without being able to verify information - skip the animation entirely I don't think Option 1 is a good option, thus users will most likely always wait for the information to appear. Having to wait for the information is not suitable then. --- .../static/pretalx_broadcast_tools/frontend_rc3.css | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/pretalx_broadcast_tools/static/pretalx_broadcast_tools/frontend_rc3.css b/pretalx_broadcast_tools/static/pretalx_broadcast_tools/frontend_rc3.css index c971bd0..04ba267 100644 --- a/pretalx_broadcast_tools/static/pretalx_broadcast_tools/frontend_rc3.css +++ b/pretalx_broadcast_tools/static/pretalx_broadcast_tools/frontend_rc3.css @@ -23,13 +23,11 @@ p { position: absolute; bottom: 80px; left: 50%; - margin-left: -2010px; + margin-left: -510px; color: white; background-color: transparent !important; border:1px solid #ccc !important; border-bottom: none !important; - animation: slide 0.7s forwards; - animation-delay: 2s; } #l3title { @@ -63,9 +61,3 @@ p { padding: 0 20px; text-align: right; } - -@keyframes slide { - 100% { - margin-left: -510px; - } -}