mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-24 16:26:39 +00:00
Merge "Hide MediaWiki's "Editing help" link, as we provide it in the toolbar"
This commit is contained in:
commit
61bed82f7f
|
@ -2,19 +2,16 @@
|
||||||
* CSS for WikiEditor
|
* CSS for WikiEditor
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* This ID (#editform) could change in MediaWiki */
|
|
||||||
form#editform {
|
form#editform {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* These IDs (#wpSummaryLabel and #wpSummary) could change in MediaWiki */
|
|
||||||
#wpSummary,
|
#wpSummary,
|
||||||
#wpSummaryLabel {
|
#wpSummaryLabel {
|
||||||
margin-bottom: 1em;
|
margin-bottom: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* This ID (#wpTextbox1) could change in MediaWiki */
|
|
||||||
.wikiEditor-ui textarea#wpTextbox1 {
|
.wikiEditor-ui textarea#wpTextbox1 {
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -26,3 +23,9 @@ form#editform {
|
||||||
.wikiEditor-ui .wikiEditor-ui-text > textarea#wpTextbox1 {
|
.wikiEditor-ui .wikiEditor-ui-text > textarea#wpTextbox1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Hide vanilla MediaWiki's "Editing help" link, as we provide it in the toolbar */
|
||||||
|
.editButtons .editHelp,
|
||||||
|
.editButtons .mw-editButtons-pipe-separator {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue