mediawiki-extensions-Visual.../modules/ve/ui/styles/ve.ui.Inspector.css
Trevor Parscal 8d33a3de0d Major Documentation Cleanup
* Made method descriptions imperative: "Do this" rather than "Does this"
* Changed use of "this object" to "the object" in method documentation
* Added missing documentation
* Fixed incorrect documentation
* Fixed incorrect debug method names (as in those VeDmClassName tags we add to functions so they make sense when dumped into in the console)
* Normalized use of package names throughout
* Normalized class descriptions
* Removed incorrect @abstract tags
* Added missing @method tags
* Lots of other minor cleanup

Change-Id: I4ea66a2dd107613e2ea3a5f56ff54d675d72957e
2013-01-16 15:37:59 -08:00

99 lines
1.7 KiB
CSS

/*!
* VisualEditor UserInterface Inspector styles.
*
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
.ve-ui-inspector {
font-family: sans-serif;
position: absolute;
padding: 0.75em;
padding-top: 2.5em;
min-width: 15em;
z-index: 3;
}
.ve-ui-inspector-button {
position: absolute;
top: 0.5em;
width: 1.5em;
height: 1.5em;
background-position: center center;
background-repeat: no-repeat;
cursor: pointer;
filter: alpha(opacity=8);
opacity: 0.8;
}
.ve-ui-inspector-button:hover {
filter: alpha(opacity=100);
opacity: 1;
}
.ve-ui-inspector-closeButton {
left: 0.5em;
/* @see ve.ui.Icons */
}
.ve-ui-inspector-titleIcon {
position: absolute;
left: 2.25em;
top: 0.5em;
width: 2em;
height: 1.5em;
background-position: right center;
background-repeat: no-repeat;
border-left: solid 1px #eee;
filter: alpha(opacity=8);
opacity: 0.8;
}
.ve-ui-inspector-removeButton {
right: 0.25em;
/* @see ve.ui.Icons */
}
.ve-ui-inspector form {
margin: 0;
padding: 0;
white-space: nowrap;
font-size: 0.8em;
}
.ve-ui-inspector form input {
display: inline-block;
width: 20em;
font-size: 1em;
font-family: sans-serif;
background-color: #fff;
border: solid 1px #ccc;
padding: 0.5em;
border-radius: 0.25em;
}
.ve-ui-inspector form input:focus {
outline: none;
}
.ve-ui-inspector form input.ve-ui-linkInspector-location {
/* @see ve.ui.Icons */
background-position: 18.75em center;
background-repeat: no-repeat;
padding-right: 1.5em;
}
.ve-ui-inspector-title {
position: absolute;
top: 0;
left: 5.125em;
height: 2.8em;
line-height: 2.8em;
color: #333;
font-size: 0.9em;
}
.ve-iframe-overlay {
position: absolute;
top: 0;
}