From 0f0856e13b777addfd5e7bd6de54855dd7d9fa01 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Tue, 31 Jan 2023 11:41:05 +0000 Subject: [PATCH] Issue #3337206 by Spokje: Remove normalize-fixes.css --- .../stable9/css/core/normalize-fixes.css | 40 ------------------- core/themes/stable9/stable9.libraries.yml | 1 - 2 files changed, 41 deletions(-) delete mode 100644 core/themes/stable9/css/core/normalize-fixes.css diff --git a/core/themes/stable9/css/core/normalize-fixes.css b/core/themes/stable9/css/core/normalize-fixes.css deleted file mode 100644 index 0845eebf286d..000000000000 --- a/core/themes/stable9/css/core/normalize-fixes.css +++ /dev/null @@ -1,40 +0,0 @@ -/** - * @file - * Fixes for core/assets/vendor/normalize-css/normalize.css since version 8.0.1. - */ - -/** - * Add SVG styling for IE that was mistakenly removed from normalize.css in - * 8.0.0. - */ -svg:not(:root) { - overflow: hidden; -} - -/** - * Prevent regression due to normalize.css no longer hiding the cancel search - * button in 8.0.0. - * @todo Remove this rule in https://drupal.org/node/3114878 - */ -input[type="search"]::-webkit-search-cancel-button { - -webkit-appearance: none; -} - -/** - * Prevent IE11 and Edge <summary> elements from being displayed as list-item. - * due to a rule added in normalize.css 5.0.0. For browsers that support - * <summary>, this is the correct styling. For IE11 and Edge, which do not - * support this element, this results in an unwanted list-item bullet. - */ -/* Target IE11 */ -@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { - summary { - display: block; - } -} -/* Target Edge */ -@supports (-ms-ime-align:auto) { - summary { - display: block; - } -} diff --git a/core/themes/stable9/stable9.libraries.yml b/core/themes/stable9/stable9.libraries.yml index d905a49a3eb7..828fdd4aa16d 100644 --- a/core/themes/stable9/stable9.libraries.yml +++ b/core/themes/stable9/stable9.libraries.yml @@ -8,7 +8,6 @@ normalize: css: base: css/core/assets/vendor/normalize-css/normalize.css: { weight: -20 } - css/core/normalize-fixes.css: { weight: -19 } tour: version: VERSION -- GitLab