mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-17 19:31:51 +00:00
99d3320573
For now just use the rules file in lib/ve, but eventually this will be a preset. Change-Id: I7fd79d3e1dce37aef066d416cd969e5fff1e962f Depends-On: I17e0d23ddfedf64985495ab35d113ea08c03b1df
29 lines
556 B
CSS
29 lines
556 B
CSS
/*!
|
|
* VisualEditor MediaWiki UserInterface MWTocWidget styles.
|
|
*
|
|
* @copyright 2011-2016 VisualEditor Team and others; see AUTHORS.txt
|
|
* @license The MIT License (MIT); see LICENSE.txt
|
|
*/
|
|
|
|
.ve-ui-mwTocWidget {
|
|
/* Margin to mock the standard appearance of TOC */
|
|
margin: 1em 0 0 0;
|
|
}
|
|
.ve-ui-mwTocWidget .toctoggle {
|
|
margin: 0.25em;
|
|
}
|
|
.ve-ui-mwTocWidget .toctoggle::before {
|
|
content: ' [';
|
|
}
|
|
.ve-ui-mwTocWidget .toctoggle::after {
|
|
content: '] ';
|
|
}
|
|
|
|
.ve-ui-mwTocWidget .tocnumber::after {
|
|
content: ' ';
|
|
}
|
|
|
|
.ve-ui-mwTocWidget a {
|
|
cursor: pointer;
|
|
}
|