/*! * VisualEditor ContentEditable Surface styles. * * @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ .ve-ce-surface { overflow: hidden; font-size: 1em; /* to look more like MediaWiki use: 0.8em */; } .ve-ce-surface-textarea { position: absolute; z-index: -1; filter: alpha(opacity=0); opacity: 0; color: white; background-color: #fff; border: none; padding: 0; margin: 0; width: 1px; } .ve-ce-surface-textarea:focus { outline: none; } .ve-ce-surface-cursor { position: absolute; background-color: #000; width: 1px; display: none; } /* @noflip */ .ve-ce-surface-phantoms { position: absolute; top: 0; left: 0; opacity: 0.75; } .ve-ce-surface-paste { display: none; height: 1px; left: 0; filter: alpha(opacity=0); opacity: 0; overflow: hidden; position: fixed; top: 0; width: 1px; } .ve-ce-surface-paste * { height: 1px !important; width: 1px !important; }