Merge "Hide text without confusing Chromium's cursoring"

This commit is contained in:
jenkins-bot 2016-08-08 22:58:03 +00:00 committed by Gerrit Code Review
commit e6fd4f87c9

View file

@ -14,3 +14,11 @@
.ve-init-target-ie .ve-ce-mwReferenceNode {
display: inline-block;
}
/* Use zero font size to hide the default rendering, rather than display:none, to
* work around T123608 (cursoring bug in Chromium). See that bug for a discussion
* of the effect this has on bidi text. */
.ve-ce-mwReferenceNode span.mw-reflink-text {
font-size: 0;
display: inline;
}