mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-13 18:36:57 +00:00
7eed707a48
Change-Id: Ife5e782bd5513e0496e384655b9b203de5c841a5
37 lines
885 B
Plaintext
37 lines
885 B
Plaintext
/**
|
|
* CSS for WikiEditor
|
|
*/
|
|
|
|
/* stylelint-disable selector-no-id */
|
|
|
|
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;
|
|
}
|
|
|
|
/* This disables margin collapse for the children */
|
|
.client-js #editform:before,
|
|
.client-js #editform:after {
|
|
content: ' ';
|
|
display: table;
|
|
}
|
|
/* Set a margin on the textarea while we load, matching the height,
|
|
* of the wikieditor toolbar to prevent reflow. After the wikieditor ui is loaded,
|
|
* the textarea is wrapped inside wikieditor-ui div and no longer matches */
|
|
.client-js .wikiEditor-oldToolbar + #wpTextbox1 {
|
|
/* Toolbar height + padding + bottom border = 26 + 2*3 + 1 */
|
|
margin-top: 33px;
|
|
}
|