2012-07-19 00:11:26 +00:00
|
|
|
/**
|
|
|
|
* VisualEditor content editable Document styles.
|
2012-07-19 21:25:16 +00:00
|
|
|
*
|
2012-07-19 00:11:26 +00:00
|
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
|
|
*/
|
|
|
|
|
2012-04-04 18:53:23 +00:00
|
|
|
.ve-ce-documentNode {
|
2012-02-07 19:13:19 +00:00
|
|
|
cursor: text;
|
|
|
|
overflow: hidden;
|
2012-06-20 01:20:28 +00:00
|
|
|
font-size: 0.8em;
|
2012-02-07 19:13:19 +00:00
|
|
|
}
|
|
|
|
|
2012-04-04 18:53:23 +00:00
|
|
|
/* Prevent focus outline on editor */
|
2012-06-20 01:20:28 +00:00
|
|
|
.ve-ce-documentNode[contenteditable="true"]:focus {
|
2012-04-04 18:53:23 +00:00
|
|
|
outline: none;
|
2012-02-07 19:13:19 +00:00
|
|
|
}
|