mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-05 22:22:54 +00:00
46 lines
1.2 KiB
CSS
46 lines
1.2 KiB
CSS
|
/*!
|
||
|
* VisualEditor MediaWiki ViewPageTarget init styles.
|
||
|
*
|
||
|
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
|
||
|
* @license The MIT License (MIT); see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
/* Section edit links */
|
||
|
|
||
|
.mw-editsection {
|
||
|
white-space: nowrap;
|
||
|
padding-right: 0.25em;
|
||
|
/* bidi isolation: */
|
||
|
unicode-bidi: -moz-isolate;
|
||
|
unicode-bidi: -webkit-isolate;
|
||
|
unicode-bidi: isolate;
|
||
|
}
|
||
|
|
||
|
.mw-editsection-divider {
|
||
|
color: #ccc;
|
||
|
}
|
||
|
|
||
|
.mw-editsection-bracket {
|
||
|
-webkit-transition: color 100ms ease-out, margin 100ms ease-out;
|
||
|
-moz-transition: color 100ms ease-out, margin 100ms ease-out;
|
||
|
-ms-transition: color 100ms ease-out, margin 100ms ease-out;
|
||
|
-o-transition: color 100ms ease-out, margin 100ms ease-out;
|
||
|
transition: color 100ms ease-out, margin 100ms ease-out;
|
||
|
}
|
||
|
|
||
|
/* @noflip */
|
||
|
.mw-content-ltr .mw-editsection-expanded .mw-editsection-bracket:first-of-type,
|
||
|
.mw-content-rtl .mw-editsection-expanded .mw-editsection-bracket:not(:first-of-type) {
|
||
|
margin-left: -0.25em;
|
||
|
margin-right: 0.25em;
|
||
|
color: #ccc;
|
||
|
}
|
||
|
|
||
|
/* @noflip */
|
||
|
.mw-content-rtl .mw-editsection-expanded .mw-editsection-bracket:first-of-type,
|
||
|
.mw-content-ltr .mw-editsection-expanded .mw-editsection-bracket:not(:first-of-type) {
|
||
|
margin-right: -0.25em;
|
||
|
margin-left: 0.25em;
|
||
|
color: #ccc;
|
||
|
}
|