mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-06 06:29:11 +00:00
a7f471e6e7
Local overlay z-index is positioning overlay items (phantoms, etc) above the floated toolbar. The overlay container is a sibling to the toolbar's parent and is later in the DOM. z-indexing is unnecessary and has been removed. Bug: 50096 Change-Id: Ib46f66b1d1bea36d761f793e9966e09db6e675ca
26 lines
429 B
CSS
26 lines
429 B
CSS
/*!
|
|
* VisualEditor Surface styles.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-surface:after {
|
|
content: ".";
|
|
display: block;
|
|
clear: both;
|
|
visibility: hidden;
|
|
line-height: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.ve-ui-surface-overlay {
|
|
font-family: sans-serif;
|
|
line-height: 1.5em;
|
|
font-size: 1em;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
}
|