mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-25 14:56:20 +00:00
ceb8ac9918
* Added more support for making dynamic skin changes in vector (based on media queries) get applied to the toolbar while it's floating ** Added animation for toolbar wrapper margins ** Added resize handler to update left and right positions on the toolbar when it's floated * Changed from using generic "float" and "bottom" class names which are likely going to get re-used elsewhere and cause issues Change-Id: Ic596b2b8aceb8a2d81539e197ef4d6e17326a87a
29 lines
566 B
CSS
29 lines
566 B
CSS
/**
|
|
* VisualEditor initialization ViewPageTarget Vector skin styles.
|
|
*
|
|
* @copyright 2011-2012 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-surface {
|
|
margin-top: 0.8em;
|
|
}
|
|
|
|
.ve-ce-documentNode {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.es-toolbar-wrapper {
|
|
margin: -1em -1em 1em -1em;
|
|
-webkit-transition: margin 200ms ease-out;
|
|
-moz-transition: margin 200ms ease-out;
|
|
-o-transition: margin 200ms ease-out;
|
|
transition: margin 200ms ease-out;
|
|
position: relative;
|
|
}
|
|
|
|
.es-toolbar {
|
|
display: none;
|
|
margin-left: 1px;
|
|
}
|