blob: db2c08a99f6a3d8524261b2d90cb264dd6fe64aa (
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
/* Editor Table Dialog */
.EditorTableDialog{
}
.EditorTableDialog .etdTable{
border:none;
table-layout:fixed;
border-collapse:collapse;
}
.EditorTableDialog .etdTable td{
border:#CCCCCC 0px solid;
padding:5px;
}
.EditorTableDialog .etdTable td.inner{
padding:0px;
}
.EditorTableDialog .dijitTextBox{
width:50px;
padding-left:3px;
}
.EditorTableDialog .dijitComboBox{
width:85px;
padding-left:5px;
}
.EditorTableDialog label{
float:right;
margin:0;
margin-right:5px;
}
.EditorTableDialog .cellpad{
background:url(images/cellpad.png) no-repeat 5px;
}
.EditorTableDialog .cellspace{
background:url(images/cellspace.png) no-repeat 5px;
}
.dialogButtonContainer{
text-align:right;
margin-top:10px;
cursor:pointer;
}
.colorSwatchBtn{
display:block;
border:#666666 2px solid;
background-color:#CCCCCC;
width:16px;
height:16px;
cursor:pointer;
}
.colorSwatchBtn:hover{
border:#0099FF 2px solid;
}
.colorSwatchBtn div{
background-color:#CCCCCC;
width:16px;
height:16px;
cursor:pointer;
}
/* Editor Buttons */
.editorIcon{
background-image:url(images/tableIcons.png);
background-repeat: no-repeat;
width: 18px;
height: 18px;
text-align: center;
}
.editorIconUploadImage{
background:url(images/uploadImageIcon.gif) no-repeat 0px 4px;
}
.editorIconInsertTable{
background-position:0px 0px; }
.dijitDisabled .editorIconInsertTable{
background-position:-162px 0px; }
.editorIconInsertTableRowBefore{
background-position:-36px 0px; }
.dijitDisabled .editorIconInsertTableRowBefore{
background-position:-198px 0px; }
.editorIconInsertTableRowAfter{
background-position:-54px 0px; }
.dijitDisabled .editorIconInsertTableRowAfter{
background-position:-216px 0px; }
.editorIconInsertTableColumnBefore{
background-position:-72px 0px; }
.dijitDisabled .editorIconInsertTableColumnBefore{
background-position:-234px 0px; }
.editorIconInsertTableColumnAfter{
background-position:-90px 0px; }
.dijitDisabled .editorIconInsertTableColumnAfter{
background-position:-252px 0px; }
.editorIconDeleteTableRow{
background-position:-108px 0px; }
.dijitDisabled .editorIconDeleteTableRow{
background-position:-270px 0px; }
.editorIconDeleteTableColumn{
background-position:-126px 0px; }
.dijitDisabled .editorIconDeleteTableColumn{
background-position:-288px 0px; }
.editorIconColorTableCell{
background-position:-144px 0px; }
.dijitDisabled .editorIconColorTableCell{
background-position:-306px 0px; }
.editorIconModifyTable{
background-position:-18px 0px; }
.dijitDisabled .editorIconModifyTable{
background-position:-180px 0px; }
.RichTextEditable .dijitTextBox,
.RichTextEditable .dijitComboBox,
.RichTextEditable .dijitSpinner {
width: 5em;
}
.dojoxDropDownSelect {
background:#FFFFFF url(images/dropBk.png) repeat-x scroll left top;
border: 1px solid;
border-top-color:#cccccc;
border-right-color:#cccccc;
border-left-color:#999999;
border-bottom-color:#ffffff;
}
.dojoxDropDownSelect.dojoxDropDownSelectHover{
background-image:url(images/dropBkOver.png);
}
.dojoxDropDownSelect button{
line-height:16px;
height:16px;
width:100px;
text-align:left;
color:#8397b9;
}
.dijitButtonNode .dijitArrowButtonInner{
/* fixing the dijit drop arrows - can't figure why this broke */
background:url(../../../../dijit/themes/tundra/images/spriteArrows.png) no-repeat left top;
width:7px;
}
.dojoxEditorUploadNorm{
font-family:Arial;
font-size:12px;
vertical-align: middle;
margin:0;
line-height:normal;
text-align:center;
white-space: nowrap;
cursor: pointer;
background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 2px;
}
.dojoxEditorUploadHover{
background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 0px;
}
.dojoxEditorUploadActive{
background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 4px;
}
.dojoxEditorUploadDisabled{
background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 2px;
}
|