mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
461e518fca
Reference counting indicates these styles are not in use, so they can now be safely garbage collected. Change-Id: I432f73490eeb00ff414f150fcf26c718607bac95
49 lines
977 B
CSS
49 lines
977 B
CSS
/*!
|
|
* VisualEditor UserInterface Inspector styles.
|
|
*
|
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-inspector {
|
|
-webkit-transition: opacity 100ms;
|
|
-moz-transition: opacity 100ms;
|
|
-ms-transition: opacity 100ms;
|
|
-o-transition: opacity 100ms;
|
|
transition: opacity 100ms;
|
|
}
|
|
|
|
.ve-ui-inspector .ve-ui-frame {
|
|
width: 17.25em;
|
|
height: 3em;
|
|
}
|
|
|
|
.ve-ui-inspector-content .ve-ui-window-head {
|
|
height: 2em;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.ve-ui-inspector-content .ve-ui-window-icon {
|
|
padding-left: 0.5em;
|
|
margin-left: 0.25em;
|
|
border-left: solid 1px #eee;
|
|
}
|
|
|
|
.ve-ui-inspector-content .ve-ui-inspector-closeButton {
|
|
float: left;
|
|
}
|
|
|
|
.ve-ui-inspector-content .ve-ui-inspector-removeButton {
|
|
float: right;
|
|
}
|
|
|
|
.ve-ui-inspector-content .ve-ui-window-body form {
|
|
margin: 0.25em 0 0 0;
|
|
padding: 0;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ve-ui-inspector-content .ve-ui-window-body .ve-ui-textInputWidget {
|
|
width: 100%;
|
|
}
|