mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 06:46:26 +00:00
d2dfb9ac4f
* Move and rename generic parts of ve.ui to OO.ui * We now have a UI test suite because ve.Element (outside ve.ui) is now part of oojs-ui, so it needs a test suite. * Added to the MW test run (just like we do for unicodejs). * Updated csslint config (also added ve-mw and syntaxhighlight which were missing). oojs-ui still depends on the TriggerRegistry in VE, this is addressed in a follow-up commit. Change-Id: Iec147155c1ddf20b73a4d15d87b8742207032312
50 lines
817 B
CSS
50 lines
817 B
CSS
/*!
|
|
* ObjectOriented UserInterface Window styles.
|
|
*
|
|
* @copyright 2011-2013 OOJS Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.oo-ui-window {
|
|
display: none;
|
|
}
|
|
|
|
.oo-ui-window-head {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
|
|
.oo-ui-window-body {
|
|
padding: 0 0.75em;
|
|
}
|
|
|
|
.oo-ui-window-icon {
|
|
float: left;
|
|
width: 2em;
|
|
height: 2em;
|
|
line-height: 2em;
|
|
margin-right: 0.5em;
|
|
background-position: right center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.oo-ui-window-title {
|
|
float: left;
|
|
line-height: 2em;
|
|
color: #333;
|
|
white-space: nowrap;
|
|
cursor: default;
|
|
}
|
|
|
|
.oo-ui-window-overlay {
|
|
font-family: sans-serif;
|
|
line-height: 1.5em;
|
|
font-size: 1em;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|