mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
d147504f49
* Made vector specific styles only active in the vector skin * Added apex specific styles * Removed override of text size for document node * Added stylesheet for stand-alone to specify text size for document node Change-Id: I8a57918912499f9453a5692ff45a04a16ed34cde
17 lines
350 B
CSS
17 lines
350 B
CSS
/**
|
|
* VisualEditor content editable Document styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ce-documentNode {
|
|
cursor: text;
|
|
overflow: hidden;
|
|
}
|
|
|
|
/* Prevent focus outline on editor */
|
|
.ve-ce-documentNode[contenteditable="true"]:focus {
|
|
outline: none;
|
|
}
|