mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-12-04 02:39:02 +00:00
2fc809dc17
Replaces hardcoded color hex values with their equivalent values from Codex, via the "mediawiki.skin.variables" system. Bug: T366197 Change-Id: Ia929a1a8d6351222acb454c8ec750e920ae6d072
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
/*!
|
|
* VisualEditor MediaWiki UserInterface MWAceEditorWidget styles.
|
|
*
|
|
* @copyright See AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/* stylelint-disable selector-class-pattern */
|
|
@import 'mediawiki.skin.variables.less';
|
|
|
|
.ve-ui-mwAceEditorWidget {
|
|
.ace_editor {
|
|
border: @border-subtle;
|
|
margin: 1px;
|
|
/* Support: Blink, Gecko, Webkit */
|
|
/* Specify a valid second value to fix size, see T176636 */
|
|
font-family: monospace, monospace;
|
|
font-size: inherit;
|
|
line-height: 1.5;
|
|
/* Allow tooptip outside of editor */
|
|
overflow: visible;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.ace_focus {
|
|
/* TODO: Move to mediawiki theme only */
|
|
border-color: @border-color-progressive--focus;
|
|
/* HACK: Make border grow out as inset doesn't overlap absolute positioned children */
|
|
border-width: 2px;
|
|
margin: 0;
|
|
}
|
|
|
|
&.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid .ace_editor {
|
|
border-color: @border-color-error;
|
|
}
|
|
}
|