mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-01 10:46:36 +00:00
9a07f022f9
Fix remaining sniffer warnings and errors Change-Id: I2a2ab037793df771be2abc4a4433726469f60ab0
11 lines
323 B
CSS
11 lines
323 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;
|
|
}
|
|
}
|