forked from bgermann/cforms2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcforms-admin.css
More file actions
1594 lines (1348 loc) · 29.2 KB
/
cforms-admin.css
File metadata and controls
1594 lines (1348 loc) · 29.2 KB
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****************************************************************
menubar
*****************************************************************/
#wpadminbar #wp-admin-bar-cforms-bar {
margin-left:100px;
border-left: 1px solid #555;
}
#wpadminbar #wp-admin-bar-cforms-bar > .ab-item {
background-repeat: no-repeat;
background-image: url(images/cformsicon.png);
background-position: 10px center;
padding-left:33px;
border-left: 1px solid #333;
color:#f8f8f8;
}
#wpadminbar #wp-admin-bar-cforms-SubmitOptions.hover > a,
#wpadminbar #wp-admin-bar-cforms-bar.hover > .ab-item {
color:#333;
}
#wpadminbar #wp-admin-bar-cforms-SubmitOptions{
border-right: 1px solid #555;
}
#wpadminbar #wp-admin-bar-cforms-SubmitOptions > a{
color:#f8f8f8;
border-right: 1px solid #333;
}
#wpadminbar #wp-admin-bar-cforms-SubmitOptions.hiLightBar{
background-color: #6a3737;
background-color: rgba(255, 0, 0, 0.2);
}
#wpadminbar #wp-admin-bar-cforms-SubmitOptions.hiLightBar > a{
color: #E14040;
font-weight: bold;
}
/****************************************************************
GENERAL
*****************************************************************/
body, td {
font-family:Arial,Verdana,sans-serif;
}
.wrap {
font-size:12px;
font-family:"Lucida Grande",Arial,Verdana,"Bitstream Vera Sans",sans-serif;
overflow:hidden;
}
.corruptedsettings h3 {
margin:2em 0 0;
}
.code, code {
font-family:monospace,Consolas,Courier;
}
.icon32 {
background:transparent url(images/icons32.png) no-repeat -130px -5px;
}
#icon-cforms-error {
background-position:-11px -5px;
}
#icon-cforms-corrupted {
background-position:-72px -5px;
}
#icon-cforms-settings {
background-position:-130px -5px;
}
#icon-cforms-global {
background-position:-190px -5px;
}
#icon-cforms-tracking {
background-position:-250px -5px;
}
#icon-cforms-css {
background-position:-300px -5px;
}
#icon-cforms-help {
background-position:-360px -5px;
}
a.helptop {
font-size:8px;
line-height:1em;
float:right;
margin-top:13px;
margin-right:8px;
color:#888;
text-decoration:none;
border-bottom:1px solid #2583AD;
}
.corruptedsettings textarea {
width:750px;
font-size:10px;
}
#fixsettings{
margin-bottom:10px;
}
.form-table {
width:80%;
margin-bottom:0;
}
.form-table td {
padding:2px 10px 4px;
}
ul.ex,p.ex,.form-table td.ex {
background:url(images/attn.gif) no-repeat;
padding:2px 35px 10px 41px;
font-size:11px;
line-height:17px;
text-align:justify;
}
#cf_target {
margin-left:0;
margin-top:10px;
}
abbr,
span.abbr {
background: url(images/dots.gif) repeat-x 0 bottom;
cursor: help;
}
/****************************************************************
Textareas Resize
*****************************************************************/
div.grippie {
background:#E7423A url(images/handle.gif) no-repeat center top;
border-color:#DDD;
border-style:solid;
border-width:0 1px 1px;
cursor:s-resize;
height:6px;
overflow:hidden;
}
.resizable-textarea textarea {
display:block;
margin-bottom:0;
width:95%;
height:20%;
-moz-border-radius:4px 4px 0 0;
-khtml-border-radius:4px 4px 0 0;
-webkit-border-radius:4px 4px 0 0;
border-radius:4px 4px 0 0;
}
.ob textarea {
width:400px;
height:80px;
}
.ob textarea.errmsgbox {
height:45px;
}
/****************************************************************
buttons
*****************************************************************/
input {
line-height:1em;
padding:5px; /* content-box padding-box border-box*/
}
.jqmWindow .allbuttons,
a.allbuttons,
input.allbuttons {
color:#333;
text-shadow: white 0 1px 0;
line-height:16px;
padding:2px 8px;
font-size:12px;
overflow:visible;
cursor:pointer;
min-width:2em;
text-decoration:none;
background: #f7f7f7;
background: -moz-linear-gradient(top, #f7f7f7 1%, #e2e2e2 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f7f7f7), color-stop(100%,#e2e2e2));
background: -webkit-linear-gradient(top, #f7f7f7 1%,#e2e2e2 100%);
background: -o-linear-gradient(top, #f7f7f7 1%,#e2e2e2 100%);
background: -ms-linear-gradient(top, #f7f7f7 1%,#e2e2e2 100%);
background: linear-gradient(top, #f7f7f7 1%,#e2e2e2 100%);
border: 1px solid #cfcfcf;
}
.jqmWindow .allbuttons:focus,
a.allbuttons:focus,
input.allbuttons:focus,
.jqmWindow .allbuttons:hover,
a.allbuttons:hover,
input.allbuttons:hover {
color: black;
border-color: #999;
background: #fdfdfd;
background: -moz-linear-gradient(top, #ffffff 1%, #e6e6e6 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ffffff), color-stop(100%,#e6e6e6));
background: -webkit-linear-gradient(top, #ffffff 1%,#e6e6e6 100%);
background: -o-linear-gradient(top, #ffffff 1%,#e6e6e6 100%);
background: -ms-linear-gradient(top, #ffffff 1%,#e6e6e6 100%);
background: linear-gradient(top, #ffffff 1%,#e6e6e6 100%);
}
input.addbutton,input.dupbutton {
background: #cefcba;
background: -moz-linear-gradient(top, #cefcba 0%, #b1f591 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#cefcba), color-stop(100%,#b1f591));
background: -webkit-linear-gradient(top, #cefcba 0%,#b1f591 100%);
background: -o-linear-gradient(top, #cefcba 0%,#b1f591 100%);
background: -ms-linear-gradient(top, #cefcba 0%,#b1f591 100%);
background: linear-gradient(top, #cefcba 0%,#b1f591 100%);
border: 1px solid #9CD37E;
text-shadow: #fff 0 1px 0;
}
input.addbutton:focus, input.dupbutton:focus,
input.addbutton:hover, input.dupbutton:hover {
background: #e6f9de;
background: -moz-linear-gradient(top, #f9f9f9 0%, #b1f591 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#b1f591));
background: -webkit-linear-gradient(top, #f9f9f9 0%,#b1f591 100%);
background: -o-linear-gradient(top, #f9f9f9 0%,#b1f591 100%);
background: -ms-linear-gradient(top, #f9f9f9 0%,#b1f591 100%);
background: linear-gradient(top, #f9f9f9 0%,#b1f591 100%);
border: 1px solid #82b06a;
}
a.deleteall ,
input.deleteall {
background: #d47674;
background: -moz-linear-gradient(top, #d47674 0%, #c5515e 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d47674), color-stop(100%,#c5515e));
background: -webkit-linear-gradient(top, #d47674 0%,#c5515e 100%);
background: -o-linear-gradient(top, #d47674 0%,#c5515e 100%);
background: -ms-linear-gradient(top, #d47674 0%,#c5515e 100%);
background: linear-gradient(top, #d47674 0%,#c5515e 100%);
border: 1px solid #963F43;
text-shadow: #752C33 0 -1px 0;
color:#fafafa;
}
a.deleteall:focus,
input.deleteall:focus,
a.deleteall:hover,
input.deleteall:hover {
color:#fff;
background: #e27c7c; /* Old browsers */
background: -moz-linear-gradient(top, #e27c7c 0%, #b74d4e 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e27c7c), color-stop(100%,#b74d4e)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #e27c7c 0%,#b74d4e 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #e27c7c 0%,#b74d4e 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #e27c7c 0%,#b74d4e 100%); /* IE10+ */
background: linear-gradient(top, #e27c7c 0%,#b74d4e 100%); /* W3C */
border: 1px solid #723131;
}
.chgformbox input.chgbutton {
font-size:11px;
background: #f7f7f7;
background: -moz-linear-gradient(top, #f7f7f7 1%, #c1c1c1 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#f7f7f7), color-stop(100%,#c1c1c1));
background: -webkit-linear-gradient(top, #f7f7f7 1%,#c1c1c1 100%);
background: -o-linear-gradient(top, #f7f7f7 1%,#c1c1c1 100%);
background: -ms-linear-gradient(top, #f7f7f7 1%,#c1c1c1 100%);
background: linear-gradient(top, #f7f7f7 1%,#c1c1c1 100%);
border: 1px solid #4a7581;
}
.chgformbox input.chgbutton:focus,
.chgformbox input.chgbutton:hover {
border-color: #666;
background: #f7f7f7;
box-shadow: 0 0 2px #666;
}
.chgformbox input.chgbuttonhi {
color:#fff;
text-shadow: #000 0 -1px 0;
background: #31555e;
background: -moz-linear-gradient(top, #31555e 0%, #40727c 99%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#31555e), color-stop(99%,#40727c));
background: -webkit-linear-gradient(top, #31555e 0%,#40727c 99%);
background: -o-linear-gradient(top, #31555e 0%,#40727c 99%);
background: -ms-linear-gradient(top, #31555e 0%,#40727c 99%);
background: linear-gradient(top, #31555e 0%,#40727c 99%);
border: 1px solid #31555E;
}
input.updbutton {
}
input.formupd {
margin-top:3px;
}
* html .wrap input {
padding:6px 3px 4px;
}
*+html .wrap input {
padding:6px 3px 4px;
}
* html .wrap input.allbuttons {
padding:2px 8px;
}
* html .wrap input.updbutton {
margin-top:4px;
}
*+html .wrap input.allbuttons {
padding:2px 8px;
}
*+html .wrap input.updbutton {
margin-top:4px;
}
* html .jqmWindow input.allchk,* html input.allchk {
border:0;
background:none;
}
*+html input.allchk {
border:0;
background:none;
}
/****************************************************************
styling options
*****************************************************************/
input.stylebutton {
width:158px;
}
.flexigrid {
margin: 0 auto;
}
.flexigrid div.fbutton .add {
background: url(images/view.png) no-repeat center left;
}
.flexigrid div.fbutton .delete {
background: url(images/trash.gif) no-repeat top left;
}
.flexigrid div.fbutton .delete:hover {
background-position: 0 -23px;
}
.flexigrid div.fbutton .dl {
background: url(images/download.png) no-repeat center left;
}
/****************************************************************
form settings
*****************************************************************/
.mainoptions, .chgformbox {
margin:10px 0 0;
width:100%;
overflow:hidden;
line-height:34px;
margin:5px 0 0;
padding:0;
background: #87b9c6;
background: -moz-linear-gradient(top, #87b9c6 1%, #3d7b8e 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#87b9c6), color-stop(100%,#3d7b8e));
background: -webkit-linear-gradient(top, #87b9c6 1%,#3d7b8e 100%);
background: -o-linear-gradient(top, #87b9c6 1%,#3d7b8e 100%);
background: -ms-linear-gradient(top, #87b9c6 1%,#3d7b8e 100%);
background: linear-gradient(top, #87b9c6 1%,#3d7b8e 100%);
border: 1px solid #28758C;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
.mainoptions{
background: #f9f9f9;
background: -moz-linear-gradient(top, #f9f9f9 0%, #e8e8e8 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e8e8e8));
background: -webkit-linear-gradient(top, #f9f9f9 0%,#e8e8e8 100%);
background: -o-linear-gradient(top, #f9f9f9 0%,#e8e8e8 100%);
background: -ms-linear-gradient(top, #f9f9f9 0%,#e8e8e8 100%);
background: linear-gradient(top, #f9f9f9 0%,#e8e8e8 100%);
border: 1px solid #cfcfcf;
-moz-border-radius: 3px 3px 0 0;
-khtml-border-radius: 3px 3px 0 0;
-webkit-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}
.chgL {
white-space:nowrap;
padding:5px 4px;
}
.chgM {
text-align:center;
width:100%;
}
.mainoptions label,.mainoptions input,.chgformbox select,.chgformbox input {
vertical-align:middle!important;
}
#anchorfields {
border-top:0;
padding-top: 10px;
}
input.go {
font-size:10px;
}
* html input.go {
padding:0;
width:23px;
height:18px;
overflow:visible;
}
.bignumber {
font-size:18px;
text-shadow: white 0 1px 0;
color: #464646;
}
.navbar{
color: white;
text-shadow: #555 0 -1px 0;
font-size: 20px;
}
#pickform{
padding: 0px 0 0 2px;
height: 2em;
border: 1px solid #28758C;
}
#cforms_fname {
margin:0 5px;
padding:5px;
font:bold 10px Arial,Tahoma;
width:18em;
border:1px solid #ccc;
background:#fafafa;
}
#preset {
background:url(images/fade-butt-lightbrown.png);
}
#formpresets {
margin:0 2px 0 0;
font-size:11px;
padding:3px 2px 3px;
}
#formpresets option{
padding:0;
}
p.descPreset span {
border-left:9px solid #8cbad0;
display:block;
font-size:14px;
line-height:15px;
margin:10px 40px;
padding:0 0 0 10px;
}
.installNote {
color:#666;
font-size:11px;
margin:0;
padding:0 35px 2px 40px;
}
.descPreset {
margin:5px 0 20px;
}
p.addfieldbox {
margin:20px auto 10px;
padding:5px;
text-align:center;
width:800px;
clear:both;
}
p.addfieldbox input, #wpcontent p.addfieldbox select.addfieldno {
vertical-align:middle;
}
input.backupbutton,input.restorebutton {
font-weight:400;
}
input.addfield:focus,input.addfield {
cursor:pointer;
background:url(images/add_field.jpg) no-repeat 0 0;
border:none;
width:176px;
height:35px;
overflow:hidden;
}
input.addfield:active {
background-position:0 -35px;
border:none;
}
select.addfieldno,
input.addfieldno {
line-height:1em;
border:1px solid #aaa;
width:1.5em;
margin:0 8px 0 5px;
text-align:center;
padding:2px 0;
background:#fff;
color:#111;
font-size:11px;
font-family:tahoma;
}
select.addfieldno {
height:19px;
padding:0;
width:4em;
text-align:center;
}
input.addfieldno:active {
background:#aaa!important;
}
input.addfieldno:focus {
background:#fff!important;
}
#cformswarning {
background:url(images/attn.gif) no-repeat;
padding:2px 35px 10px 41px;
font-size:11px;
line-height:17px;
color:#b3424e;
letter-spacing:2px;
text-align:left;
}
/****************************************************************
HIDE blocks
*****************************************************************/
.blindminus,.blindplus {
overflow:hidden;
width:20px;
height:34px;
margin:0 6px 0 0;
display:block;
float:left;
background:transparent url(images/menu-bits.gif) no-repeat scroll left 0px;
border:none;
text-decoration:none;
}
.blindminus {
background-position:0 -34px;
}
#o0,#o1,#o2,#o3,#o4,#o5,#o6,#o7,#o8,#o9,#o10,#o11,#o12,#o13,#o14,#o15,#o16,#o17,#o18,#o19,#o20,#o20,#o21,#o22,#o23,#o24,#o25,#o26,#o27,#o28,#o29,#o30 {
padding-bottom:10px;
}
/****************************************************************
Docking Boxes core CSS: YOU MUST NOT CHANGE OR OVERRIDE THESE
*****************************************************************/
.tableheader {
margin:25px auto 2px;
width:790px;
overflow:hidden;
}
.tableheader div {
vertical-align:bottom;
text-align:center;
}
.tableheader div div {
width:41px;
font-family:Arial, Tahoma;
font-size:8px;
color:#888;
float:left;
}
.tableheader div div.fh1,
.tableheader div div.fh2 {
font-size:11px;
text-align:left;
width:300px;
}
.tableheader div div.fh2 {
width:219px;
padding-left: 45px;
}
.tableheader div div img{
cursor: help;
}
.itemContent a {
border:0;
}
#wpcontent select.fieldtype, .itemContent input.inpfld {
font:normal 11px Tahoma;
width:300px;
background:#fff;
border:0;
padding:5px;
display:inline-box;
-moz-box-sizing: border-box!important;
-webkit-box-sizing: border-box!important;
-ms-box-sizing: border-box!important; /* ie8 only */
box-sizing: border-box!important;
}
#pickform:focus,
#cforms_fname:focus,
#wpcontent select.fieldtype:focus, .itemContent input.inpfld:focus {
border-left:2px solid #2244ED;
}
#wpcontent select.fieldtype {
font:normal 10px Arial;
height:22px;
padding:5px 0 1px;
}
.itemContent select.fieldtype,
#wpcontent .itemContent select.fieldtype {
width:190px;
margin-left:3px;
}
.wrench,.noxbutton,.xbutton {
border:0 none !important;
height:16px;
width:16px;
overflow:hidden;
border:none;
margin-right:8px;
cursor:pointer;
}
.noxbutton {
background:url(images/x_grey.gif) no-repeat;
cursor:not-allowed;
}
.xbutton {
background:url(images/x.png) no-repeat 0 0;
background-color:transparent!important;
margin-left:2px;
margin-top:3px;
}
.wrench {
background:url(images/wrench.png) no-repeat 0 0;
background-color:transparent!important;
margin-right:2px;
}
input.wrench:focus, input.wrench:focus,
input.altx:focus, input.xbutton:focus,
input.wrench:hover, input.wrench:active,
input.altx:hover, input.xbutton:hover,
input.altx:active, input.xbutton:active {
background-position:0 -20px!important;
}
option.disabled {
background-color:#f0f0f0;
color:#999;
}
option.disabled.title {
color:#666666;
background-color:#ccc;
}
.chkno, input[type="checkbox"].fieldisreq, input[type="checkbox"].fieldisemail, input[type="checkbox"].fielddisabled, input[type="checkbox"].fieldreadonly, input[type="checkbox"].fieldclear {
margin:0 9px 0 19px;
width:13px;
height:13px;
padding:0;
}
input[type="checkbox"]:focus, input[type="radio"]:focus {
outline: 1px solid #2244ED;
}
.chkno {
vertical-align:top;
}
.alternate, .rowalt, .rowalt input[type="checkbox"].fieldisreq, .rowalt input[type="checkbox"].fieldisemail, .rowalt input[type="checkbox"].fielddisabled, .rowalt input[type="checkbox"].fieldreadonly, .rowalt input[type="checkbox"].fieldclear {
background-color:#eee!important;
}
.itemContent span,.itemContent strong,.itemContent a,.itemContent img,.itemContent input,.itemContent select {
vertical-align:middle!important;
}
#dragHelper {
background:#fce0cf!important;
}
.itemContent {
vertical-align:top;
overflow:hidden;
}
.groupWrapper {
clear:both;
width:790px;
margin:0 auto;
}
.groupItem {
margin:1px 0;
padding:3px 0;
background:#ddd;
}
* html .groupItem {
padding:2px 0;
}
*+html .groupItem {
padding:2px 0;
}
.altmove {
}
.groupItem .itemHeader {
padding:4px;
cursor:move;
background:url(images/move.png) no-repeat top center;
font:normal 8px Tahoma;
}
.groupWrapper p {
height:1px;
overflow:hidden;
margin:0;
padding:0;
}
fieldset.cformsoptions {
}
.cf-content {
display:none;
background-color: whiteSmoke;
padding:0 5px;
margin-bottom: 5px;
border: 1px solid #DFDFDF;
-moz-border-radius: 0 0 3px 3px;
-khtml-border-radius: 0 0 3px 3px;
-webkit-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
}
.cflegend {
cursor:pointer;
font-size:15px;
text-shadow: white 0 1px 0;
color:#464646;
overflow:hidden;
line-height:34px;
margin:5px 0 0;
padding:0;
background-color: #F1F1F1;
background-image: -ms-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: -moz-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: -o-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: -webkit-gradient(linear,left top,left bottom,from(#F9F9F9),to(#ECECEC));
background-image: -webkit-linear-gradient(top,#F9F9F9,#ECECEC);
background-image: linear-gradient(top,#F9F9F9,#ECECEC);
border: 1px solid #eee;
border-bottom: none;
-moz-border-radius: 3px 3px 0 0;
-khtml-border-radius: 3px 3px 0 0;
-webkit-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}
.op-closed {
border: 1px solid #eee;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius:3px;
}
tr.obSEP {
font-size:1px;
line-height:10px;
height:10px;
background:url(images/td-sep.gif) repeat-x 0 center!important;
}
tr.ob {
font-size:11px;
}
.form-table tr.space20 td {
padding-top:20px;
}
.form-table tr.space15 td {
padding-top:15px;
}
.ob input[type=text], .ob input[type=text]:focus,
.ob textarea:focus, .ob textarea {
font-size:11px;
padding:2px 3px 3px;
border:1px solid #ccc;
-moz-border-radius: 0;
-khtml-border-radius: 0;
-webkit-border-radius: 0;
border-radius:0;
}
.ob input[type=text]:focus,
.ob textarea:focus {
border:1px solid #aaa;
border-left:2px solid #2244ED;
outline:0;
}
.ob input[type=text] {
width:320px;
line-height:1em;
}
.ob input[type=text].cap {
width:6em;
margin-right:10px;
}
.ob input#cforms_rsskeysnew {
width:auto;
padding-left:1em;
padding-right:1em;
}
.ob input#cforms_resetAutoCMsg,
.ob input#cforms_resetAdminMsg{
font-weight:bold;
width:auto;
padding-left:1em;
padding-right:1em;
-moz-border-radius: 2px;
-khtml-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius:2px;
}
* html .ob input {
padding-top:2px;
padding-bottom:4px;
}
.obL label {
line-height:1.3em;
}
.obL {
text-align:right;
width:30%;
margin-right:10px;
}
.obR table td {
text-align:left;
padding:0;
margin:0;
vertical-align:top;
}
.obR label,.obR input {
padding-left:3px;
line-height:1.3em;
vertical-align:middle;
}
input#cforms_fromemail {
background:#fdc4c4;
}
input#cforms_maxentries {
width:4em;
margin-right:3px;
}
input#cforms_endtime,input#cforms_starttime {
width:5em;
margin-right:3px;
text-align:center;
}
input#cforms_startdate,input#cforms_enddate {
width:7em;
margin-right:3px;
text-align:center;
}
input#cforms_space {
width:4em;
text-align:center;
}
input#cforms_rssfields,
input#cforms_mp_backtext,input#cforms_mp_resettext {
width:15em;
}
.ob input.allchk {
width:auto;
}
.ob input.allchk:focus {
outline: 1px solid #2244ED;
}
.inexclude td.obL{
vertical-align:top;
}
select#emailprio,
select#cforms_rsscount{
width:5em;
text-align:center;
}
select#cforms_rssfields{
width:330px;
height:8em;
overflow:auto;
display:block;
}
.sub{
text-align:right;
margin:5px 6px 2px;
}
/****************************************************************
GLOBAL SETTINGS
*****************************************************************/
.infotxt table.hf td {
padding:0 10px;
}
/****************************************************************
STYLING PAGE
*****************************************************************/
#selectcss .op-closed {
-moz-border-radius: 3px 3px 0 0;
-khtml-border-radius: 3px 3px 0 0;
-webkit-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;