mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 10:59:56 +00:00
ecab9df8bb
Aligning instances of `progressive` color to WCAG 2.0 level AA compliant color palette similar to changes in I6fdb90af8b9dc5e5e026eb0c1bd13138c73da4cd Change-Id: I2eda190f0a68de6dc8aa33724f2c8975327a061f
27 lines
692 B
CSS
27 lines
692 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWAceEditorWidget styles.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwAceEditorWidget .ace_editor {
|
|
border: 1px solid #ccc;
|
|
margin: 1px;
|
|
font-family: monospace, 'Courier';
|
|
font-size: inherit;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.ve-ui-mwAceEditorWidget .ace_focus {
|
|
/* TODO: Move to mediawiki theme only */
|
|
border-color: #36c;
|
|
/* HACK: Make border grow out as inset doesn't overlap absolute positioned children */
|
|
border-width: 2px;
|
|
margin: 0;
|
|
}
|
|
|
|
.ve-ui-mwAceEditorWidget.oo-ui-widget-enabled.oo-ui-flaggedElement-invalid .ace_editor {
|
|
border-color: #f00;
|
|
}
|