profoundjs 7.5.0 → 7.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/LICENSE.txt +27 -25
  2. package/htdocs/jszip/FileSaver.min.js +2 -2
  3. package/htdocs/profoundui/proddata/css/atrium.css +201 -201
  4. package/htdocs/profoundui/proddata/css/designer_respeditor.css +91 -91
  5. package/htdocs/profoundui/proddata/css/ipademulator.css +38 -38
  6. package/htdocs/profoundui/proddata/css/iphoneemulator.css +29 -29
  7. package/htdocs/profoundui/proddata/css/jumpstart.css +442 -442
  8. package/htdocs/profoundui/proddata/css/key_management.css +122 -122
  9. package/htdocs/profoundui/proddata/css/logic.css +1669 -1669
  10. package/htdocs/profoundui/proddata/css/markdown.css +754 -754
  11. package/htdocs/profoundui/proddata/css/profoundai.css +42 -0
  12. package/htdocs/profoundui/proddata/css/puisplash.css +186 -186
  13. package/htdocs/profoundui/proddata/css/qtips.css +32 -32
  14. package/htdocs/profoundui/proddata/html/genieframe.html +25 -25
  15. package/htdocs/profoundui/proddata/js/designer.js +3794 -3782
  16. package/htdocs/profoundui/proddata/js/key_management.js +34 -34
  17. package/htdocs/profoundui/proddata/js/profoundai.js +26 -0
  18. package/htdocs/profoundui/proddata/js/rich-display-react-component.js +45 -45
  19. package/htdocs/profoundui/proddata/js/rich-display-vue-component.js +28 -28
  20. package/htdocs/profoundui/proddata/js/runtime.js +1404 -1401
  21. package/htdocs/profoundui/proddata/js/soapclient.js +419 -419
  22. package/htdocs/profoundui/proddata/typings/profoundjs.d.ts +881 -881
  23. package/htdocs/profoundui/proddata/typings/profoundui.d.ts +388 -388
  24. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-gray.css +414 -414
  25. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-olive.css +623 -623
  26. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-slate.css +672 -672
  27. package/htdocs/profoundui/userdata/atrium themes/css/xtheme-steel.css +10437 -10437
  28. package/htdocs/profoundui/userdata/css/atrium_banner.css +13 -13
  29. package/htdocs/profoundui/userdata/css/atrium_home.css +37 -37
  30. package/htdocs/profoundui/userdata/custom/themes/enhanced.js +104 -104
  31. package/htdocs/profoundui/userdata/custom/themes/hybrid.js +109 -109
  32. package/htdocs/profoundui/userdata/custom/themes/standard.js +68 -68
  33. package/htdocs/profoundui/userdata/custom/widgets/googlemaps.js +139 -139
  34. package/htdocs/profoundui/userdata/custom/widgets/listbox.js +37 -37
  35. package/htdocs/profoundui/userdata/custom/widgets/panel.js +74 -74
  36. package/htdocs/profoundui/userdata/custom/widgets/styled_button.js +71 -71
  37. package/htdocs/profoundui/userdata/custom/widgets/tabpanel.js +61 -61
  38. package/htdocs/profoundui/userdata/genie skins/Classic/Classic.css +562 -562
  39. package/htdocs/profoundui/userdata/genie skins/Classic/custom.js +3 -3
  40. package/htdocs/profoundui/userdata/genie skins/Gradient/Gradient.css +616 -616
  41. package/htdocs/profoundui/userdata/genie skins/Gradient/adjusted columns custom.js +83 -83
  42. package/htdocs/profoundui/userdata/genie skins/Gradient/custom.js +83 -83
  43. package/htdocs/profoundui/userdata/genie skins/Hybrid/Hybrid.css +616 -616
  44. package/htdocs/profoundui/userdata/genie skins/Hybrid/custom.js +330 -330
  45. package/htdocs/profoundui/userdata/genie skins/Plain/Plain.css +546 -546
  46. package/htdocs/profoundui/userdata/genie skins/Plain/custom.js +6 -6
  47. package/htdocs/profoundui/userdata/genie skins/Skyline/Skyline.css +753 -753
  48. package/htdocs/profoundui/userdata/genie skins/Skyline/adjusted columns custom.js +97 -97
  49. package/htdocs/profoundui/userdata/genie skins/Skyline/custom.js +97 -97
  50. package/htdocs/profoundui/userdata/genie skins/Tablet/Tablet.css +743 -743
  51. package/htdocs/profoundui/userdata/genie skins/Tablet/custom.js +153 -153
  52. package/htdocs/profoundui/userdata/samples/ordentry/OrdEntry.js +92 -92
  53. package/package.json +2 -2
  54. package/profound.jse +1 -1
  55. package/setup/pjsdist.savf +0 -0
@@ -1,616 +1,616 @@
1
-
2
- #gradient1 {
3
- filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#4B92D9', endColorStr='#CEDFF6', gradientType='1');
4
- background: #73ABE3;
5
- font-size: 18px;
6
- font-weight: bold;
7
- color: #FFFFFF;
8
- }
9
-
10
- #gradient2 {
11
- filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#CEDFF6', endColorStr='#1E77D3', gradientType='1');
12
- text-align: right;
13
- padding-right: 15px;
14
- padding-top: 5px;
15
- padding-bottom: 5px;
16
- color: #FFFFFF;
17
- font-family: Trebuchet MS;
18
- font-size: 14px;
19
- font-weight: bold;
20
- background: #73ABE3;
21
- }
22
-
23
- #content {
24
- background: #fbfdff;
25
- }
26
-
27
- .BigText {
28
- color: #000066;
29
- font-weight: bold;
30
- font-size: 15px;
31
- text-align: right;
32
- font-family: Arial;
33
- width: 100px;
34
- }
35
-
36
-
37
- /* Push Button */
38
- INPUT.button {
39
- color: #335588;
40
- font-weight: bold;
41
- font-size: 12px;
42
- }
43
-
44
- /* Selector Pen */
45
- .selpen {
46
-
47
- }
48
-
49
- /* Calendar Classes */
50
- .calendar {
51
- font-size:11px;
52
- font-weight:bold;
53
- cursor:pointer;
54
- }
55
- .brndrow1 {
56
- background-color: #5588BB;
57
- }
58
- .brndrow1 A {
59
- border: 0px;
60
- }
61
- .brndrow1 A:hover {
62
- border: 0px;
63
- }
64
-
65
- .brndrow2
66
- {
67
- background-color: #5588BB;
68
- }
69
-
70
-
71
- /* Context Menu on a Subfile right-click */
72
- #menuDiv {
73
- border: 2px dashed #CCCCCC;
74
- }
75
- .menu {
76
- background: #5588BB;
77
- }
78
- .menu TR {
79
- cursor: pointer;
80
- }
81
- .menu TD {
82
- font-family: Arial;
83
- font-size: 12px;
84
- color: white;
85
- }
86
- .menuHover TD {
87
- background: #FFFF66;
88
- color: #0000FF;
89
- }
90
-
91
-
92
- .mainDiv {
93
- text-align: center;
94
- vertical-align: middle;
95
- width: 100%;
96
- height: 100%;
97
- /*background-color: #336699;*/
98
- padding: 0px;
99
- }
100
-
101
- .topDiv {
102
- width: 100%;
103
- padding: 0px;
104
- }
105
-
106
-
107
- .middleDiv {
108
- height: 592px;
109
- text-align: center;
110
- width: 775px;
111
- padding: 0px;
112
- }
113
-
114
- .centered {
115
- text-align: -moz-center;
116
- margin-left: auto;
117
- margin-right: auto;
118
- }
119
-
120
- .insideDiv {
121
- text-align: center;
122
- width: 675px;
123
- }
124
-
125
- body {
126
- margin: 0px 0px 0px 0px;
127
- text-align: center;
128
- vertical-align: middle;
129
- background-repeat: repeat-y;
130
- background-color: #FFFFFF;
131
- font-family: Consolas, monospace;
132
- /* font-family: Trebuchet MS; */
133
- font-size: 14px;
134
- overflow: auto;
135
- }
136
-
137
- div {
138
- padding: 1px;
139
- z-index: 10;
140
- text-align: left;
141
- white-space: nowrap;
142
- }
143
-
144
- img {
145
- z-index: 10;
146
- }
147
-
148
-
149
-
150
- .hand {
151
- cursor: pointer;
152
- }
153
-
154
-
155
-
156
- .input {
157
- font-family: Monospace;
158
- font-weight: bold;
159
- font-size: 13px;
160
- z-index: 20;
161
- }
162
- .focusInp {
163
- background: #ffffdd;
164
- font-weight: bold;
165
- font-family: Monospace;
166
- font-size: 13px;
167
- z-index: 20;
168
- }
169
-
170
- .label {
171
- text-align: right;
172
- font-weight: bold;
173
- color: #003399;
174
- }
175
-
176
- .heading {
177
- color: #105184;
178
- font-weight: bold;
179
- font-size: 20px
180
- }
181
-
182
- SELECT {
183
- font-family: Monospace;
184
- font-size: 13px;
185
- background: #F0FFFF;
186
- border: 3px double #8EC8FF;
187
- z-index: 20;
188
- }
189
-
190
- BUTTON {
191
- z-index: 20;
192
- }
193
-
194
- INPUT {
195
- font-family: Monospace;
196
- font-size: 13px;
197
- z-index: 20;
198
- }
199
-
200
- TEXTAREA {
201
- z-index: 20;
202
- }
203
-
204
-
205
- /* Spaced Window Border */
206
- DIV.Spaced {
207
- background-color: #336699;
208
- background-color: #FFFFFF;
209
- border-style: solid;
210
- border-top-width: 12px;
211
- border-bottom-width: 12px;
212
- border-right-width: 8px ;
213
- border-left-width: 8px;
214
- filter: progid:DXImageTransform.Microsoft.Shadow(color=white, direction=135, strength=6);
215
- z-index: 30;
216
-
217
- }
218
-
219
- /* default window border */
220
- DIV.Default {
221
- border-color: #336699;
222
- background-color: #FFFFFF;
223
- border-style: solid;
224
- border-width: 3px;
225
- z-index: 30;
226
- }
227
-
228
- DIV.Default DIV.title {
229
- color: #336699;
230
- font-weight: bold;
231
- background-color: #FFFFFF;
232
- }
233
-
234
- .Title
235
- {
236
- vertical-align: text-top;
237
- background-color: #336699;
238
- background-color: #FFFFFF;
239
- z-index: 40;
240
- }
241
-
242
-
243
-
244
-
245
-
246
- A {
247
- text-decoration: none;
248
- border-bottom: 1px dotted #c1b6b6;
249
- }
250
- A:hover {
251
- border: 2px solid #5588BB;
252
- background-color: #6699CC;
253
- }
254
-
255
- .A20 A {
256
- color: #003399;
257
- }
258
- .A3A A /*Blue*/
259
- {
260
- color: #009B00;
261
- }
262
- .A22 A /*White*/
263
- {
264
- color: #003399;
265
- }
266
-
267
-
268
-
269
-
270
-
271
-
272
- /* Regular Green */
273
- DIV.A20 {
274
- color: #003399;
275
- font-weight: bold;
276
- }
277
- INPUT.A20 {
278
- color: #003399;
279
- font-weight: bold;
280
- }
281
-
282
- .A21 /*Reverse Green*/
283
- {
284
- background-color: #FFCC00;
285
- color: #224E9F;
286
- }
287
- INPUT.A22 /* White Input Field */
288
- {
289
- font-weight: bold;
290
- color: black;
291
- }
292
- .A22 /*White*/
293
- {
294
- color: #3366CC;
295
- font-weight: bold;
296
-
297
- }
298
- .A23 /*Reverse White*/
299
- {
300
- color: #FFFFFF;
301
- background-color: #7A9BE0;
302
- }
303
- INPUT.A24 {
304
- color: black;
305
- }
306
- DIV.A24 /*Green Underscore*/
307
- {
308
- color: #003399;
309
- border-bottom: solid 1px #003399;
310
- }
311
- DIV.A25 /*Green Underscore Reverse*/
312
- {
313
- color: #224E9F;
314
- background-color: #FFCC00;
315
- border-bottom: solid 1px #224E9F;
316
- }
317
- INPUT.A25 /*Green Underscore Reverse*/
318
- {
319
- color: #224E9F;
320
- background-color: #FFCC00;
321
- }
322
- DIV.A26 /*White Underscore*/
323
- {
324
- color: #003399;
325
- border-bottom: solid 1px #003399;
326
- }
327
- INPUT.A26 /* White Underscore Input Field */
328
- {
329
- font-weight: bold;
330
- color: black;
331
- }
332
- INPUT.A27 /* Nondisplay Input */
333
- {
334
- color: black;
335
- }
336
- DIV.A27 /*Nondisplay Output*/
337
- {
338
- visibility: hidden;
339
- }
340
- .A28 /*Red*/
341
- {
342
- color: red;
343
- }
344
- .A29 /*Reverse Red*/
345
- {
346
- color: #336699;
347
- color: #FFFFFF;
348
- background-color: red;
349
- }
350
- .A2B /* Red reverse image blink */
351
- {
352
- color: white;
353
- background-color: red;
354
- }
355
- DIV.A2C /*Red Underscore*/
356
- {
357
- color: Red;
358
- border-bottom: solid 1px Red;
359
- }
360
- INPUT.A2C /*Red Underscore*/
361
- {
362
- color: Red;
363
- }
364
- DIV.A2D /*Red Underscore Reverse */
365
- {
366
- color: #336699;
367
- color: #FFFFFF;
368
- background-color: red;
369
- border-bottom: #336699;
370
-
371
- }
372
- INPUT.A2D /*Red Underscore Reverse */
373
- {
374
- color: #336699;
375
- color: #FFFFFF;
376
- background-color: red;
377
-
378
- }
379
-
380
- INPUT.A2A /* Red Blink */
381
- {
382
- color: red;
383
- }
384
-
385
- DIV.A2A /* Red Blink */
386
- {
387
- color: red;
388
- }
389
-
390
- INPUT.A2E /* Red Underscore Blink */
391
- {
392
- color: red;
393
- }
394
-
395
- DIV.A2E /* Red Underscore Blink */
396
- {
397
- color: red;
398
- border-bottom: solid 1px Red;
399
- }
400
-
401
- DIV.A2F /*Nondisplay*/
402
- {
403
- visibility: hidden;
404
- }
405
- DIV.A30 /*Turquise (Column Seperators)*/
406
- {
407
- color: #3366cc;
408
- border-bottom: thin dashed;
409
- }
410
- INPUT.A30 /*Turquise (Column Seperators)*/
411
- {
412
- color: navy;
413
- }
414
- .A31 /*Turquise Reverse*/
415
- {
416
- color: #FFFFFF;
417
- background-color: #33CCCC;
418
- }
419
- DIV.A32 /*Yellow (Column Separators)*/
420
- {
421
- color: #ff8040;
422
- border-bottom: thin dashed;
423
- }
424
- INPUT.A32 /*Yellow (Column Separators)*/
425
- {
426
- color: black;
427
- }
428
- .A33 /*Yellow Reverse*/
429
- {
430
- color: #FFFFFF;
431
- background-color: #ff8040;
432
- }
433
- DIV.A34 /*Turquise Underscore*/
434
- {
435
- color: #3366cc;
436
- border-bottom: solid 1px #3366cc;
437
- }
438
- INPUT.A34 /*Turquise Underscore*/
439
- {
440
- color: black;
441
- }
442
- DIV.A35 /*Turqouise Underscore Reverse*/
443
- {
444
- color: #336699;
445
- color: #FFFFFF;
446
- background-color: aqua;
447
- border-bottom: solid 1px #336699;
448
- }
449
- INPUT.A35 /*Turqouise Underscore Reverse*/
450
- {
451
- color: #336699;
452
- color: #FFFFFF;
453
- background-color: aqua;
454
- }
455
- DIV.A36 /*Yellow Underscore*/
456
- {
457
- color: #ff8040;
458
- border-bottom: solid 1px #ff8040;
459
- }
460
- INPUT.A36 /*Yellow Underscore*/
461
- {
462
- color: black;
463
- }
464
- .A37 /*Nondisplay*/
465
- {
466
- color: #336699;
467
- color: #FFFFFF;
468
- background-color: #336699;
469
- background-color: #FFFFFF;
470
- }
471
- .A38 /*Pink*/
472
- {
473
- color: fuchsia;
474
- }
475
- .A39 /*Pink Reverse*/
476
- {
477
- color: #336699;
478
- color: #FFFFFF;
479
- background-color: fuchsia;
480
- }
481
- .A3A /*Blue*/
482
- {
483
- color: #009B00;
484
- font-size: 14px;
485
- font-weight: bold;
486
- }
487
- .A3B /*Blue Reverse */
488
- {
489
- color: #FFFFFF;
490
- background-color: #9999FF;
491
- }
492
- DIV.A3C /*Pink Underscore*/
493
- {
494
- color: fuchsia;
495
- border-bottom: solid 1px fuchsia;
496
- }
497
- INPUT.A3C /*Pink Underscore*/
498
- {
499
- color: fuchsia;
500
- }
501
- DIV.A3D /*Pink Underscore Reverse*/
502
- {
503
- color: #336699;
504
- background-color: fuchsia;
505
- border-bottom: solid 1px #336699;
506
- }
507
- INPUT.A3D /*Pink Underscore Reverse*/
508
- {
509
- color: #336699;
510
- background-color: fuchsia;
511
- }
512
- DIV.A3E /*Blue Underscore*/
513
- {
514
- color: #6666FF;
515
- border-bottom: solid 1px #6666FF;
516
- }
517
- INPUT.A3E /*Blue Underscore*/
518
- {
519
- color: #333399;
520
- }
521
-
522
- /**************************************/
523
-
524
- .hide {
525
- visibility: hidden;
526
- }
527
-
528
- .upper {
529
- text-transform: uppercase;
530
- }
531
-
532
-
533
-
534
-
535
-
536
- INPUT.readOnly {
537
- background: #FFFFFF;
538
- border: 0px;
539
- color: #003399;
540
- }
541
-
542
- .autocomplete-item {
543
-
544
- border-style: solid;
545
- border-width: 1px;
546
- border-color: #FFFFFF rgb(255, 255, 255) rgb(238, 238, 238);
547
- font-size: 10px;
548
- font-family: tahoma, arial, helvetica, sans-serif;
549
- color: #555555;
550
- background-color: #FFFFFF;
551
- cursor: pointer;
552
- margin: 0px;
553
- padding: 4px 4px 4px 4px;
554
- white-space: nowrap;
555
- overflow: hidden;
556
- text-align: left;
557
-
558
- }
559
-
560
- .autocomplete-selected {
561
-
562
- background-color: #DFE8F6;
563
- border: 1px dotted #A3BAE9 !important;
564
-
565
-
566
- }
567
-
568
- .autocomplete-col {
569
-
570
- overflow: hidden;
571
- white-space: nowrap;
572
-
573
- }
574
-
575
- INPUT.empty-text, TEXTAREA.empty-text {
576
- color: gray;
577
- border: 1px solid #B5B8C8;
578
- }
579
- /* Gradient CSS Animation */
580
- .pui-gradient-animation {
581
- position: absolute;
582
- display: block;
583
- top: 0px;
584
- left: 0px;
585
- width: 50px;
586
- height: 50px;
587
- z-index: 1001;
588
- }
589
-
590
- .pui-gradient-animation:before {
591
- content: '';
592
- position: absolute;
593
- top: 5px;
594
- left: 5px;
595
- right: 5px;
596
- bottom: 5px;
597
- border-radius: 50%;
598
- border: 2.5px solid transparent;
599
- border-top-color: #009B00;
600
- -webkit-animation: pui-spin 1s linear infinite;
601
- animation: pui-spin 1s linear infinite;
602
- }
603
-
604
- .pui-gradient-animation:after {
605
- content: '';
606
- position: absolute;
607
- top: 10px;
608
- left: 10px;
609
- right: 10px;
610
- bottom: 10px;
611
- border-radius: 50%;
612
- border: 2.5px solid transparent;
613
- border-top-color: #73ABE3;
614
- -webkit-animation: pui-spin 1.25s linear infinite;
615
- animation: pui-spin 1.25s linear infinite;
616
- }
1
+
2
+ #gradient1 {
3
+ filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#4B92D9', endColorStr='#CEDFF6', gradientType='1');
4
+ background: #73ABE3;
5
+ font-size: 18px;
6
+ font-weight: bold;
7
+ color: #FFFFFF;
8
+ }
9
+
10
+ #gradient2 {
11
+ filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#CEDFF6', endColorStr='#1E77D3', gradientType='1');
12
+ text-align: right;
13
+ padding-right: 15px;
14
+ padding-top: 5px;
15
+ padding-bottom: 5px;
16
+ color: #FFFFFF;
17
+ font-family: Trebuchet MS;
18
+ font-size: 14px;
19
+ font-weight: bold;
20
+ background: #73ABE3;
21
+ }
22
+
23
+ #content {
24
+ background: #fbfdff;
25
+ }
26
+
27
+ .BigText {
28
+ color: #000066;
29
+ font-weight: bold;
30
+ font-size: 15px;
31
+ text-align: right;
32
+ font-family: Arial;
33
+ width: 100px;
34
+ }
35
+
36
+
37
+ /* Push Button */
38
+ INPUT.button {
39
+ color: #335588;
40
+ font-weight: bold;
41
+ font-size: 12px;
42
+ }
43
+
44
+ /* Selector Pen */
45
+ .selpen {
46
+
47
+ }
48
+
49
+ /* Calendar Classes */
50
+ .calendar {
51
+ font-size:11px;
52
+ font-weight:bold;
53
+ cursor:pointer;
54
+ }
55
+ .brndrow1 {
56
+ background-color: #5588BB;
57
+ }
58
+ .brndrow1 A {
59
+ border: 0px;
60
+ }
61
+ .brndrow1 A:hover {
62
+ border: 0px;
63
+ }
64
+
65
+ .brndrow2
66
+ {
67
+ background-color: #5588BB;
68
+ }
69
+
70
+
71
+ /* Context Menu on a Subfile right-click */
72
+ #menuDiv {
73
+ border: 2px dashed #CCCCCC;
74
+ }
75
+ .menu {
76
+ background: #5588BB;
77
+ }
78
+ .menu TR {
79
+ cursor: pointer;
80
+ }
81
+ .menu TD {
82
+ font-family: Arial;
83
+ font-size: 12px;
84
+ color: white;
85
+ }
86
+ .menuHover TD {
87
+ background: #FFFF66;
88
+ color: #0000FF;
89
+ }
90
+
91
+
92
+ .mainDiv {
93
+ text-align: center;
94
+ vertical-align: middle;
95
+ width: 100%;
96
+ height: 100%;
97
+ /*background-color: #336699;*/
98
+ padding: 0px;
99
+ }
100
+
101
+ .topDiv {
102
+ width: 100%;
103
+ padding: 0px;
104
+ }
105
+
106
+
107
+ .middleDiv {
108
+ height: 592px;
109
+ text-align: center;
110
+ width: 775px;
111
+ padding: 0px;
112
+ }
113
+
114
+ .centered {
115
+ text-align: -moz-center;
116
+ margin-left: auto;
117
+ margin-right: auto;
118
+ }
119
+
120
+ .insideDiv {
121
+ text-align: center;
122
+ width: 675px;
123
+ }
124
+
125
+ body {
126
+ margin: 0px 0px 0px 0px;
127
+ text-align: center;
128
+ vertical-align: middle;
129
+ background-repeat: repeat-y;
130
+ background-color: #FFFFFF;
131
+ font-family: Consolas, monospace;
132
+ /* font-family: Trebuchet MS; */
133
+ font-size: 14px;
134
+ overflow: auto;
135
+ }
136
+
137
+ div {
138
+ padding: 1px;
139
+ z-index: 10;
140
+ text-align: left;
141
+ white-space: nowrap;
142
+ }
143
+
144
+ img {
145
+ z-index: 10;
146
+ }
147
+
148
+
149
+
150
+ .hand {
151
+ cursor: pointer;
152
+ }
153
+
154
+
155
+
156
+ .input {
157
+ font-family: Monospace;
158
+ font-weight: bold;
159
+ font-size: 13px;
160
+ z-index: 20;
161
+ }
162
+ .focusInp {
163
+ background: #ffffdd;
164
+ font-weight: bold;
165
+ font-family: Monospace;
166
+ font-size: 13px;
167
+ z-index: 20;
168
+ }
169
+
170
+ .label {
171
+ text-align: right;
172
+ font-weight: bold;
173
+ color: #003399;
174
+ }
175
+
176
+ .heading {
177
+ color: #105184;
178
+ font-weight: bold;
179
+ font-size: 20px
180
+ }
181
+
182
+ SELECT {
183
+ font-family: Monospace;
184
+ font-size: 13px;
185
+ background: #F0FFFF;
186
+ border: 3px double #8EC8FF;
187
+ z-index: 20;
188
+ }
189
+
190
+ BUTTON {
191
+ z-index: 20;
192
+ }
193
+
194
+ INPUT {
195
+ font-family: Monospace;
196
+ font-size: 13px;
197
+ z-index: 20;
198
+ }
199
+
200
+ TEXTAREA {
201
+ z-index: 20;
202
+ }
203
+
204
+
205
+ /* Spaced Window Border */
206
+ DIV.Spaced {
207
+ background-color: #336699;
208
+ background-color: #FFFFFF;
209
+ border-style: solid;
210
+ border-top-width: 12px;
211
+ border-bottom-width: 12px;
212
+ border-right-width: 8px ;
213
+ border-left-width: 8px;
214
+ filter: progid:DXImageTransform.Microsoft.Shadow(color=white, direction=135, strength=6);
215
+ z-index: 30;
216
+
217
+ }
218
+
219
+ /* default window border */
220
+ DIV.Default {
221
+ border-color: #336699;
222
+ background-color: #FFFFFF;
223
+ border-style: solid;
224
+ border-width: 3px;
225
+ z-index: 30;
226
+ }
227
+
228
+ DIV.Default DIV.title {
229
+ color: #336699;
230
+ font-weight: bold;
231
+ background-color: #FFFFFF;
232
+ }
233
+
234
+ .Title
235
+ {
236
+ vertical-align: text-top;
237
+ background-color: #336699;
238
+ background-color: #FFFFFF;
239
+ z-index: 40;
240
+ }
241
+
242
+
243
+
244
+
245
+
246
+ A {
247
+ text-decoration: none;
248
+ border-bottom: 1px dotted #c1b6b6;
249
+ }
250
+ A:hover {
251
+ border: 2px solid #5588BB;
252
+ background-color: #6699CC;
253
+ }
254
+
255
+ .A20 A {
256
+ color: #003399;
257
+ }
258
+ .A3A A /*Blue*/
259
+ {
260
+ color: #009B00;
261
+ }
262
+ .A22 A /*White*/
263
+ {
264
+ color: #003399;
265
+ }
266
+
267
+
268
+
269
+
270
+
271
+
272
+ /* Regular Green */
273
+ DIV.A20 {
274
+ color: #003399;
275
+ font-weight: bold;
276
+ }
277
+ INPUT.A20 {
278
+ color: #003399;
279
+ font-weight: bold;
280
+ }
281
+
282
+ .A21 /*Reverse Green*/
283
+ {
284
+ background-color: #FFCC00;
285
+ color: #224E9F;
286
+ }
287
+ INPUT.A22 /* White Input Field */
288
+ {
289
+ font-weight: bold;
290
+ color: black;
291
+ }
292
+ .A22 /*White*/
293
+ {
294
+ color: #3366CC;
295
+ font-weight: bold;
296
+
297
+ }
298
+ .A23 /*Reverse White*/
299
+ {
300
+ color: #FFFFFF;
301
+ background-color: #7A9BE0;
302
+ }
303
+ INPUT.A24 {
304
+ color: black;
305
+ }
306
+ DIV.A24 /*Green Underscore*/
307
+ {
308
+ color: #003399;
309
+ border-bottom: solid 1px #003399;
310
+ }
311
+ DIV.A25 /*Green Underscore Reverse*/
312
+ {
313
+ color: #224E9F;
314
+ background-color: #FFCC00;
315
+ border-bottom: solid 1px #224E9F;
316
+ }
317
+ INPUT.A25 /*Green Underscore Reverse*/
318
+ {
319
+ color: #224E9F;
320
+ background-color: #FFCC00;
321
+ }
322
+ DIV.A26 /*White Underscore*/
323
+ {
324
+ color: #003399;
325
+ border-bottom: solid 1px #003399;
326
+ }
327
+ INPUT.A26 /* White Underscore Input Field */
328
+ {
329
+ font-weight: bold;
330
+ color: black;
331
+ }
332
+ INPUT.A27 /* Nondisplay Input */
333
+ {
334
+ color: black;
335
+ }
336
+ DIV.A27 /*Nondisplay Output*/
337
+ {
338
+ visibility: hidden;
339
+ }
340
+ .A28 /*Red*/
341
+ {
342
+ color: red;
343
+ }
344
+ .A29 /*Reverse Red*/
345
+ {
346
+ color: #336699;
347
+ color: #FFFFFF;
348
+ background-color: red;
349
+ }
350
+ .A2B /* Red reverse image blink */
351
+ {
352
+ color: white;
353
+ background-color: red;
354
+ }
355
+ DIV.A2C /*Red Underscore*/
356
+ {
357
+ color: Red;
358
+ border-bottom: solid 1px Red;
359
+ }
360
+ INPUT.A2C /*Red Underscore*/
361
+ {
362
+ color: Red;
363
+ }
364
+ DIV.A2D /*Red Underscore Reverse */
365
+ {
366
+ color: #336699;
367
+ color: #FFFFFF;
368
+ background-color: red;
369
+ border-bottom: #336699;
370
+
371
+ }
372
+ INPUT.A2D /*Red Underscore Reverse */
373
+ {
374
+ color: #336699;
375
+ color: #FFFFFF;
376
+ background-color: red;
377
+
378
+ }
379
+
380
+ INPUT.A2A /* Red Blink */
381
+ {
382
+ color: red;
383
+ }
384
+
385
+ DIV.A2A /* Red Blink */
386
+ {
387
+ color: red;
388
+ }
389
+
390
+ INPUT.A2E /* Red Underscore Blink */
391
+ {
392
+ color: red;
393
+ }
394
+
395
+ DIV.A2E /* Red Underscore Blink */
396
+ {
397
+ color: red;
398
+ border-bottom: solid 1px Red;
399
+ }
400
+
401
+ DIV.A2F /*Nondisplay*/
402
+ {
403
+ visibility: hidden;
404
+ }
405
+ DIV.A30 /*Turquise (Column Seperators)*/
406
+ {
407
+ color: #3366cc;
408
+ border-bottom: thin dashed;
409
+ }
410
+ INPUT.A30 /*Turquise (Column Seperators)*/
411
+ {
412
+ color: navy;
413
+ }
414
+ .A31 /*Turquise Reverse*/
415
+ {
416
+ color: #FFFFFF;
417
+ background-color: #33CCCC;
418
+ }
419
+ DIV.A32 /*Yellow (Column Separators)*/
420
+ {
421
+ color: #ff8040;
422
+ border-bottom: thin dashed;
423
+ }
424
+ INPUT.A32 /*Yellow (Column Separators)*/
425
+ {
426
+ color: black;
427
+ }
428
+ .A33 /*Yellow Reverse*/
429
+ {
430
+ color: #FFFFFF;
431
+ background-color: #ff8040;
432
+ }
433
+ DIV.A34 /*Turquise Underscore*/
434
+ {
435
+ color: #3366cc;
436
+ border-bottom: solid 1px #3366cc;
437
+ }
438
+ INPUT.A34 /*Turquise Underscore*/
439
+ {
440
+ color: black;
441
+ }
442
+ DIV.A35 /*Turqouise Underscore Reverse*/
443
+ {
444
+ color: #336699;
445
+ color: #FFFFFF;
446
+ background-color: aqua;
447
+ border-bottom: solid 1px #336699;
448
+ }
449
+ INPUT.A35 /*Turqouise Underscore Reverse*/
450
+ {
451
+ color: #336699;
452
+ color: #FFFFFF;
453
+ background-color: aqua;
454
+ }
455
+ DIV.A36 /*Yellow Underscore*/
456
+ {
457
+ color: #ff8040;
458
+ border-bottom: solid 1px #ff8040;
459
+ }
460
+ INPUT.A36 /*Yellow Underscore*/
461
+ {
462
+ color: black;
463
+ }
464
+ .A37 /*Nondisplay*/
465
+ {
466
+ color: #336699;
467
+ color: #FFFFFF;
468
+ background-color: #336699;
469
+ background-color: #FFFFFF;
470
+ }
471
+ .A38 /*Pink*/
472
+ {
473
+ color: fuchsia;
474
+ }
475
+ .A39 /*Pink Reverse*/
476
+ {
477
+ color: #336699;
478
+ color: #FFFFFF;
479
+ background-color: fuchsia;
480
+ }
481
+ .A3A /*Blue*/
482
+ {
483
+ color: #009B00;
484
+ font-size: 14px;
485
+ font-weight: bold;
486
+ }
487
+ .A3B /*Blue Reverse */
488
+ {
489
+ color: #FFFFFF;
490
+ background-color: #9999FF;
491
+ }
492
+ DIV.A3C /*Pink Underscore*/
493
+ {
494
+ color: fuchsia;
495
+ border-bottom: solid 1px fuchsia;
496
+ }
497
+ INPUT.A3C /*Pink Underscore*/
498
+ {
499
+ color: fuchsia;
500
+ }
501
+ DIV.A3D /*Pink Underscore Reverse*/
502
+ {
503
+ color: #336699;
504
+ background-color: fuchsia;
505
+ border-bottom: solid 1px #336699;
506
+ }
507
+ INPUT.A3D /*Pink Underscore Reverse*/
508
+ {
509
+ color: #336699;
510
+ background-color: fuchsia;
511
+ }
512
+ DIV.A3E /*Blue Underscore*/
513
+ {
514
+ color: #6666FF;
515
+ border-bottom: solid 1px #6666FF;
516
+ }
517
+ INPUT.A3E /*Blue Underscore*/
518
+ {
519
+ color: #333399;
520
+ }
521
+
522
+ /**************************************/
523
+
524
+ .hide {
525
+ visibility: hidden;
526
+ }
527
+
528
+ .upper {
529
+ text-transform: uppercase;
530
+ }
531
+
532
+
533
+
534
+
535
+
536
+ INPUT.readOnly {
537
+ background: #FFFFFF;
538
+ border: 0px;
539
+ color: #003399;
540
+ }
541
+
542
+ .autocomplete-item {
543
+
544
+ border-style: solid;
545
+ border-width: 1px;
546
+ border-color: #FFFFFF rgb(255, 255, 255) rgb(238, 238, 238);
547
+ font-size: 10px;
548
+ font-family: tahoma, arial, helvetica, sans-serif;
549
+ color: #555555;
550
+ background-color: #FFFFFF;
551
+ cursor: pointer;
552
+ margin: 0px;
553
+ padding: 4px 4px 4px 4px;
554
+ white-space: nowrap;
555
+ overflow: hidden;
556
+ text-align: left;
557
+
558
+ }
559
+
560
+ .autocomplete-selected {
561
+
562
+ background-color: #DFE8F6;
563
+ border: 1px dotted #A3BAE9 !important;
564
+
565
+
566
+ }
567
+
568
+ .autocomplete-col {
569
+
570
+ overflow: hidden;
571
+ white-space: nowrap;
572
+
573
+ }
574
+
575
+ INPUT.empty-text, TEXTAREA.empty-text {
576
+ color: gray;
577
+ border: 1px solid #B5B8C8;
578
+ }
579
+ /* Gradient CSS Animation */
580
+ .pui-gradient-animation {
581
+ position: absolute;
582
+ display: block;
583
+ top: 0px;
584
+ left: 0px;
585
+ width: 50px;
586
+ height: 50px;
587
+ z-index: 1001;
588
+ }
589
+
590
+ .pui-gradient-animation:before {
591
+ content: '';
592
+ position: absolute;
593
+ top: 5px;
594
+ left: 5px;
595
+ right: 5px;
596
+ bottom: 5px;
597
+ border-radius: 50%;
598
+ border: 2.5px solid transparent;
599
+ border-top-color: #009B00;
600
+ -webkit-animation: pui-spin 1s linear infinite;
601
+ animation: pui-spin 1s linear infinite;
602
+ }
603
+
604
+ .pui-gradient-animation:after {
605
+ content: '';
606
+ position: absolute;
607
+ top: 10px;
608
+ left: 10px;
609
+ right: 10px;
610
+ bottom: 10px;
611
+ border-radius: 50%;
612
+ border: 2.5px solid transparent;
613
+ border-top-color: #73ABE3;
614
+ -webkit-animation: pui-spin 1.25s linear infinite;
615
+ animation: pui-spin 1.25s linear infinite;
616
+ }