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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
|
/* Debug styles */
.uidl {
position: absolute;
z-index: 1001;
text-indent: 18px;
background-color: white;
background-image: url('img/debug.gif');
background-repeat: no-repeat;
background-position: 1 1;
font-weight: normal;
white-space: nowrap;
}
.minimized {
overflow: hidden;
width: 18px;
height: 18px;
z-index: 1000;
}
/* General styles */
* {
background-color: ThreeDFace;
font-family: sans-serif;
/* font-size: 10pt; */
font-weight: normal;
}
.abs {
position: absolute;
}
.inline {
display: inline;
}
.hidden, .hide {
display: none;
}
.border {
background-color: ButtonFace;
border-width: 1px;
border-style: solid;
border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
}
.outset {
border: 1px solid ButtonFace;
}
/* DISABLED */
.disabled {
color: GrayText;
opacity: 0.5;
filter: alpha(opacity=50);
}
.disabled .caption {
color: GrayText;
}
.disabled .border .caption {
color: GrayText;
}
INPUT, SELECT, SELECT OPTION, TEXTAREA {
background-color: ThreeDHighlight;
}
.disabled INPUT, .disabled SELECT, .disabled SELECT OPTION {
background-color: ThreeDFace;
}
/* CAPTION */
.caption {
color: ButtonText;
}
.caption .icon {
width: 1em;
height: 1em;
vertical-align: middle;
padding-right: 5px;
}
.clickable {
cursor: hand;
cursor: pointer;
}
.over {
border: 1px solid ThreeDDarkShadow;
}
.over .caption {
color: ActiveCaption;
}
.selected {
font-weight: bold;
background: #aaaaaa;
}
.content {
padding: 7px;
}
/* TOOLTIP */
IMG.overlay {
position: absolute;
z-index: 5;
}
.popup {
position: absolute;
z-index: 99999;
overflow: hidden;
}
.popup.hide {
display: none;
}
.popup .border {
border: 1px solid InfoText;
background-color: InfoBackground;
}
.popup .caption {
text-align: left;
}
.popup * {
/*white-space: nowrap;*/ /* Really, there's no point doing it like this. If we need nowrap, we define it in the content that needs it, not on all. */
color: InfoText;
background-color: InfoBackground;
}
.popup .error {
font-size: 0.9em;
overflow: auto;
border: solid 1px red;
}
/* COMPONENTS */
/* Button */
.button INPUT {
background-color: ThreeDFace;
}
.button .border {
height: 1.2em;
overflow: hidden;
padding: 0.2em 0.4em 0.2em 0.4em;
text-align: center;
}
.button-link .caption {
color: ActiveCaption;
font-style: italic;
}
.button-link .over {
border: none;
}
.button-link .over .caption {
text-decoration: underline;
}
/* DateField */
.datefield .btn {
background-color: ButtonFace;
margin-right: 3px;
}
/* Link */
.link .caption {
color: ActiveCaption;
font-style: italic;
}
.link .over {
border: none;
}
.link .over .caption {
text-decoration: underline;
}
.link .description {
font-size: 0.8em;
text-indent: 1.5em;
}
/* Panel */
.panelcaption {
padding: 0.2em 0.4em 0.2em 0.4em;
}
.panel .panelcaption {
border-bottom: 2px groove ThreeDHighlight;
}
.panel-strong .panelcaption {
border-bottom: 2px groove ButtonShadow;
color: CaptionText;
background-color: ActiveCaption;
}
.panel .panelborder, .panel-strong .panelborder, .panel-light .panelborder {
border: 2px groove ThreeDHighlight;
}
/* Select */
.select-optiongroup INPUT.option {
background-color: ThreeDFace;
}
.select-optiongroup DIV.newitem {
margin-left: 1.2em;
margin-top: 0.3em;
}
.select-twincol {
width: 350px;
}
.select-twincol div.buttons {
text-align:center;
}
.select-twincol div.buttons button {
text-align:center;
widht:35px;
}
.select-twincol select.unselected {
float:left;
width: 150px;
/* force white, may be grey if empty initially */
background-color: white;
}
.select-twincol select.selected {
float:right;
width: 150px;
/* force white, may be grey if empty initially */
background-color: white;
}
/* Table */
.table .tablestatus {
position: absolute;
padding: 0.2em 0.4em 0.1em 0.4em;
border: 1px solid InfoText;
background-color: InfoBackground;
}
.table .colsel {
margin: 0.25em ;
width: 0.4em;
height: 0.4em;
border: 1px solid ButtonText;
border-top: 2px solid ButtonText;
cursor: hand;
cursor: pointer;
}
.table .popup {
position: absolute;
}
.table {
border: 1px solid;
border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
}
.table .cout, .table .cin {
background-color: Window;
}
.table .tablecaption {
border: 1px solid;
border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
padding: 0.0em 0.4em 0.1em 0.4em;
}
.table .hout {
height: 1em;
overflow: hidden;
padding-bottom: 0.2em;
border-bottom: 1px solid ButtonShadow;
}
.table .hin .hah {
border-right: 1px solid ButtonShadow;
padding-left: 0.2em;
}
.table .hin .hah IMG, .table .hin .tableheader IMG {
height: 1em;
width: 2px;
cursor:w-resize;
}
.table .hin .tableheader IMG.sort {
Xposition: absolute;
Xmargin-top: 0.5em;
Xmargin-left: 2px;
width: 9px;
height: 5px;
background-repeat: no-repeat;
}
.table .hin .tableheader IMG.sortasc {
background-image: url('img/table/asc.gif');
}
.table .hin .tableheader IMG.sortdesc {
background-image: url('img/table/desc.gif');
}
.table .hin .tableheader {
border-left: 1px solid ButtonHighlight;
border-right: 1px solid ButtonShadow;
padding-left: 0.2em;
}
.table TABLE {
border-collapse: collapse;
empty-cells: show;
}
.table .cin .tableheader {
padding-left: 0.2em;
}
.table .cin .tablecell {
padding-left: 0.2em;
}
.table .selected TD DIV {
background-color: Highlight;
color: HighlightText;
}
.table .selected TD {
background-color: Highlight;
color: HighlightText;
border-left: 1px solid Highlight;
}
.table .even TD DIV {
border-left: 1px solid Window;
background-color: Window;
}
.table .odd TD DIV {
border-left: 1px solid ButtonFace;
background-color: ButtonFace;
}
/* TabSheet */
.tabsheet .tabs {
margin-top: 0.5em;
}
.tabsheet .tabs .tab .caption, .tabsheet .tabs .tab-on .caption {
margin-left: 1px;
margin-right: 1px;
padding: 0.2em 0.4em 0.1em 0.4em;
}
.tabsheet .tabs .tab .border {
border-bottom: 1px solid ThreeDHighlight;
}
.tabsheet .tabs .tab-on .border {
border-bottom: 1px solid ThreeDFace;
}
.tabsheet .tabs .over {
border: none;
}
.tabsheet .tabs .over .border {
border-bottom: 1px solid ThreeDFace;
}
/* TextField */
.textfield {
margin-top: 0.05em;
}
.textfield .border {
border: none;
}
.textfield INPUT {
font-size: 1em;
padding: 0.12em 0.4em 0.12em 0.4em;
}
/* Tree */
.tree {
border: 1px solid;
border-color: ButtonShadow ButtonHighlight ButtonHighlight ButtonShadow;
}
.tree .caption {
border: 1px solid;
border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
padding: 0.0em 0.4em 0.1em 0.4em;
}
.tree .content, .tree .content .node, .tree .content .nodes, .tree .content .node IMG {
background-color: Window;
}
.tree .node {
border: none;
padding: 0.1em 0.4em 0.2em 0em;
}
.tree .nodes {
padding-left: 1em;
}
.tree .over {
text-decoration: underline;
color: Highlight;
}
.tree .content DIV.selected, .tree .content .selected IMG {
background-color: Highlight;
color: HighlightText;
font-weight: normal;
}
/* ACTIONS */
.actions {
position: absolute;
border: 1px solid;
border-color: ButtonShadow ButtonText ButtonText ButtonShadow;
}
.actions .border {
background-color: ButtonFace;
border: 1px solid;
border-color: ButtonHighlight ButtonShadow ButtonShadow ButtonHighlight;
}
.actions .item {
padding: 0.2em 1em 0.2em 1em;
color: ButtonText;
white-space: nowrap;
}
.actions .over {
border: none;
text-decoration: none;
color: HighlightText;
background-color: Highlight;
}
.table .actions .over {
background-color: Highlight;
}
.upload-iframe {
width: 450px;
height: 30px;
border: none;
margin: 0px;
padding: 0px;
background: transparent;
}
|