blob: 7e74456fb69208eef7ccf913e27ad2a8a08f3e20 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
.dijitEditorIconsFindReplace {
background-image: url('../icons/editorIconsFindReplaceEnabled.png');
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.dijitDisabled .dijitEditorIconsFindReplace {
background-image: url('../icons/editorIconsFindReplaceDisabled.png');
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.dijitEditorIconFindString { background-position: 0px; }
.dijitEditorIconFind { background-position: -18px; }
.dijitEditorIconReplace { background-position: -36px; }
.dijitEditorIconReplaceAll { background-position: -54px; }
.dijitEditorFindReplaceCheckBox {
padding-left: 10px;
padding-right: 10px;
text-align: center;
}
.dijitEditorFindReplaceTextBox {
padding-top: 3px;
padding-bottom: 3px;
padding-right: 5px;
}
.dijitEditorFindReplaceTextBox .focusTextBox {
width: 13em;
}
.tundra .dijitEditorIconsFindReplaceClose {
background-image: url('../icons/tundra/close.gif');
background-repeat: no-repeat;
width: 18px;
height: 18px;
background-position: center;
}
.soria .dijitEditorIconsFindReplaceClose {
background-image: url('../icons/soria/close.gif');
background-repeat: no-repeat;
width: 18px;
height: 18px;
background-position: center;
}
.nihilo .dijitEditorIconsFindReplaceClose {
background-image: url('../icons/nihilo/close.gif');
background-repeat: no-repeat;
width: 18px;
height: 18px;
background-position: center;
}
.claro .dijitEditorIconsFindReplaceClose {
background-image: url('../icons/claro/close.gif');
background-repeat: no-repeat;
width: 18px;
height: 18px;
background-position: center;
}
|