1/**
2 * These styles are the absolute minimum to make the spellchecker work.
3 */
4
5div.dokuwiki div#spell__suggest {
6  position: absolute;
7  left: 0;
8  top: 0;
9  display: none;
10  z-index: 2;
11}
12
13div.dokuwiki div#spell__result {
14  display:none;
15  font-family:monospace;
16  overflow: auto;
17  z-index: 1;
18}
19
20
21/**
22 * Additional styles matching the default template
23 */
24
25div.dokuwiki div#spell__suggest {
26  background-color: __background__;
27  padding: 2px;
28  border: 1px solid __text__;
29  font-size: 80%;
30  display: none;
31}
32
33div.dokuwiki div#spell__result {
34  border: 1px solid __border__;
35  color: __text__;
36  font-size: 14px;
37  padding: 3px;
38  background-color: __background_other__;
39  display: none;
40}
41
42div.dokuwiki div#spell__result a.spell_error {
43  color: #f00;
44  text-decoration: underline;
45}
46
47div.dokuwiki div#spell__result span.spell_noerr {
48  color: #093;
49}
50
51div.dokuwiki div#spell__result span.spell_wait {
52  color: #06c;
53}
54
55