From f9be36f068f77b352dd1f70f67b4ec71a75e5ba4 Mon Sep 17 00:00:00 2001 From: nod_ <nod_@598310.no-reply.drupal.org> Date: Fri, 4 Apr 2025 11:08:06 +0200 Subject: [PATCH] Issue #3514748 by catch: Remove legacy browser support from js.module.css --- .../system/css/components/js.module.css | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/core/modules/system/css/components/js.module.css b/core/modules/system/css/components/js.module.css index 645d94fa3d5d..5b109ea4dc9f 100644 --- a/core/modules/system/css/components/js.module.css +++ b/core/modules/system/css/components/js.module.css @@ -3,30 +3,22 @@ * Utility classes to assist with JavaScript functionality. */ -/** - * For anything you want to hide on page load when JS is enabled, so - * that you can use the JS to control visibility and avoid flicker. - */ -.js .js-hide { - display: none; -} - /** * For anything you want to show on page load only when JS is enabled. */ .js-show { display: none; } -.js .js-show { - display: block; -} /** * Use the scripting media features for modern browsers to reduce layout shifts. */ @media (scripting: enabled) { - /* Extra specificity to override previous selector. */ - .js-hide.js-hide { + /** + * For anything you want to hide on page load when JS is enabled, so + * that you can use the JS to control visibility and avoid flicker. + */ + .js-hide { display: none; } .js-show { -- GitLab