Merge "MWAceEditorWidget: Fix position of ace tooltip"

This commit is contained in:
jenkins-bot 2017-03-15 19:23:38 +00:00 committed by Gerrit Code Review
commit 2a9562aca5

View file

@ -12,6 +12,17 @@
font-family: monospace, 'Courier';
font-size: inherit;
line-height: 1.5;
/* Allow tooptip outside of editor */
overflow: visible;
}
.ve-ui-mwAceEditorWidget .ace_tooltip {
/* Make tooltip into status bar, as position is broken in Ace */
top: auto !important; /* stylelint-disable-line declaration-no-important */
bottom: -23px !important; /* stylelint-disable-line declaration-no-important */
left: 0 !important; /* stylelint-disable-line declaration-no-important */
white-space: pre-wrap;
position: absolute;
}
.ve-ui-mwAceEditorWidget .ace_focus {