mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
8d33a3de0d
* 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
83 lines
1.5 KiB
CSS
83 lines
1.5 KiB
CSS
/*!
|
|
* VisualEditor UserInterface Context styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-context {
|
|
position: absolute;
|
|
z-index: 2;
|
|
visibility: hidden;
|
|
}
|
|
|
|
.ve-ui-context-callout {
|
|
position: absolute;
|
|
/* @embed */
|
|
background-image: url(images/callout.svg);
|
|
background-repeat: no-repeat;
|
|
width: 15px;
|
|
height: 8px;
|
|
cursor: pointer;
|
|
right: -7px;
|
|
z-index: 4;
|
|
}
|
|
|
|
.ve-ui-context-inner {
|
|
margin-top: 7px;
|
|
position: absolute;
|
|
overflow: hidden;
|
|
border: solid 1px #ccc;
|
|
border-radius: 0.25em;
|
|
background-color: #fff;
|
|
box-shadow: 0 0.15em 0.5em 0 rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
.ve-ui-context-inspectors, .ve-ui-context-menu {
|
|
position: absolute;
|
|
z-index: 2;
|
|
}
|
|
|
|
.ve-ui-context-toolbar {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ve-ui-context-toolbar .ve-ui-toolbarGroup {
|
|
border: none;
|
|
}
|
|
|
|
.ve-ui-context-toolbar .ve-ui-buttonTool {
|
|
padding: 0.25em;
|
|
height: 1.25em;
|
|
width: 1.25em;
|
|
margin: 0.05em;
|
|
border: none;
|
|
}
|
|
|
|
.ve-ui-context-toolbar .ve-ui-buttonTool:before {
|
|
content: " ";
|
|
position: absolute;
|
|
display: block;
|
|
height: 1.25em;
|
|
width: 1.25em;
|
|
background-position: center center;
|
|
background-repeat: no-repeat;
|
|
border: none;
|
|
}
|
|
|
|
.ve-ui-context-toolbar .ve-ui-buttonTool:hover {
|
|
border: none;
|
|
}
|
|
|
|
.ve-ui-context-toolbar .ve-ui-buttonTool:active,
|
|
.ve-ui-context-toolbar .ve-ui-buttonTool-active {
|
|
background-image: none;
|
|
}
|
|
|
|
.ve-ui-context-frame-overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
margin-top: 4px;
|
|
}
|