blob: 434b579ddad80b7be60ae5a25dc7d3b0b20588ed (
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
.dijitEditorSpellCheckIcon {
background-image: url(../icons/spellcheck.gif);
background-repeat: no-repeat;
background-position: center center;
width: 18px;
height: 18px;
}
.dijitEditorSpellCheckBusyIcon {
background-image: url(../images/checking.gif);
background-repeat: no-repeat;
background-position: center center;
display: inline-block;
zoom: 1;
*display: inline;
width: 16px;
height: 16px;
margin: 0em 0.5em 0em 0.5em;
}
.dijitEditorSpellCheckTable .dijitEditorSpellCheckBox {
width: 15em;
}
.dijitEditorSpellCheckTable .listHeight {
height: 5em;
}
.dijitEditorSpellCheckTable,
.dijitEditorSpellCheckTable td {
border: none;
border-width: 0px;
vertical-align: top;
}
.dijitEditorSpellCheckTable .alignBottom {
vertical-align: bottom;
}
.dijitEditorSpellCheckTable .blockButton,
.dijitEditorSpellCheckTable .dijitButtonNode {
display: block;
}
.dijitEditorSpellCheckTable .topMargin {
margin-top: 0.56em;
}
.dijitEditorSpellCheckTable .hidden {
display: none;
}
|