mediawiki-extensions-Visual.../modules/ve-mw/init/styles/ve.init.mw.DesktopArticleTarget.css
Volker E 6fff13b898 Fix z-index issue on floating toolbar dialog
Fixing `z-index` issue of floating toolbar dialog not overlapping when
Special Character dialog is active.

Bug: T140237
Change-Id: I24e9ed5b1f65c6ea4cffbd408953623540542bca
2016-07-13 16:16:08 +02:00

49 lines
1.2 KiB
CSS

/*!
* VisualEditor MediaWiki Initialization DesktopArticleTarget styles.
*
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/* Toolbar */
.ve-activating .ve-init-mw-desktopArticleTarget-toolbar,
.ve-deactivating .ve-init-mw-desktopArticleTarget-toolbar {
overflow: hidden;
transition: height 0.4s ease; /* stylelint-disable-line no-unsupported-browser-features */
}
.ve-ui-toolbar-floating .oo-ui-toolbar-bar {
transform: translateY( -100% );
transition: transform 0.4s ease; /* stylelint-disable-line no-unsupported-browser-features */
z-index: 4;
}
.ve-active .ve-ui-toolbar-floating .oo-ui-toolbar-bar {
transform: translateY( 0 );
}
/*!
* ve-redirect-header is added just outside of the surface, which has its own
* hiding style during activation.
*/
.ve-activating .ve-redirect-header {
height: 0;
overflow: hidden;
}
.ve-init-mw-desktopArticleTarget .ve-redirect-header {
cursor: pointer;
}
.ve-init-mw-desktopArticleTarget .redirectMsg a:hover {
text-decoration: none;
}
/*!
* Increase z-index of surface container so it appears above the debug bar
*/
.ve-init-mw-desktopArticleTarget #bodyContent { /* stylelint-disable-line selector-no-id */
z-index: 1;
}