mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
d2c15e9eb5
* Use local edit source tool, and emit event to MF * Bring in toolbar styles, bonus: remove old desktop style hacks Bug: T96186 Change-Id: I89351e409aa4e9d626edd7151ae05bdcd58f1cee
24 lines
586 B
CSS
24 lines
586 B
CSS
/*!
|
|
* VisualEditor MediaWiki Initialization DesktopArticleTarget styles.
|
|
*
|
|
* @copyright 2011-2015 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/* Toolbar */
|
|
|
|
.ve-activating .ve-init-mw-desktopArticleTarget-toolbar,
|
|
.ve-deactivating .ve-init-mw-desktopArticleTarget-toolbar {
|
|
overflow: hidden;
|
|
transition: height 0.4s ease;
|
|
}
|
|
|
|
.ve-ui-toolbar-floating .oo-ui-toolbar-bar {
|
|
transform: translateY(-100%);
|
|
transition: transform 0.4s ease;
|
|
}
|
|
|
|
.ve-active .ve-ui-toolbar-floating .oo-ui-toolbar-bar {
|
|
transform: translateY(0);
|
|
}
|