2014-07-04 00:38:18 +00:00
|
|
|
/* Force hasLayout so the <sup>'s box gets measured correctly */
|
|
|
|
.ve-ce-mwReferenceNode {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Undo overflow: hidden; from MW CSS to work around hasLayout issue */
|
|
|
|
.ve-ce-surface h1,
|
|
|
|
.ve-ce-surface h2,
|
|
|
|
.ve-ce-surface h3,
|
|
|
|
.ve-ce-surface h4,
|
|
|
|
.ve-ce-surface h5,
|
|
|
|
.ve-ce-surface h6 {
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
|
2014-08-22 20:34:45 +00:00
|
|
|
/* Set opacity directly on the highlights, rather than their containers,
|
|
|
|
otherwise the opacity isn't applied at all */
|
2014-07-04 00:38:18 +00:00
|
|
|
.ve-ce-surface-highlights-focused .ve-ce-focusableNode-highlight {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
.ve-ce-surface-highlights-blurred .ve-ce-focusableNode-highlight {
|
|
|
|
opacity: 0.15;
|
2014-08-22 20:34:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't apply a background color to language annotations, otherwise the
|
|
|
|
text disappears if the span has dir="rtl" */
|
|
|
|
.ve-ce-LanguageAnnotation {
|
|
|
|
background: none;
|
|
|
|
}
|