forked from RoyBellingan/Seishonotasuke
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext-all-access.css
executable file
·7827 lines (7072 loc) · 242 KB
/
ext-all-access.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
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
/* line 3, ../sass/ext-all-access.scss */
body {
background: #000;
}
/**
* Toolbar buttons
*/
/**
* @class Ext.form.*
*/
/**
* @class Ext.form.Field
*/
/**
* @class Ext.form.Textarea
*/
/**
* @class Ext.form.Label
*/
/**
* @class Ext.form.CheckBox
*/
/**
* @class Ext.form.Radio
*/
/**
* Error messages
*/
/**
* Trigger Field
*/
/**
* Fieldsets
*/
/* line 69, ../themes/stylesheets/ext4/default/core/_reset.scss */
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3,
h4, h5, h6, pre, code, form, fieldset, legend,
input, textarea, p, blockquote, th, td {
margin: 0;
padding: 0;
}
/* line 74, ../themes/stylesheets/ext4/default/core/_reset.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 79, ../themes/stylesheets/ext4/default/core/_reset.scss */
fieldset, img {
border: 0;
}
/* line 84, ../themes/stylesheets/ext4/default/core/_reset.scss */
address, caption, cite, code,
dfn, em, strong, th, var {
font-style: normal;
font-weight: normal;
}
/* line 89, ../themes/stylesheets/ext4/default/core/_reset.scss */
li {
list-style: none;
}
/* line 93, ../themes/stylesheets/ext4/default/core/_reset.scss */
caption, th {
text-align: left;
}
/* line 97, ../themes/stylesheets/ext4/default/core/_reset.scss */
h1, h2, h3, h4, h5, h6 {
font-size: 100%;
}
/* line 102, ../themes/stylesheets/ext4/default/core/_reset.scss */
q:before,
q:after {
content: "";
}
/* line 106, ../themes/stylesheets/ext4/default/core/_reset.scss */
abbr, acronym {
border: 0;
font-variant: normal;
}
/* line 111, ../themes/stylesheets/ext4/default/core/_reset.scss */
sup {
vertical-align: text-top;
}
/* line 115, ../themes/stylesheets/ext4/default/core/_reset.scss */
sub {
vertical-align: text-bottom;
}
/* line 119, ../themes/stylesheets/ext4/default/core/_reset.scss */
input, textarea, select {
font-family: inherit;
font-size: inherit;
font-weight: inherit;
}
/* line 125, ../themes/stylesheets/ext4/default/core/_reset.scss */
*:focus {
outline: none;
}
/* line 131, ../themes/stylesheets/ext4/default/core/_reset.scss */
.x-border-box .x-reset,
.x-border-box .x-reset * {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
/* line 1, ../themes/stylesheets/ext4/default/core/_core.scss */
body {
color: white;
font-size: 15px;
font-family: tahoma, arial, verdana, sans-serif;
}
/* line 7, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-clear {
overflow: hidden;
clear: both;
height: 0;
width: 0;
font-size: 0;
line-height: 0;
}
/* line 16, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-layer {
position: absolute;
overflow: hidden;
zoom: 1;
}
/* line 22, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-hide-display {
display: none !important;
}
/* line 26, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-hide-visibility {
visibility: hidden !important;
}
/* line 31, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-hidden,
.x-hide-offsets {
display: block !important;
position: absolute !important;
left: -10000px !important;
top: -10000px !important;
}
/* line 38, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-hide-nosize {
height: 0 !important;
width: 0 !important;
}
/* line 44, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-css-shadow {
position: absolute;
background-color: black;
}
/* line 49, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-ie-shadow {
background-color: #777;
display: none;
position: absolute;
overflow: hidden;
zoom: 1;
}
/* line 57, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow {
display: none;
position: absolute;
overflow: hidden;
}
/* line 63, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow * {
overflow: hidden;
}
/* line 67, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow * {
padding: 0;
border: 0;
margin: 0;
clear: none;
zoom: 1;
}
/* top bottom */
/* line 77, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xstc,
.x-frame-shadow .xsbc {
height: 6px;
float: left;
}
/* line 82, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsc {
width: 100%;
}
/* line 86, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsml {
background: transparent repeat-y 0 0;
}
/* line 90, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsmr {
background: transparent repeat-y -6px 0;
}
/* line 94, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xstl {
background: transparent no-repeat 0 0;
}
/* line 98, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xstc {
background: transparent repeat-x 0 -30px;
}
/* line 102, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xstr {
background: transparent repeat-x 0 -18px;
}
/* line 106, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsbl {
background: transparent no-repeat 0 -12px;
}
/* line 110, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsbc {
background: transparent repeat-x 0 -36px;
}
/* line 114, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsbr {
background: transparent repeat-x 0 -6px;
}
/* line 122, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xstl,
.x-frame-shadow .xstc,
.x-frame-shadow .xstr,
.x-frame-shadow .xsbl,
.x-frame-shadow .xsbc,
.x-frame-shadow .xsbr {
width: 6px;
height: 6px;
float: left;
background-image: url('../themes/images/access/shared/shadow.png');
}
/* line 130, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsml,
.x-frame-shadow .xsmr {
width: 6px;
float: left;
height: 100%;
background-image: url('../themes/images/access/shared/shadow-lr.png');
}
/* line 137, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xsmc {
float: left;
height: 100%;
background-image: url('../themes/images/access/shared/shadow-c.png');
}
/* line 144, ../themes/stylesheets/ext4/default/core/_core.scss */
.x-frame-shadow .xst,
.x-frame-shadow .xsb {
height: 6px;
overflow: hidden;
width: 100%;
}
/* line 1, ../themes/stylesheets/ext4/default/util/_focus.scss */
.x-focus-element {
position: absolute;
top: -10px;
left: -10px;
width: 0px;
height: 0px;
}
/* line 9, ../themes/stylesheets/ext4/default/util/_focus.scss */
.x-focus-frame {
position: absolute;
left: 0px;
top: 0px;
z-index: 100000000;
width: 0px;
height: 0px;
}
/* line 21, ../themes/stylesheets/ext4/default/util/_focus.scss */
.x-focus-frame-top,
.x-focus-frame-bottom,
.x-focus-frame-left,
.x-focus-frame-right {
position: absolute;
top: 0px;
left: 0px;
}
/* line 28, ../themes/stylesheets/ext4/default/util/_focus.scss */
.x-focus-frame-top,
.x-focus-frame-bottom {
border-top: solid 2px #15428b;
height: 2px;
}
/* line 34, ../themes/stylesheets/ext4/default/util/_focus.scss */
.x-focus-frame-left,
.x-focus-frame-right {
border-left: solid 2px #15428b;
width: 2px;
}
/**
* @class Ext.Button
* Used to create the base structure of an Ext.Button
*/
/**
* @class Ext.menu.*
*/
/**
* @class Ext.Panel
* Used to create the base structure of an Ext.Panel
*/
/**
* @class Ext.TabBar
*
*/
/**
* @class Ext.Tab
*/
/**
* @class Ext.LoadMask
* Component used to mask a component
*/
/* line 5, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
.x-mask {
z-index: 100;
position: absolute;
top: 0;
left: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
opacity: 0.5;
width: 100%;
height: 100%;
zoom: 1;
background: #cccccc;
}
/* line 21, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
.x-mask-msg {
z-index: 20001;
position: absolute;
top: 0;
left: 0;
padding: 2px;
border: 1px solid;
border-color: #222233;
background-color: #3f4757;
}
/* line 40, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
.x-mask-msg div {
padding: 5px 10px;
cursor: wait;
border: 1px solid #555566;
background-color: #232d38;
color: white;
font: normal 14px tahoma, arial, verdana, sans-serif;
}
/* line 62, ../themes/stylesheets/ext4/default/widgets/_loadmask.scss */
.x-nlg .x-mask-msg {
background-image: url('../themes/images/access/mask/mask-bg.gif');
}
/**
* W3C Suggested Default style sheet for HTML 4
* http://www.w3.org/TR/CSS21/sample.html
*/
/* line 2, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
.x-boundlist {
border-width: 1px;
border-style: solid;
border-color: #223253;
background: white;
}
/* line 9, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
.x-boundlist-item {
padding: 2px;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: ignore;
cursor: default;
cursor: pointer;
cursor: hand;
position: relative;
/*allow hover in IE on empty items*/
border-width: 1px;
border-style: dotted;
border-color: white;
}
/* line 23, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
.x-boundlist-selected {
background: #454c60;
border-color: #242838;
}
/* line 28, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
.x-boundlist-item-over {
background: #4f586f;
border-color: #2e3347;
}
/* line 33, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
.x-boundlist-floating {
border-top-width: 0;
}
/* line 37, ../themes/stylesheets/ext4/default/widgets/_boundlist.scss */
.x-boundlist-above {
border-top-width: 1px;
border-bottom-width: 1px;
}
/* line 6, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn {
display: inline-block;
zoom: 1;
*display: inline;
position: relative;
cursor: pointer;
cursor: hand;
white-space: nowrap;
vertical-align: middle;
background-repeat: no-repeat;
}
/* line 19, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn * {
cursor: pointer;
cursor: hand;
}
/* line 26, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn em {
background-repeat: no-repeat;
}
/* line 30, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn button {
overflow: visible;
margin: 0;
padding: 0;
border: 0;
width: auto;
background: transparent;
background-repeat: no-repeat;
text-align: center;
white-space: nowrap;
outline: 0 none;
}
/* line 41, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn button::-moz-focus-inner {
border: 0;
padding: 0;
}
/* line 50, ../themes/stylesheets/ext4/default/widgets/_button.scss */
* html .x-ie .x-btn button {
width: 1px;
}
/* line 57, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-strict .x-ie6 .x-btn .x-frame-mc,
.x-strict .x-ie7 .x-btn .x-frame-mc {
height: 100%;
}
/* line 66, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-nbr .x-btn .x-frame-mc {
vertical-align: middle;
white-space: nowrap;
text-align: center;
cursor: pointer;
}
/* line 76, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-text-icon-right button {
background-position: left center;
}
/* line 80, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-text-icon-right button {
background-position: right center;
}
/* line 84, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-text-icon-top button {
background-position: center top;
}
/* line 88, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-text-icon-bottom button {
background-position: center bottom;
}
/* line 92, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-arrow-right {
background: transparent no-repeat right center;
padding-right: 15px;
}
/* line 97, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-arrow-bottom {
background: transparent no-repeat center bottom;
padding-bottom: 15px;
}
/* line 102, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-arrow {
background-image: url('../themes/images/access/button/arrow.gif');
display: block;
}
/* line 110, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-split-right,
.x-btn-over .x-btn-split-right {
background: transparent url('../themes/images/access/button/s-arrow.gif') no-repeat right center;
padding-right: 18px;
}
/* line 116, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-split-bottom,
.x-btn-over .x-btn-split-bottom {
background: transparent url('../themes/images/access/button/s-arrow-b.gif') no-repeat center bottom;
padding-bottom: 18px;
}
/* line 121, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-toolbar .x-btn-split-right {
background-image: url('../themes/images/access/button/s-arrow-noline.gif');
}
/* line 125, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-toolbar .x-btn-split-bottom {
background-image: url('../themes/images/access/button/s-arrow-b-noline.gif');
}
/* line 129, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-split {
display: block;
}
/* line 134, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-item-disabled,
.x-item-disabled * {
cursor: default;
color: gray !important;
}
/* line 140, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-cycle-fixed-width button {
text-align: inherit;
}
/* line 144, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-over .x-btn-split-right {
background-image: url('../themes/images/access/button/s-arrow-o.gif');
}
/* line 145, ../themes/stylesheets/ext4/default/widgets/_button.scss */
.x-btn-over .x-btn-split-bottom {
background-image: url('../themes/images/access/button/s-arrow-bo.gif');
}
/* line 54, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small {
border-color: #06070a;
}
/* line 53, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-btn-default-small {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
padding: 2px 2px 2px 2px;
border-width: 1px;
border-style: solid;
background-color: #2a3142;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25));
background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25);
background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25);
}
/* line 86, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nlg .x-btn-default-small-mc {
background-image: url('../themes/images/access/btn/btn-default-small-bg.gif');
background-color: #2a3142;
}
/* line 99, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-small {
padding: 0;
border-width: 0;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-o-border-radius: 0px;
-ms-border-radius: 0px;
-khtml-border-radius: 0px;
border-radius: 0px;
background-color: transparent;
background-position: 1100303px 1100303px;
}
/* line 135, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-small-tl,
.x-nbr .x-btn-default-small-bl,
.x-nbr .x-btn-default-small-tr,
.x-nbr .x-btn-default-small-br,
.x-nbr .x-btn-default-small-tc,
.x-nbr .x-btn-default-small-bc {
background-image: url('../themes/images/access/btn/btn-default-small-corners.gif');
}
/* line 142, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-small-ml,
.x-nbr .x-btn-default-small-mr {
background-image: url('../themes/images/access/btn/btn-default-small-sides.gif');
background-position: 0 0;
}
/* line 170, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-small-mc {
padding: 0 0 0 0;
}
/* line 60, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small button {
font-size: 14px;
font-weight: normal;
font-family: tahoma, arial, verdana, sans-serif;
color: white;
background-repeat: no-repeat;
}
/* line 68, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-disabled em {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
opacity: 0.4;
}
/* line 73, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-icon button,
.x-btn-default-small-noicon button {
height: 16px;
}
/* line 79, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-icon button {
width: 16px !important;
}
/* line 85, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-icon-text-left button {
height: 16px;
padding-left: 20px;
}
/* line 92, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-icon-text-right button {
height: 16px;
padding-right: 20px;
}
/* line 99, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-icon-text-top button {
padding-top: 20px;
}
/* line 105, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-icon-text-bottom button {
padding-bottom: 20px;
}
/* line 110, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-over {
border-color: #947518;
background-color: #ed9200;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b));
background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
}
/* line 139, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-focus {
border-color: #947518;
background-color: #ed9200;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b));
background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
}
/* line 169, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-menu-active,
.x-btn-default-small-pressed {
border-color: #c9750f;
background-color: #da7b19;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00));
background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00);
background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00);
}
/* line 198, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-small-disabled {
border-color: #565656;
background-color: #6b6b6b;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b6b6b), color-stop(48%, #656565), color-stop(52%, #4e4e4e), color-stop(100%, #535353));
background-image: -moz-linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353);
background-image: linear-gradient(top, #6b6b6b, #656565 48%, #4e4e4e 52%, #535353);
}
/* line 235, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-over .x-frame-tl,
.x-nbr .x-btn-default-small-over .x-frame-bl,
.x-nbr .x-btn-default-small-over .x-frame-tr,
.x-nbr .x-btn-default-small-over .x-frame-br,
.x-nbr .x-btn-default-small-over .x-frame-tc,
.x-nbr .x-btn-default-small-over .x-frame-bc {
background-image: url('../themes/images/access/btn/btn-default-small-over-corners.gif');
}
/* line 239, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-over .x-frame-ml,
.x-nbr .x-btn-default-small-over .x-frame-mr {
background-image: url('../themes/images/access/btn/btn-default-small-over-sides.gif');
}
/* line 242, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-over .x-frame-mc {
background-color: #ed9200;
background-image: url('../themes/images/access/btn/btn-default-small-over-bg.gif');
}
/* line 256, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-focus .x-frame-tl,
.x-nbr .x-btn-default-small-focus .x-frame-bl,
.x-nbr .x-btn-default-small-focus .x-frame-tr,
.x-nbr .x-btn-default-small-focus .x-frame-br,
.x-nbr .x-btn-default-small-focus .x-frame-tc,
.x-nbr .x-btn-default-small-focus .x-frame-bc {
background-image: url('../themes/images/access/btn/btn-default-small-focus-corners.gif');
}
/* line 260, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-focus .x-frame-ml,
.x-nbr .x-btn-default-small-focus .x-frame-mr {
background-image: url('../themes/images/access/btn/btn-default-small-focus-sides.gif');
}
/* line 263, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-focus .x-frame-mc {
background-color: #ed9200;
background-image: url('../themes/images/access/btn/btn-default-small-focus-bg.gif');
}
/* line 278, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-menu-active .x-frame-tl,
.x-nbr .x-btn-default-small-menu-active .x-frame-bl,
.x-nbr .x-btn-default-small-menu-active .x-frame-tr,
.x-nbr .x-btn-default-small-menu-active .x-frame-br,
.x-nbr .x-btn-default-small-menu-active .x-frame-tc,
.x-nbr .x-btn-default-small-menu-active .x-frame-bc,
.x-nbr .x-btn-default-small-pressed .x-frame-tl,
.x-nbr .x-btn-default-small-pressed .x-frame-bl,
.x-nbr .x-btn-default-small-pressed .x-frame-tr,
.x-nbr .x-btn-default-small-pressed .x-frame-br,
.x-nbr .x-btn-default-small-pressed .x-frame-tc,
.x-nbr .x-btn-default-small-pressed .x-frame-bc {
background-image: url('../themes/images/access/btn/btn-default-small-pressed-corners.gif');
}
/* line 282, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-menu-active .x-frame-ml,
.x-nbr .x-btn-default-small-menu-active .x-frame-mr,
.x-nbr .x-btn-default-small-pressed .x-frame-ml,
.x-nbr .x-btn-default-small-pressed .x-frame-mr {
background-image: url('../themes/images/access/btn/btn-default-small-pressed-sides.gif');
}
/* line 285, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-menu-active .x-frame-mc,
.x-nbr .x-btn-default-small-pressed .x-frame-mc {
background-color: #da7b19;
background-image: url('../themes/images/access/btn/btn-default-small-pressed-bg.gif');
}
/* line 299, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-disabled .x-frame-tl,
.x-nbr .x-btn-default-small-disabled .x-frame-bl,
.x-nbr .x-btn-default-small-disabled .x-frame-tr,
.x-nbr .x-btn-default-small-disabled .x-frame-br,
.x-nbr .x-btn-default-small-disabled .x-frame-tc,
.x-nbr .x-btn-default-small-disabled .x-frame-bc {
background-image: url('../themes/images/access/btn/btn-default-small-disabled-corners.gif');
}
/* line 303, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-disabled .x-frame-ml,
.x-nbr .x-btn-default-small-disabled .x-frame-mr {
background-image: url('../themes/images/access/btn/btn-default-small-disabled-sides.gif');
}
/* line 306, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nbr .x-btn-default-small-disabled .x-frame-mc {
background-color: #6b6b6b;
background-image: url('../themes/images/access/btn/btn-default-small-disabled-bg.gif');
}
/* line 319, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nlg .x-btn-default-small {
background-repeat: repeat-x;
background-image: url('../themes/images/access/btn/btn-default-small-bg.gif');
}
/* line 328, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nlg .x-btn-default-small-over {
background-repeat: repeat-x;
background-image: url('../themes/images/access/btn/btn-default-small-over-bg.gif');
}
/* line 337, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nlg .x-btn-default-small-focus {
background-repeat: repeat-x;
background-image: url('../themes/images/access/btn/btn-default-small-focus-bg.gif');
}
/* line 347, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nlg .x-btn-default-small-menu-active,
.x-nlg .x-btn-default-small-pressed {
background-repeat: repeat-x;
background-image: url('../themes/images/access/btn/btn-default-small-pressed-bg.gif');
}
/* line 356, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-nlg .x-btn-default-small-disabled {
background-repeat: repeat-x;
background-image: url('../themes/images/access/btn/btn-default-small-disabled-bg.gif');
}
/* line 54, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium {
border-color: #06070a;
}
/* line 53, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-btn-default-medium {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
-khtml-border-radius: 3px;
border-radius: 3px;
padding: 3px 3px 3px 3px;
border-width: 1px;
border-style: solid;
background-color: #2a3142;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #2a3142), color-stop(48%, #252c3b), color-stop(52%, #13171f), color-stop(100%, #171b25));
background-image: -moz-linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25);
background-image: linear-gradient(top, #2a3142, #252c3b 48%, #13171f 52%, #171b25);
}
/* line 86, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nlg .x-btn-default-medium-mc {
background-image: url('../themes/images/access/btn/btn-default-medium-bg.gif');
background-color: #2a3142;
}
/* line 99, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-medium {
padding: 0;
border-width: 0;
-moz-border-radius: 0px;
-webkit-border-radius: 0px;
-o-border-radius: 0px;
-ms-border-radius: 0px;
-khtml-border-radius: 0px;
border-radius: 0px;
background-color: transparent;
background-position: 1100303px 1100303px;
}
/* line 135, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-medium-tl,
.x-nbr .x-btn-default-medium-bl,
.x-nbr .x-btn-default-medium-tr,
.x-nbr .x-btn-default-medium-br,
.x-nbr .x-btn-default-medium-tc,
.x-nbr .x-btn-default-medium-bc {
background-image: url('../themes/images/access/btn/btn-default-medium-corners.gif');
}
/* line 142, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-medium-ml,
.x-nbr .x-btn-default-medium-mr {
background-image: url('../themes/images/access/btn/btn-default-medium-sides.gif');
background-position: 0 0;
}
/* line 170, ../themes/stylesheets/ext4/default/mixins/_frame.scss */
.x-nbr .x-btn-default-medium-mc {
padding: 0px 0px 0px 0px;
}
/* line 60, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium button {
font-size: 14px;
font-weight: normal;
font-family: tahoma, arial, verdana, sans-serif;
color: white;
background-repeat: no-repeat;
}
/* line 68, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-disabled em {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
opacity: 0.4;
}
/* line 73, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-icon button,
.x-btn-default-medium-noicon button {
height: 24px;
}
/* line 79, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-icon button {
width: 24px !important;
}
/* line 85, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-icon-text-left button {
height: 24px;
padding-left: 28px;
}
/* line 92, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-icon-text-right button {
height: 24px;
padding-right: 28px;
}
/* line 99, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-icon-text-top button {
padding-top: 28px;
}
/* line 105, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-icon-text-bottom button {
padding-bottom: 28px;
}
/* line 110, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-over {
border-color: #947518;
background-color: #ed9200;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b));
background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
}
/* line 139, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-focus {
border-color: #947518;
background-color: #ed9200;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ed9200), color-stop(48%, #e29200), color-stop(52%, #9d7921), color-stop(100%, #ab821b));
background-image: -moz-linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
background-image: linear-gradient(top, #ed9200, #e29200 48%, #9d7921 52%, #ab821b);
}
/* line 169, ../themes/stylesheets/ext4/default/mixins/_btn.scss */
.x-btn-default-medium-menu-active,
.x-btn-default-medium-pressed {
border-color: #c9750f;
background-color: #da7b19;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #da7b19), color-stop(48%, #e17b1d), color-stop(52%, #db6800), color-stop(100%, #e66e00));
background-image: -moz-linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00);
background-image: linear-gradient(top, #da7b19, #e17b1d 48%, #db6800 52%, #e66e00);
}