blob: 6b026a1ee444999c11a02c09b3662b7a04482412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/**
* CSS for WikiEditor Preview jQuery plugin
*/
.wikiEditor-preview-loading {
padding: 1em;
background-color: white;
}
.wikiEditor-preview-loading span {
color: #666666;
}
.wikiEditor-preview-spinner {
padding-right: 1em;
}
.wikiEditor-preview-contents {
padding: 1em;
background-color: white;
}
/* FIXME: This only works for the first wikiEditor on the page! */
#wikiEditor-0-preview-dialog .wikiEditor-ui-loading {
overflow: hidden;
border: none;
}
.ui-dialog .ui-dialog-buttonpane {
margin: 0 !important;
}
|