Issue #2886904 by jhodgdon, andrewmacpherson, volkerk, Eric Heydrich, Vidushi Mehta, Utkarsh_Mishra, jenlampton, hosef, anavarre, adriancid, xjm, alexpott, mgerbault, tracipotocnik, BSpeel, yoroy, lauriii: display: block for details/summary hides drop arrows in Firefox (normalize.css update)
2018-04-18 05:46:07 +00:00
|
|
|
/**
|
|
|
|
* @file
|
Issue #2821525 by bnjmnm, chrisrockwell, tedbow, alexpott, droplet, lauriii, DyanneNova, effulgentsia, xjm, joelpittet, Cottser, andrewmacpherson: Update normalize.css to the most recent version
2020-03-10 23:07:18 +00:00
|
|
|
* Fixes for core/assets/vendor/normalize-css/normalize.css since version 8.0.1.
|
Issue #2886904 by jhodgdon, andrewmacpherson, volkerk, Eric Heydrich, Vidushi Mehta, Utkarsh_Mishra, jenlampton, hosef, anavarre, adriancid, xjm, alexpott, mgerbault, tracipotocnik, BSpeel, yoroy, lauriii: display: block for details/summary hides drop arrows in Firefox (normalize.css update)
2018-04-18 05:46:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
Issue #2821525 by bnjmnm, chrisrockwell, tedbow, alexpott, droplet, lauriii, DyanneNova, effulgentsia, xjm, joelpittet, Cottser, andrewmacpherson: Update normalize.css to the most recent version
2020-03-10 23:07:18 +00:00
|
|
|
* Add SVG styling for IE that was mistakenly removed from normalize.css in
|
|
|
|
* 8.0.0.
|
Issue #2886904 by jhodgdon, andrewmacpherson, volkerk, Eric Heydrich, Vidushi Mehta, Utkarsh_Mishra, jenlampton, hosef, anavarre, adriancid, xjm, alexpott, mgerbault, tracipotocnik, BSpeel, yoroy, lauriii: display: block for details/summary hides drop arrows in Firefox (normalize.css update)
2018-04-18 05:46:07 +00:00
|
|
|
*/
|
Issue #2821525 by bnjmnm, chrisrockwell, tedbow, alexpott, droplet, lauriii, DyanneNova, effulgentsia, xjm, joelpittet, Cottser, andrewmacpherson: Update normalize.css to the most recent version
2020-03-10 23:07:18 +00:00
|
|
|
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) {
|
Issue #2886904 by jhodgdon, andrewmacpherson, volkerk, Eric Heydrich, Vidushi Mehta, Utkarsh_Mishra, jenlampton, hosef, anavarre, adriancid, xjm, alexpott, mgerbault, tracipotocnik, BSpeel, yoroy, lauriii: display: block for details/summary hides drop arrows in Firefox (normalize.css update)
2018-04-18 05:46:07 +00:00
|
|
|
summary {
|
Issue #2821525 by bnjmnm, chrisrockwell, tedbow, alexpott, droplet, lauriii, DyanneNova, effulgentsia, xjm, joelpittet, Cottser, andrewmacpherson: Update normalize.css to the most recent version
2020-03-10 23:07:18 +00:00
|
|
|
display: block;
|
Issue #2886904 by jhodgdon, andrewmacpherson, volkerk, Eric Heydrich, Vidushi Mehta, Utkarsh_Mishra, jenlampton, hosef, anavarre, adriancid, xjm, alexpott, mgerbault, tracipotocnik, BSpeel, yoroy, lauriii: display: block for details/summary hides drop arrows in Firefox (normalize.css update)
2018-04-18 05:46:07 +00:00
|
|
|
}
|
|
|
|
}
|