mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/WikiEditor
synced 2024-12-12 00:27:02 +00:00
34 lines
606 B
Plaintext
34 lines
606 B
Plaintext
/**
|
|
* CSS for WikiEditor Preview jQuery plugin
|
|
*/
|
|
|
|
.wikiEditor-preview-loading {
|
|
padding: 1em;
|
|
background-color: #fff;
|
|
|
|
span {
|
|
color: #54595d;
|
|
}
|
|
}
|
|
|
|
.wikiEditor-preview-spinner {
|
|
padding-right: 1em;
|
|
}
|
|
|
|
.wikiEditor-preview-contents {
|
|
padding: 1em;
|
|
background-color: #fff;
|
|
}
|
|
|
|
/* FIXME: This only works for the first wikiEditor on the page! */
|
|
/* stylelint-disable-next-line selector-max-id */
|
|
#wikiEditor-0-preview-dialog .wikiEditor-ui-loading {
|
|
overflow: hidden;
|
|
border: 0;
|
|
}
|
|
|
|
.ui-dialog .ui-dialog-buttonpane {
|
|
// stylelint-disable-next-line declaration-no-important
|
|
margin: 0 !important;
|
|
}
|