mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
43 lines
723 B
CSS
43 lines
723 B
CSS
|
/*!
|
||
|
* VisualEditor UserInterface Window styles.
|
||
|
*
|
||
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
.ve-ui-window {
|
||
|
display: none;
|
||
|
}
|
||
|
|
||
|
.ve-ui-window-head {
|
||
|
height: 2em;
|
||
|
padding: 0.5em;
|
||
|
}
|
||
|
|
||
|
.ve-ui-window-body {
|
||
|
padding: 0 0.75em;
|
||
|
}
|
||
|
|
||
|
.ve-ui-window-icon {
|
||
|
float: left;
|
||
|
width: 2em;
|
||
|
height: 2em;
|
||
|
line-height: 2em;
|
||
|
margin-right: 0.5em;
|
||
|
background-position: right center;
|
||
|
background-repeat: no-repeat;
|
||
|
}
|
||
|
|
||
|
.ve-ui-window-title {
|
||
|
float: left;
|
||
|
line-height: 2em;
|
||
|
color: #333;
|
||
|
white-space: nowrap;
|
||
|
cursor: default;
|
||
|
-webkit-touch-callout: none;
|
||
|
-webkit-user-select: none;
|
||
|
-moz-user-select: none;
|
||
|
-ms-user-select: none;
|
||
|
user-select: none;
|
||
|
}
|