2014-04-08 20:36:38 +00:00
|
|
|
/**
|
|
|
|
* CSS for WikiEditor
|
|
|
|
*/
|
|
|
|
|
2017-05-03 17:28:03 +00:00
|
|
|
/* Hide vanilla MediaWiki's "Editing help" link, as we provide it in the toolbar */
|
|
|
|
.client-js .editButtons {
|
2018-01-10 22:27:59 +00:00
|
|
|
.editHelp {
|
2017-05-03 17:28:03 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-31 17:35:21 +00:00
|
|
|
/* stylelint-disable selector-max-id */
|
2016-11-20 17:13:39 +00:00
|
|
|
|
2014-04-08 20:36:38 +00:00
|
|
|
form#editform {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpTextbox1 {
|
|
|
|
line-height: 1.5em;
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
|
2017-12-29 14:09:21 +00:00
|
|
|
/* Hide the WikiEditor toolbar until its css has loaded */
|
2014-04-08 20:36:38 +00:00
|
|
|
.wikiEditor-ui-toolbar {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-05-22 15:21:22 +00:00
|
|
|
|
|
|
|
/* This disables margin collapse for the children */
|
2023-03-29 23:14:34 +00:00
|
|
|
.client-js #editform::before,
|
|
|
|
.client-js #editform::after {
|
2016-05-22 15:21:22 +00:00
|
|
|
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 */
|
2017-12-29 14:09:21 +00:00
|
|
|
.client-js .mw-editform > #wpTextbox1 {
|
2016-05-22 15:21:22 +00:00
|
|
|
/* Toolbar height + padding + bottom border = 26 + 2*3 + 1 */
|
|
|
|
margin-top: 33px;
|
|
|
|
}
|