From 5e88043c7bed5623b9c1271156e177fd16cf62c0 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Fri, 22 Aug 2025 20:48:26 +0300 Subject: [PATCH] client/settings/disable motion: add the CSS implementation --- apps/client/src/stylesheets/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/apps/client/src/stylesheets/style.css b/apps/client/src/stylesheets/style.css index c5b24f88e..2c21ffb7a 100644 --- a/apps/client/src/stylesheets/style.css +++ b/apps/client/src/stylesheets/style.css @@ -28,6 +28,14 @@ --ck-mention-list-max-height: 500px; } +body.motion-disabled *, +body.motion-disabled *::before, +body.motion-disabled *::after { + /* Disable transitions and animations */ + transition: none !important; + animation: none !important; +} + .table { --bs-table-bg: transparent !important; }