mediawiki-extensions-Visual.../modules/ve/ui/styles/ve.ui.Inspector.css
Trevor Parscal 3f3c87ce24 Link inspector fixes
ve.ce.Node.css
* Added prefixes for use of box-sizing

ve.ui.MWLinkInspector.js
* Whitespace

ve.ui.Inspector.css
* Corrected input width, always 100% wide now by using box-sizing

ve.ui.DialogButtonTool.js, ve.ui.Context.js
* Updated use of getViewsForNode

ve.ui.ViewRegistry.js
* Added inheritance-based prioritization for matching views with annotations and nodes

Bug: 47413

Change-Id: I286a28002c1691e58bbd7de04ed08cceb8b3bb07
2013-04-24 18:29:55 -07:00

59 lines
1.1 KiB
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-window-head {
height: 2em;
padding: 0.5em;
}
.ve-ui-window-icon {
padding-left: 0.5em;
margin-left: 0.25em;
border-left: solid 1px #eee;
}
.ve-ui-inspector-closeButton {
float: left;
}
.ve-ui-inspector-removeButton {
float: right;
}
.ve-ui-window-body form {
margin: 0.25em 0 0 0;
padding: 0;
white-space: nowrap;
}
.ve-ui-window-body .ve-ui-textInputWidget input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 100%;
}
.ve-ui-window-body form input.ve-ui-linkInspector-location {
/* @see ve.ui.Icons */
background-position: 18.75em center;
background-repeat: no-repeat;
padding-right: 1.5em;
}