mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 23:05:35 +00:00
15 lines
326 B
CSS
15 lines
326 B
CSS
|
/* 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;
|
||
|
}
|