mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-11-28 02:00:34 +00:00
90592de211
WikiEditor should not responsible for the style of the summary. Change-Id: I8a6f3d3b6212a105fa3fa3326eb35c3e7e1e5c0b
21 lines
337 B
CSS
21 lines
337 B
CSS
/**
|
|
* 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;
|
|
}
|