Make main code input area monospaced

A monospaced font is more suitable for writing LaTeX.

Change-Id: I1a6c7bbbe3618f43808be15eab1579de8b2ad59f
This commit is contained in:
Ed Sanders 2015-01-16 12:07:14 +00:00
parent 056e85afe6
commit 4ae01c7f5a
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;
}