mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
83a00d41f8
modules/ve-math/ve.ce.MWLatexNode.css 6:59 ✖ Needless disable for "media-feature-name-no-vendor-prefix" --report-needless-disables Change-Id: Icb4738d7435cb7cc744a3d82b5e8130111f9b567
11 lines
381 B
CSS
11 lines
381 B
CSS
/**
|
|
* Hide math tag completely to avoid extra bounding boxes for Chrome, Safari, Android...
|
|
* Browser-specific hacks are bad but let's use that for now...
|
|
* See http://browserhacks.com
|
|
*/
|
|
@media screen and ( -webkit-min-device-pixel-ratio: 0 ) {
|
|
.ve-ce-mwLatexNode .mwe-math-mathml-a11y {
|
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
}
|
|
}
|