| Current File : /home/jvzmxxx/wiki1/extensions/VisualEditor/lib/ve/src/ce/styles/nodes/ve.ce.ContentBranchNode.css |
/*!
* VisualEditor ContentEditable ContentBranchNode styles.
*
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
*/
/*
* So that we don't need to use when rendering text with multiple consecutive spaces, and
* that the browser doesn't insert when typing regular spaces, and that we can let the user
* input actual non-breaking spaces in the text without having to guess if they're really needed.
*/
.ve-ce-contentBranchNode {
white-space: pre-wrap;
}
/* Hack for empty headings and paragraphs; can't use min-height because of IE */
.ve-ce-contentBranchNode:empty:before {
content: url( data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 );
}
/*
* Undo this hack on focusable nodes
*/
.ve-ce-focusableNode {
white-space: normal;
}