FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
javaxt-webcontrols/themes/default.css at dev · javaxt-project/javaxt-webcontrols · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
javaxt-project
/
javaxt-webcontrols
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Issues
4
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
javaxt-webcontrols
/
themes
/
default.css
Copy path
More file actions
More file actions
Latest commit
History
History
History
1240 lines (1026 loc) · 29.3 KB
Breadcrumbs
javaxt-webcontrols
/
themes
/
default.css
Copy path
File metadata and controls
1240 lines (1026 loc) · 29.3 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
/******************************************************************************
* Default Theme Stylesheet
*******************************************************************************
*
* Common style definitions for JavaXT components and applications. This
* stylesheet renders components in a blue and while theme.
*
******************************************************************************/
html
,
body
{
height
:
100
%
;
margin
:
0
;
}
body
{
background-color
:
#
fff
;
color
:
#
000
;
}
body
,
textarea
,
input
,
select
,
td
,
th
{
font-family
:
-apple-system
,
BlinkMacSystemFont
,
'Segoe UI Variable Text'
,
helvetica
,
arial
,
verdana
,
sans-serif;
font-size
:
13
px
;
}
input
,
select
,
textarea
{
/* Allows overriding native style of form elements on iPad */
-webkit-appearance
:
none;
-webkit-border-radius
:
0
;
border-radius
:
0
;
}
*
:
focus
,
select
:
focus
,
textarea
:
focus
,
input
:
focus
{
outline
:
0
;
}
.
middle
{
position
:
relative;
top
:
50
%
;
-webkit-transform
:
translateY
(
-50
%
);
-ms-transform
:
translateY
(
-50
%
);
transform
:
translateY
(
-50
%
);
}
.
center
{
margin
:
0
auto;
}
.
noselect
,
.
javaxt-noselect
{
-webkit-user-select
:
none;
-moz-user-select
:
none;
-o-user-select
:
none;
-ms-user-select
:
none;
-khtml-user-select
:
none;
user-select
:
none;
}
/**************************************************************************/
/** Panel
/**************************************************************************/
/** The following classes are used to define the style for a panel. Panels
* consist of a header, toolbar, body, and footer.
*/
.
javaxt-panel
{
.
panel-header
{
background-color
:
#
0f6391
;
height
:
36
px
;
cursor
:
default;
border-bottom
:
1
px
solid
#
6a9ebb
;
}
.
panel-title
{
color
:
white;
text-align
:
center;
white-space
:
nowrap;
text-transform
:
uppercase;
line-height
:
36
px
;
/*Should match panel-header height*/
}
.
panel-toolbar
{
height
:
36
px
;
padding
:
0
5
px
;
/*background-color: #208ec9; blue*/
background-color
:
#
d4d4d4
;
background-image
:
linear-gradient
(to bottom
,
#
f9f9f9
,
#
cfcfcf
);
/*border-top: 1px solid #f2f7fd;*/
border-bottom
:
1
px
solid
#
8f8f8f
;
.
form-input
{
margin
:
0
5
px
;
}
}
.
toolbar-button
,
.
toolbar-button-selected
{
height
:
26
px
;
padding
:
0
px
7
px
;
margin
:
0
0
0
5
px
;
color
:
#
272727
;
border-radius
:
3
px
;
border
:
1
px
solid
rgba
(
0
,
0
,
0
,
0
);
/* Transparent border, maintains size parity with default.css */
cursor
:
pointer;
}
.
toolbar-button
:
hover
{
background-color
:
#
d2e3ed
;
border
:
1
px
solid
#
adadad
;
}
.
toolbar-button-selected
{
background-color
:
#
d2e3ed
;
border
:
1
px
solid
#
adadad
;
}
/* update margin for first button in the toolbar */
.
panel-toolbar
>
div
:
first-child
{
.
toolbar-button
,
.
toolbar-button-selected
{
margin
:
0
;
}
}
.
toolbar-label
,
.
toolbar-button-label
{
white-space
:
nowrap;
color
:
#
272727
;
min-width
:
50
px
;
}
.
toolbar-label
{
padding
:
0
5
px
;
}
.
toolbar-button-icon
{
margin
:
0
px
;
}
/* Menu pulldown icon (triangle) */
.
toolbar-button-menu-icon
{
width
:
0
;
height
:
0
;
border-left
:
5
px
solid transparent;
border-right
:
5
px
solid transparent;
border-top
:
5
px
solid
#
525252
;
margin-left
:
10
px
;
}
/* Selected menu button. Remove radius on the bottom. */
.
panel-toolbar-menubutton-selected
{
background-color
:
#
d2e3ed
;
border
:
1
px
solid
#
adadad
;
/*border-bottom: 0px;*/
border-radius
:
3
px
3
px
0
0
;
}
/* Selected toggle button. Add inner shadows when selected. */
.
panel-toolbar-togglebutton-selected
{
background-color
:
#
bababa
;
border
:
1
px
solid
#
6c6a6a
;
-webkit-box-shadow
:
inset
0
px
0
px
4
px
#
787878
;
-moz-box-shadow
:
inset
0
px
0
px
4
px
#
787878
;
box-shadow
:
inset
1
px
4
px
9
px
0
px
#
787878
;
}
.
toolbar-spacer
{
display
:
inline-block;
position
:
relative;
width
:
0
px
;
height
:
23
px
;
margin
:
0
2
px
1
px
8
px
;
border-left
:
1
px
solid
#
adadad
;
border-right
:
1
px
solid
#
fff
;
}
.
panel-body
{
background-color
:
#
fff
;
vertical-align
:
top;
}
}
/**************************************************************************/
/** Button
/**************************************************************************/
.
javaxt-button
{
.
button
{
border-radius
:
3
px
;
color
:
#
363636
;
display
:
inline-block;
width
:
80
px
;
height
:
26
px
;
line-height
:
24
px
;
vertical-align
:
middle;
background-color
:
#
e4e4e4
;
border
:
1
px
solid
#
b4b4b4
;
/*
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
text-shadow: 1px 1px 0px rgb(255, 255, 255);
*/
cursor
:
pointer;
}
.
button-label
{
white-space
:
nowrap;
}
.
button-selected
{
}
.
button
:
disabled
,
.
button
[
disabled
]{
opacity
:
0.75
;
color
:
#
939393
;
box-shadow
:
0
0
px
0
px
0
rgba
(
0
,
0
,
0
,
0.2
);
cursor
:
default;
}
.
button
:
hover
{
background-color
:
#
d2e3ed
;
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
}
.
button
:
disabled
:
hover
{
background-color
:
#
e4e4e4
;
border
:
1
px
solid
#
b4b4b4
;
}
.
button
:
active
{
box-shadow
:
none;
}
.
button
:
focus
{
outline
:
0
;
}
}
/**************************************************************************/
/** Form Inputs
/**************************************************************************/
/** The following classes are used to define the style for form inputs
* defined in the javaxt.dhtml.Form control.
*/
.
form-input
{
border-radius
:
4
px
;
-moz-border-radius
:
4
px
;
-webkit-border-radius
:
4
px
;
color
:
#
363636
;
display
:
inline-block;
height
:
28
px
;
line-height
:
28
px
;
padding
:
2
px
4
px
;
vertical-align
:
middle;
transition
:
border
0.2
s
linear
0
s
,
box-shadow
0.2
s
linear
0
s
;
-webkit-transition
:
all
0.20
s
ease-in-out;
-moz-transition
:
all
0.20
s
ease-in-out;
-ms-transition
:
all
0.20
s
ease-in-out;
-o-transition
:
all
0.20
s
ease-in-out;
background-color
:
#
fff
;
border
:
1
px
solid
#
ccc
;
box-shadow
:
0
1
px
1
px
rgba
(
0
,
0
,
0
,
0.075
) inset;
box-sizing
:
border-box;
}
.
form-input
:
focus
{
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
box-shadow
:
0
1
px
1
px
rgba
(
0
,
0
,
0
,
0.075
) inset
,
0
0
8
px
rgba
(
82
,
168
,
236
,
0.6
);
outline
:
0
none;
}
.
form-input
:
disabled
,
.
form-input
[
disabled
]{
opacity
:
0.75
;
color
:
#
939393
;
cursor
:
default;
}
.
form-label
{
color
:
#
636363
;
white-space
:
nowrap;
cursor
:
default;
padding
:
5
px
10
px
0
0
;
vertical-align
:
top;
}
/**************************************************************************/
/** Form Radio
/**************************************************************************/
/** The following classes are used to define the style for radio inputs
*/
.
form-radio
{
-moz-appearance
:
none;
-webkit-appearance
:
none;
padding
:
0
px
;
margin
:
4
px
5
px
4
px
1
px
;
width
:
16
px
;
height
:
16
px
;
border
:
1
px
solid
#
b9b9b9
;
border-radius
:
100
%
;
background-color
:
#
fff
;
}
.
form-radio
:
checked
:
before
{
display
:
block;
height
:
8
px
;
width
:
8
px
;
position
:
relative;
left
:
3
px
;
top
:
3
px
;
background-color
:
#
2a79bf
;
border-radius
:
100
%
;
content
:
''
;
}
.
form-radio
:
focus
{
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
box-shadow
:
0
1
px
1
px
rgba
(
0
,
0
,
0
,
0.075
) inset
,
0
0
8
px
rgba
(
82
,
168
,
236
,
0.6
);
outline
:
0
none;
}
/**************************************************************************/
/** Form Checkbox
/**************************************************************************/
/** The following classes are used to define the style for checkbox inputs
*/
.
form-checkbox
{
-moz-appearance
:
none;
-webkit-appearance
:
none;
padding
:
0
px
;
margin
:
4
px
5
px
4
px
1
px
;
width
:
18
px
;
height
:
18
px
;
border
:
1
px
solid
#
b9b9b9
;
background-color
:
#
fff
;
}
.
form-checkbox
:
checked
:
before
{
content
:
''
;
display
:
block;
width
:
3
px
;
height
:
9
px
;
border
:
solid
#
2a79bf
;
border-width
:
0
2
px
2
px
0
;
transform
:
rotate
(
45
deg
);
margin
:
2
px
0
px
0
px
6
px
;
}
.
form-checkbox
:
focus
{
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
box-shadow
:
0
1
px
1
px
rgba
(
0
,
0
,
0
,
0.075
) inset
,
0
0
8
px
rgba
(
82
,
168
,
236
,
0.6
);
outline
:
0
none;
}
/**************************************************************************/
/** Form Buttons
/**************************************************************************/
/** The following classes are used to define the style for buttons in a
* form (e.g. "Submit", "OK", "Cancel", etc).
*/
.
form-button
{
border-radius
:
3
px
;
color
:
#
363636
;
display
:
inline-block;
width
:
80
px
;
height
:
26
px
;
line-height
:
24
px
;
vertical-align
:
middle;
background-color
:
#
e4e4e4
;
border
:
1
px
solid
#
b4b4b4
;
box-shadow
:
0
2
px
4
px
0
rgba
(
0
,
0
,
0
,
0.2
);
text-shadow
:
1
px
1
px
0
px
rgb
(
255
,
255
,
255
);
cursor
:
pointer;
margin-left
:
10
px
;
}
.
form-button
:
disabled
,
.
form-button
[
disabled
]{
opacity
:
0.75
;
color
:
#
939393
;
box-shadow
:
0
0
px
0
px
0
rgba
(
0
,
0
,
0
,
0.2
);
cursor
:
default;
}
.
form-button
:
hover
{
background-color
:
#
d2e3ed
;
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
}
.
form-button
:
disabled
:
hover
{
background-color
:
#
e4e4e4
;
border
:
1
px
solid
#
b4b4b4
;
}
.
form-button
:
active
{
box-shadow
:
none;
}
.
form-button
:
focus
{
outline
:
0
;
}
select
:
focus
,
textarea
:
focus
,
input
:
focus
{
outline
:
0
;
}
/**************************************************************************/
/** Form Input With Button
/**************************************************************************/
/** The following classes are used define the style for custom form inputs
* with buttons (e.g. DatePicker, ComboBox, etc.)
*/
.
form-input-with-button
{
/* used in conjunction with form-input */
border-radius
:
4
px
0
0
4
px
;
-moz-border-radius
:
4
px
0
0
4
px
;
-webkit-border-radius
:
4
px
0
0
4
px
;
border-right
:
0
none;
}
.
form-input-button
{
/* used in conjunction with form-button */
border-radius
:
0
3
px
3
px
0
;
-moz-border-radius
:
0
3
px
3
px
0
;
-webkit-border-radius
:
0
3
px
3
px
0
;
box-shadow
:
none;
width
:
28
px
;
height
:
28
px
;
padding
:
0
;
margin
:
0
;
/*Add 5px inner glow to mask neighbors in the sprite*/
-webkit-box-shadow
:
inset
-5
px
5
px
5
px
0
px
#
e4e4e4
,
inset
5
px
-5
px
5
px
0
px
#
e4e4e4
;
-moz-box-shadow
:
inset
-5
px
5
px
5
px
0
px
#
e4e4e4
,
inset
5
px
-5
px
5
px
0
px
#
e4e4e4
;
box-shadow
:
inset
-5
px
5
px
5
px
0
px
#
e4e4e4
,
inset
5
px
-5
px
5
px
0
px
#
e4e4e4
;
}
/* Preserve 5px inner glow */
.
form-input-button
:
hover
,
.
form-input-button
:
focus
{
background-color
:
#
d2e3ed
;
box-shadow
:
inset
-5
px
5
px
5
px
0
px
#
d2e3ed
,
inset
5
px
-5
px
5
px
0
px
#
d2e3ed
,
/*5px inner mask*/
0
1
px
1
px
rgba
(
0
,
0
,
0
,
0.075
) inset
,
0
0
8
px
rgba
(
82
,
168
,
236
,
0.6
);
/*blue glow*/
}
/**************************************************************************/
/** Form Menu
/**************************************************************************/
/** The following classes are used to define the style for menus in a
* javaxt.dhtml.ComboBox.
*/
.
form-input-menu
{
border-radius
:
0
0
4
px
4
px
;
-moz-border-radius
:
0
0
4
px
4
px
;
-webkit-border-radius
:
0
0
4
px
4
px
;
background-color
:
#
fff
;
border
:
1
px
solid
#
ccc
;
box-shadow
:
0
2
px
4
px
0
rgba
(
0
,
0
,
0
,
0.2
);
margin-top
:
-1
px
;
}
.
form-input-menu-item
{
color
:
#
363636
;
height
:
28
px
;
line-height
:
28
px
;
padding
:
0
px
6
px
;
vertical-align
:
middle;
white-space
:
nowrap;
cursor
:
default;
}
.
form-input-menu-item
:
hover
{
background-color
:
aliceblue;
}
.
form-input-menu-item
:
focus
{
background-color
:
aliceblue;
}
.
form-input-menu-item
:
focused
{
background-color
:
aliceblue;
}
.
form-input-menu-item-new
{
/* For a "new" menu option in a combobox menu. Used in conjuction with form-input-menu-item */
border-top
:
1
px
solid
#
ccc
;
}
/**************************************************************************/
/** Form Error
/**************************************************************************/
.
form-input-error
{
background-color
:
#
fff2f2
;
border-color
:
#
d66262
;
}
/**************************************************************************/
/** Form placeholder
/**************************************************************************/
.
form-input
::
placeholder
{
color
:
#
a1a1a1
;
font-style
:
italic;
}
/**************************************************************************/
/** Form Group
/**************************************************************************/
/** The following classes are used to define the style for group boxes in
* forms.
*/
.
form-groupbox
{
border
:
1
px
solid
#
ccc
;
border-radius
:
4
px
;
padding
:
16
px
8
px
12
px
13
px
;
}
.
form-grouplabel
{
margin
:
8
px
0
0
7
px
;
background-color
:
#
fff
;
padding
:
0
5
px
0
5
px
;
color
:
#
00468a
;
}
/**************************************************************************/
/** Pulldown Button Icon
/**************************************************************************/
.
pulldown-button-icon
{
/*form-button form-input-button pulldown-button-icon*/
background-image
:
url
(data:image/png;base64
,
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAlklEQVQ4jWNgGAUowNvbW9PBwUEAjxJGHx8f/dDQUB4MGV9f3+TAwMD/AQEB97y8vOSxafb392+BqrlkbGzMhSLr7++/MTAw8D8OQ+CaYdjb21sT3flKAQEBj7AYgqHZz8+vBqsHPT09ldENCQgImIysOSAgoBZPGGEaQpJmfIYQrRmbITj9TAg4ODgIeHp6apGleegAAME5Y+rCcN+AAAAAAElFTkSuQmCC);
background-position
:
5
px
5
px
;
background-repeat
:
no-repeat;
background-color
:
#
e4e4e4
;
}
/**************************************************************************/
/** Callout Panel
/**************************************************************************/
/** The following classes are used to define the style for pop-up callouts
* generated using the javaxt.dhtml.Callout class.
*/
.
javaxt-callout
{
.
callout-panel
,
.
callout-arrow
{
border
:
1
px
solid
#
adadad
;
background-color
:
#
f8f8f8
;
cursor
:
pointer;
}
.
callout-panel
{
border-radius
:
3
px
;
box-shadow
:
0
12
px
14
px
0
rgba
(
0
,
0
,
0
,
0.2
)
,
0
13
px
20
px
0
rgba
(
0
,
0
,
0
,
0.2
);
}
.
callout-arrow
{
width
:
7
px
;
height
:
7
px
;
padding
:
12
px
;
}
}
/**************************************************************************/
/** Error Callout Panel
/**************************************************************************/
/** The following classes are used to define the style for pop-up callouts
* generated using the javaxt.dhtml.Callout class.
*/
.
error-callout-panel
,
.
error-callout-arrow
{
border
:
1
px
solid
#
8c0000
;
background-color
:
#
921d1d
;
color
:
#
fff
;
cursor
:
pointer;
}
.
error-callout-panel
{
border-radius
:
3
px
;
padding
:
5
px
!important
;
box-shadow
:
0
12
px
14
px
0
rgba
(
0
,
0
,
0
,
0.2
)
,
0
13
px
20
px
0
rgba
(
0
,
0
,
0
,
0.2
);
}
.
error-callout-arrow
{
width
:
7
px
;
height
:
7
px
;
padding
:
12
px
;
}
/**************************************************************************/
/** Menu Buttons
/**************************************************************************/
/** The following classes are used to define the style for buttons found in
* a button menu.
*/
.
menu-panel
{
border
:
1
px
solid
#
adadad
;
/*border-top: 0px;*/
background-color
:
#
f0f0f0
;
cursor
:
pointer;
padding
:
3
px
3
px
;
z-index
:
1
;
box-shadow
:
0
12
px
14
px
0
rgba
(
0
,
0
,
0
,
0.2
)
,
0
13
px
20
px
0
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0
0
3
px
3
px
;
margin-top
:
-1
px
;
width
:
150
px
;
}
.
menu-button
{
height
:
28
px
;
border
:
1
px
solid
rgba
(
0
,
0
,
0
,
0
);
border-radius
:
3
px
;
/*background-color: #F6F6F6;*/
cursor
:
pointer;
padding
:
0
px
6
px
;
margin
:
0
px
;
color
:
#
2b2b2b
;
}
.
menu-button-hover
{
border-color
:
#
ccc
;
background-color
:
#
f0f8ff
;
}
.
menu-button-icon
{
margin
:
0
6
px
0
0
;
}
/**************************************************************************/
/** Window
/**************************************************************************/
/** The following classes are used to define the style for windows and
* dialogs generated using the javaxt.dhtml.Window class.
*/
.
javaxt-window
{
.
window
{
background-color
:
#
fff
;
border-radius
:
8
px
;
box-shadow
:
0
12
px
14
px
0
rgba
(
0
,
0
,
0
,
0.2
)
,
0
13
px
20
px
0
rgba
(
0
,
0
,
0
,
0.2
);
min-width
:
150
px
;
min-height
:
75
px
;
}
.
window-header
{
background-color
:
#
0f6391
;
height
:
36
px
;
cursor
:
default;
position
:
relative;
border-radius
:
7
px
7
px
0
px
0
px
;
border
:
1
px
solid
#
2a79bf
;
border-bottom
:
0
px
;
box-shadow
:
rgba
(
0
,
0
,
0
,
0.2
)
0
px
2
px
4
px
0
px
;
cursor
:
default;
overflow
:
hidden;
}
.
window-title
{
color
:
#
fff
;
text-align
:
center;
white-space
:
nowrap;
text-transform
:
uppercase;
line-height
:
36
px
;
/*Should match window-header height*/
position
:
absolute;
text-align
:
left;
cursor
:
default;
padding-left
:
9
px
;
}
.
window-header-button-bar
{
position
:
absolute;
right
:
0
;
padding
:
6
px
7
px
0
0
;
}
.
window-header-button
{
font-size
:
18
px
;
border
:
0
;
color
:
#
ffffff
;
cursor
:
pointer;
padding
:
5
px
;
}
.
window-header-button
:
hover
{
background-color
:
#
5b9bd2
;
transition
:
0.1
s
;
border-radius
:
3
px
;
}
.
window-mask
{
background-color
:
rgba
(
23
,
34
,
42
,
0.6
)
}
.
window-body
{
padding
:
7
px
;
vertical-align
:
top;
color
:
#
303131
;
}
.
alert-header
{
/* used in conjunction with window-header */
border
:
1
px
solid
#
c9af53
;
background-color
:
#
cb6400
;
}
.
alert-header
.
window-header-button
:
hover
{
background-color
:
#
ea985c
;
}
.
alert-body
,
.
confirm-body
{
padding
:
10
px
10
px
15
px
15
px
;
line-height
:
18
px
;
}
.
button-div
{
padding
:
0
12
px
12
px
12
px
;
text-align
:
right;
position
:
relative;
}
}
/**************************************************************************/
/** Tab Panel
/**************************************************************************/
/** The following classes are used to define the style for the tab panel.
*/
.
javaxt-tab-panel
{
.
tab-bar
{
background-color
:
#
0f6391
;
/* same as windows header */
height
:
30
px
;
color
:
#
fff
;
border
:
1
px
solid
#
6393bf
;
border-width
:
0
1
px
;
}
.
tab-active
,
.
tab-inactive
{
padding
:
0
12
px
;
line-height
:
30
px
;
cursor
:
default;
}
.
tab-active
{
background-color
:
#
379ad1
;
}
.
tab-inactive
{
background-color
:
none;
}
.
tab-inactive
:
hover
{
background-color
:
#
3dabe9
;
}
.
tab-body
{
padding
:
0
;
background-color
:
#
fff
;
border
:
1
px
solid
#
ccc
;
vertical-align
:
top;
}
}
/** Special case when tab is the first component inside a window **/
.
javaxt-window
{
.
window-body
table
:
first-child
.
tab-bar
{
background-color
:
#
208EC9
;
}
.
window-body
table
:
first-child
.
tab-active
{
background-color
:
#
379ad1
;
border-top
:
2
px
solid
#
69b9ff
;
margin-top
:
-2
px
;
}
.
window-body
table
:
first-child
.
tab-body
{
border
:
0
none;
border-radius
:
0
0
8
px
8
px
;
}
}
/**************************************************************************/
/** Table
/**************************************************************************/
/** Default style for grid controls
*/
.
javaxt-table
,
.
javaxt-datagrid
{
.
table-header
{
/*height: 36px; /*table-header-col height + border */
border-bottom
:
1
px
solid
#
ababab
;
background-color
:
#
eaeaea
;
background-image
:
linear-gradient
(to bottom
,
#
f9f9f9
,
#
e4e5e7
);
/* box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19); */
}
.
table-row
,
.
table-row-selected
{
background-color
:
#
ffffff
;
border-bottom
:
1
px
solid
#
cccccc
;
}
/* .table-row:nth-child(even) {background-color: #CCC} */
.
table-row
:
nth-child
(odd) {
background-color
:
#
F8F8F8
;
}
.
table-row
:
hover
{
background-color
:
#
EDF3FE
;
}
.
table-row-selected
{
/*border-bottom-style:dotted;*/
/*border-color:#a3bae9;*/
background-color
:
#
FFFFB1
;
}
.
table-col
,
.
table-header-col
{
white-space
:
nowrap;
color
:
#
272727
;
height
:
35
px
;
line-height
:
35
px
;
padding
:
0
5
px
;
/*
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
-webkit-text-overflow: ellipsis;
*/
}
.
table-header-col
{
border-left
:
1
px
solid
#
cccccc
;
border-right
:
1
px
solid
#
cccccc
;
cursor
:
pointer;
}
.
table-header-col
:
first-child
{
border-left
:
none;
}
.
table-col
{
border-left
:
0
;
border-right
:
0
;
}
.
table-resizeHandle
{
width
:
5
px
;
height
:
100
%
;
cursor
:
col-resize;
margin
:
0
-7
px
0
0
px
;
}
/* Up/down triangles that appear in the header */
.
table-icon-sort-asc
,
.
table-icon-sort-desc
{
width
:
0
;
height
:
0
;
position
:
absolute;
margin
:
-8
px
0
0
5
px
;
}
.
table-icon-sort-asc
{
border-left
:
5
px
solid transparent;
border-right
:
5
px
solid transparent;
border-bottom
:
5
px
solid
#
525252
;
}
.
table-icon-sort-desc
{
border-left
:
5
px
solid transparent;
border-right
:
5
px
solid transparent;
border-top
:
5
px
solid
#
525252
;
}
}
/**************************************************************************/
/** Checkbox
/**************************************************************************/
.
javaxt-checkbox
{
.
checkbox-label
{
white-space
:
nowrap;
cursor
:
pointer;
padding
:
0
0
0
5
px
;
line-height
:
20
px
;
}
.
checkbox-box
{
padding
:
0
px
;
margin
:
0
px
;
width
:
18
px
;
height
:
18
px
;
border
:
1
px
solid
#
b9b9b9
;
border-radius
:
3
px
;
background-color
:
#
f8f8f8
;
transition
:
border
0.2
s
linear
0
s
,
box-shadow
0.2
s
linear
0
s
;
-webkit-transition
:
all
0.20
s
ease-in-out;
-moz-transition
:
all
0.20
s
ease-in-out;
-ms-transition
:
all
0.20
s
ease-in-out;
-o-transition
:
all
0.20
s
ease-in-out;
}
.
checkbox-check
{
content
:
''
;
display
:
block;
width
:
4
px
;
height
:
9
px
;
border
:
solid
#
fff
;
border-width
:
0
2
px
2
px
0
;
transform
:
rotate
(
45
deg
);
margin
:
2
px
0
0
6
px
;
}
.
checkbox-select
{
background-color
:
#
0087ff
;
border-color
:
#
2a79bf
;
}
.
checkbox-hover
{
border-color
:
rgba
(
82
,
168
,
236
,
0.8
);
box-shadow
:
0
1
px
1
px
rgba
(
0
,
0
,
0
,
0.075
) inset
,
0
0
8
px
rgba
(
82
,
168
,
236
,
0.6
);
outline
:
0
none;
}
}
/**************************************************************************/
/** Checkboxes in Table
/**************************************************************************/
.
table-col
.
checkbox-box
,
.
table-header-col
.
checkbox-box
{
background-color
:
#
fff
;
cursor
:
pointer;
}
.
table-col
.
checkbox-select
,
.
table-header-col
.
checkbox-select
{
background-color
:
#
0087ff
;
border-color
:
#
2a79bf
;
}
/**************************************************************************/
/** Date Picker
/**************************************************************************/
.
date-picker-panel
{
width
:
100
%
}
.
date-picker-header
{
background-color
:
#
d9e7f8
;
height
:
40
px
;
line-height
:
40
px
;
position
:
relative;
}
View remainder of file in raw view
Back
|
FazBrowse Home
|
New Git URL