-
Notifications
You must be signed in to change notification settings - Fork 2
/
ecommerce.css
724 lines (609 loc) · 10.7 KB
/
ecommerce.css
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
.hide {
display: none;
}
/* admin navigation */
#ecnav {
margin: 0 17px 0 0;
height: 31px;
border-bottom: 2px solid #ccc;
}
#ecnav ul {}
#ecnav li {
display: inline;
list-style: none;
border: none;
}
#ecnav a:link,
#ecnav a:visited {
float: left;
margin-right: 4px;
padding: 8px 10px 7px;
font-size: 14px;
line-height: 16px;
font-weight: normal;
text-decoration: none !important;
color: #222;
background-color: #eee;
}
#ecnav a:hover {
color: #000;
background-color: #999;
border-color: #777;
}
#ecnav a:link.current,
#ecnav a:visited.current {
color: #123;
background: #6ad;
border-color: #6ad;
font-weight: bold;
text-decoration: none;
}
#ecnav .right {
float: right;
}
/* dashboard */
#log {
margin-top: 20px;
}
#log table {
width: 100%;
border-collapse: collapse;
border-top: 1px solid #ddd;
}
#log td {
padding: 10px;
margin: 1px;
border-bottom: 1px solid #ddd;
}
#log td.date {
color: #112233;
}
#log span.at {
font-size: .94em;
font-style: italic;
color: #4F4F4F;
}
/* index listings */
#index table {
font-family: arial;
border-bottom: 2px solid #BFBFBF;
width: 100%;
border-collapse: collapse;
border-spacing: 1px;
}
#index th {
background-color: #EEEEEE;
border-bottom: 2px solid #BFBFBF;
color: #000;
text-align: left;
padding: 10px 7px 5px 7px;
font-size: 1.2em;
}
#index td {
padding: 8px;
}
#index .odd td, #index .even td {
border-bottom: 1px solid #DFDFDF;
}
#index a.edit {
background: url(/frog/plugins/ecommerce/images/edit_16x16.gif) no-repeat;
width: 16px;
height: 16px;
display: block;
text-indent: -999px;
float: left;
}
#index a.file {
background: url(/frog/plugins/ecommerce/images/file_16x16.gif) no-repeat;
width: 16px;
height: 16px;
display: block;
text-indent: -999px;
float: left;
}
#index a.delete {
background: url(/frog/plugins/ecommerce/images/delete_16x16.gif) no-repeat;
width: 16px;
height: 16px;
display: block;
text-indent: -999px;
float: left;
}
#index tr.fulfilled {
background-color: #CFFFD1;
}
#orders th {
text-align: center;
}
#orders td {
text-align: center;
border-bottom: 1px solid #BFBFBF;
}
#orders .total {
}
/* form styles */
.ec-form-area {
background-color: #eee;
padding: 20px;
padding-top: 15px;
padding-bottom: 10px;
border-top: 1px solid #BFBFBF;
border-bottom: 1px solid #BFBFBF;
font-family: arial;
margin: 0;
}
.ec-form-area h3 {
font-size: 100%;
margin-bottom: 0;
}
.ec-form-area p {
margin: 0;
padding: 15px 0;
border-bottom: 1px solid #DFDFDF;
}
.ec-form-area p.normal {
border-bottom: none;
padding: 5px 0;
}
.ec-form-area p.last {
border: none;
}
.ec-form-area label {
font-weight: bold;
float: left;
width: 120px;
color: #000;
padding-top: 5px;
font-size: 1.1em;
}
.ec-form-area .textbox {
padding: 5px;
}
.ec-form-area .textarea {
font-family: arial !important;
padding: 5px !important;
}
.ec-form-area .error-with-field .error {
color: #f00;
display: block;
padding: 2px;
padding-top: 0;
}
.ec-form-area fieldset {
border: 1px solid #BFBFBF;
margin: 20px 0;
padding: 10px;
background-color: #fff !important;
}
.ec-form-area legend {
font-size: 1.2em;
color: #000;
font-weight: bold;
}
/* form help box */
.echelp {
padding: 15px;
border: 5px solid #ccc;
background-color: #fff;
}
.echelp h3 {
font-size: 1.1em;
}
.echelp p {
border: none !important;
margin: 10px 0;
padding: 0;
}
/* product images */
#product_images {
width: 775px;
text-align: center;
margin-top: 10px;
}
#product_images div {
text-align: center;
width: 116px;
float: left;
}
#product_images a {
text-decoration: none;
}
#product_images .sorting img {
margin: 4px;
padding: 4px;
border: 1px solid #ccc;
cursor: move;
}
#product_images .sorting img:hover {
border: 1px solid #9F9F9F;
}
#product_images a.delete {
background: url(/frog/plugins/ecommerce/images/trash.gif) no-repeat 0 2px;
padding-left: 15px;
font-size: .82em;
}
/* buttons */
.clear { /* generic container (i.e. div) for floating buttons */
overflow: hidden;
width: 100%;
margin-bottom: 10px;
border: none !important;
}
a.button {
background: transparent url('/frog/plugins/ecommerce/images/bg_button_a.gif') no-repeat scroll top right;
color: #444;
display: block;
float: left;
font: normal 12px arial, sans-serif;
height: 24px;
margin-right: 6px;
padding-right: 18px; /* sliding doors padding */
text-decoration: none;
}
a.button span {
background: transparent url('/frog/plugins/ecommerce/images/bg_button_span.gif') no-repeat;
display: block;
line-height: 14px;
padding: 5px 0 5px 18px;
}
a.button:active {
background-position: bottom right;
color: #000;
outline: none; /* hide dotted outline in Firefox */
}
a.button:active span {
background-position: bottom left;
padding: 6px 0 4px 18px; /* push text down 1px */
}
/* upload */
#upload .files {
margin-left: 25px;
color: #4F4F4F;
}
/* product variants */
#product_variants {
margin-left: 7px;
}
#product_variants h3 {
font-size: 1.1em;
color: #186398;
}
#product_variants table {
border-collapse: collapse;
font-size: .93em;
width: 450px;
border-bottom: 1px solid #AFAFAF;
border-top: 1px solid #AFAFAF;
}
#product_variants th {
background: #ddd;
color: #333;
padding: 3px 6px;
font-weight: normal;
}
#product_variants td {
padding: 3px;
text-align: center;
}
#product_variants .form {
background-color: #F1F1F1;
border-top: 1px solid #DFDFDF;
}
#product_variants .form p {
padding: 8px 10px;
}
#product_variants label {
font-size: 1em;
}
#product_variants .drag_handle {
cursor: move;
}
#product_variants .tools {
left: -50px;
top: -2px;
position: absolute;
background-color: #fff;
padding: 2px 0 2px 3px;
border-top: 1px solid #CFCFCF;
border-left: 1px solid #CFCFCF;
border-bottom: 1px solid #CFCFCF;
}
#product_variants .tools a {
text-decoration: none;
font-size: .82em;
}
/* product files */
#product_files {
margin-left: 7px;
}
#product_files h3 {
font-size: 1.1em;
color: #186398;
}
#product_files table {
border-collapse: collapse;
font-size: .93em;
width: 450px;
border-bottom: 1px solid #AFAFAF;
border-top: 1px solid #AFAFAF;
}
#product_files th {
background: #ddd;
color: #333;
padding: 3px 6px;
font-weight: normal;
}
#product_files td {
padding: 3px;
text-align: center;
}
#product_files .form {
background-color: #F1F1F1;
border-top: 1px solid #DFDFDF;
}
#product_files .form p {
padding: 8px 10px;
}
#product_files label {
font-size: 1em;
}
#product_files .drag_handle {
cursor: move;
}
#product_files .tools {
left: -50px;
top: -2px;
position: absolute;
background-color: #fff;
padding: 2px 0 2px 3px;
border-top: 1px solid #CFCFCF;
border-left: 1px solid #CFCFCF;
border-bottom: 1px solid #CFCFCF;
}
#product_files .tools a {
text-decoration: none;
font-size: .82em;
}
/* product videos */
#product_videos {
margin-left: 7px;
}
#product_videos h3 {
font-size: 1.1em;
color: #186398;
}
#product_videos table {
border-collapse: collapse;
font-size: .93em;
width: 450px;
border-bottom: 1px solid #AFAFAF;
border-top: 1px solid #AFAFAF;
}
#product_videos th {
background: #ddd;
color: #333;
padding: 3px 6px;
font-weight: normal;
}
#product_videos td {
padding: 3px;
text-align: center;
}
#product_videos .form {
background-color: #F1F1F1;
border-top: 1px solid #DFDFDF;
}
#product_videos .form p {
padding: 8px 10px;
}
#product_videos label {
font-size: 1em;
}
#product_videos .drag_handle {
cursor: move;
}
#product_videos .tools {
left: -50px;
top: -2px;
position: absolute;
background-color: #fff;
padding: 2px 0 2px 3px;
border-top: 1px solid #CFCFCF;
border-left: 1px solid #CFCFCF;
border-bottom: 1px solid #CFCFCF;
}
#product_videos .tools a {
text-decoration: none;
font-size: .82em;
}
/* collection products */
#collection_products {
margin-left: 7px;
}
#collection_products h3 {
font-size: 1.1em;
color: #186398;
}
#collection_products .drag_handle {
cursor: move;
}
#collection_products .tools {
left: -30px;
top: 0;
position: absolute;
background-color: #fff;
padding: 2px 10px 2px 3px;
border-top: 1px solid #CFCFCF;
border-left: 1px solid #CFCFCF;
border-bottom: 1px solid #CFCFCF;
}
#collection_products .tools a {
text-decoration: none;
font-size: .82em;
}
#product-select ul {
margin: 10px 0 10px 10px;
}
#product-select li {
margin-bottom: 5px;
}
/* ajax tools */
#vspinner, #fspinner, #vispinner, #cpspinner {
float: right;
width: 15px;
height: 15px;
}
/* tagger */
div.tagger{
width: 50em;
cursor: text;
overflow: hidden;
border: 1px solid #DFDFDF;
padding: 5px;
}
div.tagger span.tag{
display: block;
float: left;
background: #eee;
border: 1px solid #CFCFCF;
padding: 4px 5px;
margin: 2px;
color: #345;
}
div.tagger span.editing{
background: #FEFF9F;
}
div.tagger input{
border: none;
display: block;
margin: 2px;
padding: 4px 5px;
float: left;
}
div.tagger span input{
margin: 0;
padding: 0;
background: none;
}
/* pagination */
#pagination {
font-size: 1.1em;
}
#pagination b {
background: #f8f8f8;
border: 1px solid #ebebeb;
padding: 2px 6px 3px 6px;
margin: 0 2px 0 0;
color: #000000;
font-weight: bold;
}
#pagination a {
background: #f8f8f8;
border: 1px solid #ebebeb;
padding: 3px 6px 3px 6px;
margin: 0 2px 0 0;
text-decoration: none;
}
#pagination a:hover {
background: #ebebeb;
border: 1px solid #c6c6c6;
}
/* search */
#search {
float: right;
width: 250px;
height: 25px;
margin-bottom: 8px;
}
#product-search {
float: none;
width: auto;
height: auto;
margin-bottom: 0;
}
#search input.button {
font-size: .93em;
padding: 3px 5px;
}
#product-search input.button {
font-size: .87em;
padding: 1px 3px;
}
#search input.field, #product-search input.field {
border: 1px solid #BFBFBF;
padding: 3px;
}
/* order detail */
.ec-order {
background-color: #eee;
padding: 20px;
padding-top: 15px;
padding-bottom: 10px;
border-top: 1px solid #BFBFBF;
border-bottom: 1px solid #BFBFBF;
font-family: arial;
margin: 0;
}
.ec-order h3 {
font-size: 100%;
margin-bottom: 0;
}
.ec-order p {
margin: 0;
padding: 8px 0;
border-bottom: 1px solid #DFDFDF;
clear: both;
}
.ec-order label {
width: 95px;
display: block;
float: left;
font-weight: bold;
color: #2F2F2F;
}
.ec-order p.last {
border: none;
}
.ec-order fieldset {
border: 1px solid #BFBFBF;
margin: 10px 0;
padding: 10px;
background-color: #fff !important;
}
.ec-order legend {
font-size: 1.2em;
color: #000;
font-weight: bold;
}
#billing_info {
float: left;
width: 48%;
}
#shipping_info {
float: right;
width: 48%;
}
#payment_info {
float: left;
width: 48%;
}
#item_info {
float: right;
width: 48%;
}
#items table {
border-collapse: collapse;
font-size: .93em;
border-bottom: 1px solid #AFAFAF;
border-top: 1px solid #AFAFAF;
}
#items th {
background: #ddd;
color: #333;
padding: 3px 6px;
font-weight: normal;
text-align: left;
}
#items td {
padding: 3px;
}