Commit 1d95a476 authored by catch's avatar catch
Browse files

Issue #3309317 by longwave, lauriii: Remove normalize-fixes.css

(cherry picked from commit 9edf0bb6)
parent 01d22dc2
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -826,7 +826,6 @@ normalize:
  css:
    base:
      assets/vendor/normalize-css/normalize.css: { weight: -20 }
      misc/normalize-fixes.css: { weight: -19 }

once:
  remote: https://git.drupalcode.org/project/once

core/misc/normalize-fixes.css

deleted100644 → 0
+0 −40
Original line number Diff line number Diff line
/**
 * @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;
  }
}