mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-04 12:09:04 +00:00
e2139b1657
Also update the rest of the CI world whilst we're at it. Change-Id: Iaad2867797cccb2dd0df7758e448b553859fa62c
11 lines
445 B
CSS
11 lines
445 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 ) { /* stylelint-disable-line media-feature-name-no-vendor-prefix */
|
|
.ve-ce-mwMathNode .mwe-math-mathml-a11y {
|
|
display: none !important; /* stylelint-disable-line declaration-no-important */
|
|
}
|
|
}
|