mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
10691ec44a
In my tests this issue was only visible with the Minerva skin. Bug: T310762 Change-Id: Idf1a5d11fb9ea5d874574f8176c1bd4a66e63892
40 lines
1 KiB
CSS
40 lines
1 KiB
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface floating help element styles.
|
|
*
|
|
* @copyright 2011-2021 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwFloatingHelpElement {
|
|
position: fixed;
|
|
z-index: 2;
|
|
}
|
|
|
|
.ve-ui-mwFloatingHelpElement .oo-ui-windowManager-floating .oo-ui-dialog {
|
|
position: relative;
|
|
margin-bottom: 16px;
|
|
padding: 0;
|
|
}
|
|
|
|
.ve-ui-mwFloatingHelpElement .oo-ui-windowManager-floating .oo-ui-dialog .oo-ui-window-frame {
|
|
position: relative;
|
|
top: 0;
|
|
}
|
|
|
|
.ve-ui-mwFloatingHelpElement-windowManager .oo-ui-dialog .oo-ui-panelLayout {
|
|
padding: 16px;
|
|
}
|
|
|
|
.ve-ui-mwFloatingHelpElement .ve-ui-mwFloatingHelpElement-toggle {
|
|
float: right;
|
|
}
|
|
|
|
.ve-ui-mwFloatingHelpElement .ve-ui-mwFloatingHelpElement-toggle > .oo-ui-buttonElement-button {
|
|
/* Same as in https://phabricator.wikimedia.org/diffusion/EGRE/browse/master/modules/ui-components/HelpPanelButton.less */
|
|
box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.5 );
|
|
border-radius: 50%;
|
|
width: 44px;
|
|
height: 44px;
|
|
padding: 0;
|
|
}
|