From 4f28e6af8353d75d4a62ea1eaf847deffb1f92be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Tue, 15 Feb 2022 01:25:08 +0100 Subject: [PATCH] menu: avoid menu animation on page load in IE #180 --- static/css/theme.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/css/theme.css b/static/css/theme.css index 0c6ff6e23a..c788dc3a83 100644 --- a/static/css/theme.css +++ b/static/css/theme.css @@ -1445,3 +1445,11 @@ h6 a { display: none; } } + +/* turn off animiation in IE because this causes the menu +to move in from the left on every page load */ +@media all and (-ms-high-contrast:none) { + .default-animation{ + transition: none; + } +}