mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-14 11:19:08 +00:00
3f692d9e15
* This patch convert .css to .less * Semantic changes are avoided, but there are minor tweaks such as capitalization and ordering. Change-Id: Iebff0f8e3d87bb792093a10d87f33540aca301d5
21 lines
337 B
Plaintext
21 lines
337 B
Plaintext
/**
|
|
* CSS for WikiEditor
|
|
*/
|
|
|
|
form#editform {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#wpTextbox1 {
|
|
line-height: 1.5em;
|
|
resize: vertical;
|
|
}
|
|
|
|
/* Hide the old toolbar until the wikiEditor toolbar is deemed not supported,
|
|
* hide the WikiEditor toolbar until it's css has loaded */
|
|
.wikiEditor-oldToolbar,
|
|
.wikiEditor-ui-toolbar {
|
|
display: none;
|
|
}
|