Merge "Make main code input area monospaced"

This commit is contained in:
jenkins-bot 2015-01-16 15:11:53 +00:00 committed by Gerrit Code Review
commit ff4297026c
2 changed files with 11 additions and 0 deletions

View File

@ -514,6 +514,7 @@ $wgResourceModules['ext.math.visualEditor'] = array(
),
'styles' => array(
'VisualEditor/ve.ui.MWMathIcons.css',
'VisualEditor/ve.ui.MWMathInspector.css',
),
'dependencies' => array(
'ext.visualEditor.mwcore',

View File

@ -0,0 +1,10 @@
/*!
* VisualEditor UserInterface MWMathInspector styles.
*
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
.ve-ui-mwMathInspector-content .ve-ui-mwExtensionInspector-input textarea {
font-family: monospace, Courier;
}