mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-28 17:30:40 +00:00
12 lines
324 B
CSS
12 lines
324 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-mwMathNode .mwe-math-mathml-a11y {
|
||
|
display: none !important;
|
||
|
}
|
||
|
}
|
||
|
|