mediawiki-extensions-Visual.../modules/ve/ui/styles/ve.ui.Inspector.css
Trevor Parscal 4192cbc4d5 Window refactor
Changes:

* Cleanup the window API to use more consistent and intuitive methods - we
  now use initialize/setup/teardown instead of
  initialize/onSetup/onOpen/onClose as methods which are overridden, and
  use open/close methods to control the window
* Change events around to have opening/open and closing/close events which
  act as before/after points during the opening/closing process
* Make WindowSet and Context respond to windows being opened, rather than
  opening them directly
* Fix a LinkInspector creation mode bug where the initial text doesn't get
  reset
* Move inspector, a VisualEditor concept, back to VE
* Cleanup naming of SurfaceDialog, SurfaceToolbar, etc. to use shorter
  names, they were given Surface* names when the generic ones were also in
  VE, but now the generic ones are in OO, so they can return to their
  original names

Change-Id: I82c4fed8bcb3fb5630938c8bc4dd9b2d5f1a8c1d
2013-11-08 12:33:25 -08:00

44 lines
853 B
CSS

/*!
* ObjectOriented UserInterface Inspector styles.
*
* @copyright 2011-2013 OOJS 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;
-o-transition: opacity 100ms;
transition: opacity 100ms;
}
.ve-ui-inspector .oo-ui-frame {
width: 17.25em;
height: 3em;
}
.ve-ui-inspector-content .oo-ui-window-head {
height: 2em;
padding: 0.5em;
}
.ve-ui-inspector-content .oo-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 .oo-ui-window-body form {
margin: 0.25em 0 0 0;
padding: 0;
white-space: nowrap;
}