mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-15 18:39:52 +00:00
5c0c117537
Moved the spinner code from ViewPageTarget to ViewPageTarget.init to make it appear immediately on clicking edit. Bonus: also fixes the URL to add the parameter vesection when clicking a section edit link. Bug: 65453 Change-Id: Ica33de675203cc0f0594b8362731c4e98a644313
49 lines
944 B
CSS
49 lines
944 B
CSS
/*!
|
|
* VisualEditor MediaWiki ViewPageTarget init styles.
|
|
*
|
|
* @copyright 2011-2014 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
/*csslint known-properties:false */
|
|
/* Bug: https://github.com/stubbornella/csslint/issues/436 */
|
|
|
|
/* Visual Editor */
|
|
|
|
.mw-viewPageTarget-loading {
|
|
width: 128px;
|
|
height: 15px;
|
|
float: right;
|
|
}
|
|
|
|
/* Section edit links */
|
|
|
|
.mw-editsection {
|
|
white-space: nowrap;
|
|
/* bidi isolation: */
|
|
unicode-bidi: -moz-isolate;
|
|
unicode-bidi: -webkit-isolate;
|
|
unicode-bidi: isolate;
|
|
}
|
|
|
|
.mw-editsection-divider {
|
|
color: #555;
|
|
}
|
|
|
|
.ve-tabmessage-appendix {
|
|
font-size: 0.7em;
|
|
vertical-align: top;
|
|
line-height: 1.43em;
|
|
padding-left: 0.5em;
|
|
/* Use !important to override div.vectorTabs span */
|
|
background-image: none !important;
|
|
display: inline !important;
|
|
}
|
|
|
|
/* Images */
|
|
|
|
.mw-viewPageTarget-loading {
|
|
/* @embed */
|
|
background-image: url(images/loading-ltr.gif);
|
|
}
|