-
Notifications
You must be signed in to change notification settings - Fork 0
/
qss.css
1767 lines (1516 loc) · 52.8 KB
/
qss.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
/**
* @file: list.h
* @details: qt style sheet css example
* @author: chenwen(chenwen1126@tom.com)
* @datetime: 2017-7-25
* @history: V1.0 first edition
*/
/*/////////////////////////////////////////////////QDialog///////////////////////////////////////////*/
QWidget, QFrame,QDialog
{
background:#f2f2f2;
}
QMainWindow
{
background:#f2f2f2;
}
QWebView
{
background:#fefefe;
}
/*/////////////////////////////////////////////////QStatusBar///////////////////////////////////////////*/
QStatusBar
{
border-top:1px solid #aaaaaa;
min-height:20px;
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0.2 #f4f4f4, stop:1 #e4e4e4);/*渐变背景色*/
}
/*/////////////////////////////////////////////////工具栏及窗口边框///////////////////////////////////////////*/
/*窗口边框,可*/
QFrame#window
{
padding:0px;
border-width:2px;/*边框宽度*/
border-style:solid;/*边框类型*/
/*用渐变色可以营造光晕边框效果*/
border-color:qlineargradient(x1:0, y1:1, x2:0, y2:0, stop:0 #999999, stop:1 #ffffff)/*上边框渐变色*/
qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #999999, stop:1 #ffffff)/*右边框渐变色*/
qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #999999, stop:1 #ffffff)/*下边框渐变色*/
qlineargradient(x1:1, y1:0, x2:0, y2:0, stop:0 #999999, stop:1 #ffffff);/*左边框渐变色*/
}
QFrame#dialog,QFrame#messagebox
{
padding:12px;/*设置透明阴影留出的padding空间,通过源码绘制透明阴影 注意在代码中设置QSSDIALOG_SHADOW_WIDTH为12*/
border:0px solid #ff0000;/*指定边框为0,实际边框时绘制阴影时直接画de直线,边框颜色也是在代码中指定的*/
}
/*标题栏*/
QWidget#titlebar
{
min-height:25px;/*用min-height设置标题栏高度*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0.2 #e4e4e4, stop:1 #d4d4d4);/*渐变背景色*/
border-bottom:1px solid #aaaaaa;
}
QWidget:active#titlebar
{
min-height:25px;/*用min-height设置标题栏高度*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0.2 #f4f4f4, stop:1 #e4e4e4);/*渐变背景色*/
border-bottom:1px solid #aaaaaa;
}
/*标题栏图标*/
QPushButton#titlebaricon
{
min-width:24px;/*覆盖QPushButton中设置*/
min-height:24px;/*覆盖QPushButton中设置*/
width:24px;/*宽度*/
height:24px;
padding:0px;
padding-left:2px;
padding-right:-2px;
background:transparent;/*无背景无边框*/
border:none;
}
/*标题栏标题*/
QLabel#titlebartitle
{
padding-left:2px;
font-weight:bold;
font-size:10pt;
color:#222222;
background:transparent;
}
/*标题栏关闭按钮*/
QPushButton#titlebarclosebtn
{
padding:0px;
padding-right:3px;
min-width:39px;
min-height:19px;
width:39px;
height:19px;
outline:none;
border: none;
background:transparent;/*无背景无边框*/
image:url(:/qss/icon/btn_close_highlight.png);/*btn_close_normal*/
}
QPushButton#titlebarclosebtn:hover
{
min-width:39px;
min-height:19px;
width:39px;
height:19px;
image:url(:/qss/icon/btn_close_highlight.png);
}
QPushButton#titlebarclosebtn:pressed
{
min-width:39px;
min-height:19px;
width:39px;
height:19px;
image:url(:/qss/icon/btn_close_down.png);
}
/*标题栏最小化按钮*/
QPushButton#titlebarminbtn
{
padding:0px;
min-width:28px;
min-height:19px;
width:28px;
height:19px;
outline:none;
border: none;
background:transparent;
image:url(:/qss/icon/btn_mini_normal.png);
}
QPushButton#titlebarminbtn:hover
{
min-width:28px;
min-height:19px;
width:28px;
height:19px;
image:url(:/qss/icon/btn_mini_highlight.png);
}
QPushButton#titlebarminbtn:pressed
{
min-width:28px;
min-height:19px;
width:28px;
height:19px;
image:url(:/qss/icon/btn_mini_down.png);
}
/*标题栏最大化按钮*/
QPushButton#titlebarmaxbtn
{
padding:0px;
padding-bottom:3px;/*因为图表资源尺寸不对,做的微调*/
border: none;
min-width:25px;
min-height:18px;
width:25px;
height:18px;
outline:none;
background:transparent;
image:url(:/qss/icon/btn_max_normal.png);
}
QPushButton#titlebarmaxbtn:hover
{
min-width:28px;
min-height:19px;
width:28px;
height:19px;
image:url(:/qss/icon/btn_max_highlight.png);
}
QPushButton#titlebarmaxbtn:pressed
{
min-width:28px;
min-height:19px;
width:28px;
height:19px;
image:url(:/qss/icon/btn_max_down.png);
}
/*标题栏还原按钮*/
QPushButton#titlebarrestorebtn
{
padding:0px;
padding-bottom:3px;/*因为图表资源尺寸不对,做的微调*/
border: none;
min-width:25px;
min-height:18px;
width:25px;
height:18px;
outline:none;
background:transparent;
image:url(:/qss/icon/btn_restore_normal.png);
}
QPushButton#titlebarrestorebtn:hover
{
min-width:28px;
min-height:20px;
width:28px;
height:20px;
image:url(:/qss/icon/btn_restore_highlight.png);
}
QPushButton#titlebarrestorebtn:pressed
{
min-width:28px;
min-height:20px;
width:28px;
height:20px;
image:url(:/qss/icon/btn_restore_down.png);
}
/*/////////////////////////////////////////////////QPushButton///////////////////////////////////////////*/
/*为QPushButton设置通用属性*/
QPushButton
{
padding:0px 4px;/*上下padding为0px 左右未6px {1,4}为上右下左*/
min-width:80;
min-height:24;
border: 1px solid #aaaaaa;/*边框*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
outline:none;/*表示foucs状态时取消虚线框*/
}
QPushButton::disabled
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.6 #eeeeee);/*渐变背景色*/
border: 1px solid #dddddd;/*边框*/
}
/*为hover状态QPushButton设置属性,注意hover伪状态设置一定要在pressed伪状态之前!!!!!!!!!!*/
QPushButton:hover
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #eeeeee, stop:0.8 #ffffff);/*渐变背景色*/
}
/*为pressed状态QPushButton设置属性*/
QPushButton:pressed
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #dddddd);/*渐变背景色*/
}
/*按钮为默认按钮时(不管焦点直接接收键盘回车输入的按钮),一般对话框ok按钮为默认按钮*/
.QPushButton:default
{
border-width:2px;/*边框宽度*/
border-style:solid;/*边框类型*/
/*用渐变色可以营造光晕边框效果*/
border-color:qlineargradient(x1:0, y1:1, x2:0, y2:0, stop:0 #64bff0, stop:1 #bae3f7)/*上边框渐变色*/
qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #64bff0, stop:1 #bae3f7)/*右边框渐变色*/
qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #64bff0, stop:1 #bae3f7)/*下边框渐变色*/
qlineargradient(x1:1, y1:0, x2:0, y2:0, stop:0 #64bff0, stop:1 #bae3f7);/*左边框渐变色*/
}
/*为focus状态QPushButton设置属性,QPushButtond的子类,如QCommandLinkButton不设置该属性*/
.QPushButton:focus
{
border-width:2px;/*边框宽度*/
border-style:solid;/*边框类型*/
/*用渐变色可以营造光晕边框效果*/
border-color:qlineargradient(x1:0, y1:1, x2:0, y2:0, stop:0 #f9b158, stop:1 #ffe189)/*上边框渐变色*/
qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #f9b158, stop:1 #ffe189)/*右边框渐变色*/
qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #f9b158, stop:1 #ffe189)/*下边框渐变色*/
qlineargradient(x1:1, y1:0, x2:0, y2:0, stop:0 #f9b158, stop:1 #ffe189);/*左边框渐变色*/
}
/*为QCommandLinkButton设置通用属性*/
QCommandLinkButton
{
border: none;/*边框*/
background: none;
}
/*/////////////////////////////////////////////////QCheckBox///////////////////////////////////////////*/
/*QCheckBox的公用属性设置*/
QCheckBox
{
spacing:5px;/*指示器与文字之间的距离*/
outline:none;/*表示foucs状态时取消虚线框*/
}
/*QCheckBox指示器subcontrol属性设置*/
QCheckBox::indicator
{
width:15px;/*设置固定宽度,width height设置的宽高为content区宽高*/
height:15px;/*设置固定高度*/
}
/*QCheckBox指示器选中时属性设置*/
QCheckBox::indicator:checked
{
/*image:url(:/qss/icon/checkbox_p.png);/*图片*/
}
/*QCheckBox指示器未选中时属性设置*/
QCheckBox::indicator:unchecked
{
/*image:url(:/qss/icon/checkbox.png);/*图片*/
}
/*QCheckBox指示器未选中时且hover时属性设置*/
QCheckBox::indicator:unchecked:hover
{
/*image:url(:/qss/icon/checkbox_h.png);/*图片*/
}
/*/////////////////////////////////////////////////QRadioButton///////////////////////////////////////////*/
/*QRadioButton公用属性设置*/
QRadioButton
{
spacing:10px;/*指示器与文字之间的距离*/
outline:none;/*表示foucs状态时取消虚线框*/
}
/*QRadioButton指示器选中时属性设置*/
QRadioButton::indicator
{
width:15px;/*设置固定宽度,width height设置的宽高为content区宽高*/
height:15px;/*设置固定宽度*/
}
/*QRadioButton指示器选中时属性设置*/
QRadioButton::indicator:checked
{
/*image:url(:/qss/icon/radio_p.png);*//**/
}
/*QRadioButton指示器未选中时属性设置*/
QRadioButton::indicator:unchecked
{
/*image:url(:/qss/icon/radio.p/*ng);*//**/
}
/*QRadioButton指示器未选中掠过时属性设置*/
QRadioButton::indicator:unchecked:hover
{
image:url(:/qss/icon/radio_h.png);/**/
}
/*/////////////////////////////////////////////////QLineEdit///////////////////////////////////////////*/
/*QLineEdit公用属性设置*/
QLineEdit
{
padding:1px;
padding-left:4px;
border: 1px solid #aaaaaa;
background: white;
selection-background-color: #3399ff;
}
/*QLineEdit获得焦点时的属性设置,主要为光晕边框
这里带了.,所以该属性仅对QLineEdit直接类对象生效,这样做的目的在于,可编辑QTableWidget编辑item时的编辑框不带边框*/
.QLineEdit:focus1
{
padding:0px;/*padding,这里边框为2px为了不引起content尺寸变化padding设置为0*/
padding-left:3px;
border-width:2px;/*边框宽度*/
border-style:solid;/*边框类型*/
/*用渐变色可以营造光晕边框效果*/
border-color:qlineargradient(x1:0, y1:1, x2:0, y2:0, stop:0 #f9b158, stop:1 #ffe189)/*上边框渐变色*/
qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #f9b158, stop:1 #ffe189)/*右边框渐变色*/
qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #f9b158, stop:1 #ffe189)/*下边框渐变色*/
qlineargradient(x1:1, y1:0, x2:0, y2:0, stop:0 #f9b158, stop:1 #ffe189);/*左边框渐变色*/
}
QLineEdit:read-only
{
color: #787878;
}
/*/////////////////////////////////////////////////QPlainTextEdit///////////////////////////////////////////*/
QPlainTextEdit
{
padding:0px;
border: 1px solid #aaaaaa;
background: white;
selection-background-color: #3399ff;
}
QPlainTextEdit:read-only
{
color: #787878;
}
/*/////////////////////////////////////////////////QTextEdit///////////////////////////////////////////*/
QTextEdit
{
padding:0px;
border: 1px solid #aaaaaa;
background: white;
selection-background-color: #3399ff;
}
/*/////////////////////////////////////////////////QComboBox///////////////////////////////////////////*/
/*QComboBox设置公用属性*/
QComboBox
{
border: 1px solid #aaaaaa;/*边框*/
padding:2px 18px 2px 3px;/*内边距,有偏移18px为drop-down按钮留出空间,所以subcontrol-origin属性须设为padding*/
min-width:36px;/*最小宽度为6em em和px一样为长度单位。em表示对应字体M的宽度。M为大写字母的最大宽度*/
}
/*QLineEdit获得焦点时的属性设置,设置边框为光晕边框*/
QComboBox:focus1
{
padding:1px 17px 1px 2px;/*padding,这里边框为2px为了不引起content尺寸变化padding均减1*/
border-width:2px;
border-style:solid;
border-color:qlineargradient(x1:0, y1:1, x2:0, y2:0, stop:0 #64bff0, stop:1 #bae3f7)/*上边框渐变色*/
qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #64bff0, stop:1 #bae3f7)/*右边框渐变色*/
qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #64bff0, stop:1 #bae3f7)/*下边框渐变色*/
qlineargradient(x1:1, y1:0, x2:0, y2:0, stop:0 #64bff0, stop:1 #bae3f7);/*左边框渐变色*/
}
/*设置drop-down按钮上的箭头图片*/
QComboBox::down-arrow
{
image:url(downarrow.png);
}
/* 这个导致的,设置了这样就一定要图片好像 */
/*设置drop-down按钮属性,自定义combox的重头戏。必须设置*/
QComboBox::drop-down {
width:15px;/*drop-down按钮宽度*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*drop-down按钮渐变背景色*/
subcontrol-origin: padding;/*drop-down按钮绘制位置依据父控件设置的padding决定*/
subcontrol-position: right top;/*drop-down按钮相对父控件位置*/
border-left:1px solid #aaaaaa;/*drop-down左边框*/
}
/*设置QComboBox的:下拉时的视图属性。注意这不是设置的视图项,而是视图项主城的视图
子孙窗口部件,用空格隔开。*/
QComboBox QAbstractItemView
{
border: 1px solid #aaaaaa;/*边框*/
selection-background-color: #73c5f1;/*选中背景*/
outline:none;/*去掉选中时的虚线框*/
}
/*/////////////////////////////////////////////////QGroupBox///////////////////////////////////////////*/
/*QGroupBox公用属性设置*/
QGroupBox {
background: none;/*背景透明*/
border: 1px solid #aaaaaa;/*边框*/
border-radius: 5px;/*边框圆角*/
margin-top: 2ex; /* 为title绘制留出空间,以下title子控制器的subcontrol-origin设置为margin */
}
/*QGroupBox title子控制器属性设置*/
QGroupBox::title
{
color:#3399ff;/*文本颜色*/
left:10px;/*子控制器相对于父控件的精确定位*/
subcontrol-origin: margin;/*子控制器绘制起始区域*/
subcontrol-position: top left; /*子控制器于父控件的相对位置*/
padding: 0px 2px;/*title文字左右padding设置使边框线条与title文字有间隔距离*/
background: none;/*背景透明*/
}
/*/////////////////////////////////////////////////QProgressBar///////////////////////////////////////////*/
/*QProgressBar公用属性设置*/
QProgressBar
{
border: 1px solid #aaaaaa;/*边框*/
background: white;/*qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #eeeeee, stop:1 #ffffff);渐变背景*/
border-radius: 4px;/*边框圆角*/
text-align:center;/*文本对齐*/
}
/*chunk子控制器,指进度条内一块块依次向右的进度小块*/
QProgressBar::chunk
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #73c5f1, stop:0.6 #bde4f8, stop:1 #73c5f1); /*进度小块背景*/
width: 6px;/*进度小块宽度*/
margin: 0.5px;/*进度小块margin设置为0.5px以上可以隔开进度小块。隔开距离为2*margin 。设置为0.5以下进度小块连在一起*/
}
/*/////////////////////////////////////////////////QSlider///////////////////////////////////////////*/
/*QSlider水平凹槽属性设置,未设置背景因为它反正会被add-page subControl覆盖*/
QSlider::groove:horizontal
{
border: 1px solid #aaaaaa;/*边框*/
height: 6px; /*水平凹槽高度*/
}
/*QSlider水平滑块属性设置*/
QSlider::handle:horizontal
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:1 #666666, stop:0.5 #dddddd);/*渐变背景*/
border: 1px solid #5c5c5c;/*边框*/
width: 6px;/*滑块宽度*/
margin: -6px 0;/*通过设置margin上下margin为-6px,使得滑块高度比凹槽高度高12px。*/
border-radius: 4px;/*圆角边框*/
}
/*通过add-page subControl设置未划过部分的背景*/
QSlider::add-page:horizontal
{
border: 1px solid #aaaaaa;
background: white;/*qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #eeeeee, stop:1 #ffffff);*/
}
/*通过sub-page subControl设置划过部分的背景*/
QSlider::sub-page:horizontal
{
border: 1px solid #aaaaaa;
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #73c5f1, stop:0.6 #bde4f8, stop:1 #73c5f1);
}
/*垂直滑动条:大同小异*/
QSlider::groove:vertical
{
border: 1px solid #aaaaaa;
width: 6px;
}
QSlider::handle:vertical
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:1 #666666, stop:0.4 #dddddd);/*渐变背景*/
border: 1px solid #5c5c5c;
height: 6px;
margin: 0px -6px;
border-radius: 4px;
}
QSlider::add-page:vertical
{
border: 1px solid #aaaaaa;
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #73c5f1, stop:0.6 #bde4f8, stop:1 #73c5f1);
}
QSlider::sub-page:vertical
{
border: 1px solid #aaaaaa;
background: white;/*qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #eeeeee, stop:1 #ffffff);*/
}
/*/////////////////////////////////////////////////QScrollBar///////////////////////////////////////////*/
/*水平滚动条公用属性设置*/
QScrollBar:horizontal
{
border-top: 1px solid #aaaaaa;/*边框*/
/*background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #eeeeee, stop:0.8 #ffffff);渐变背景,也是滑轨背景*/
background:white;
height: 16px;/*水平滚动条高度*/
margin: 0px 16px 0 16px;/*水平滚动条margin,左右留出空间给add-line按钮和sub-line按钮*/
}
/*水平滚动条滑块公用属性设置*/
QScrollBar::handle:horizontal
{
/*background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #73c5f1, stop:0.6 #bde4f8, stop:1 #73c5f1);背景*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
min-width: 20px;/*最小宽度,滑块宽度自动调整但须设置一个最小宽度*/
border-radius: 0px;/**/
border-left:1px solid #aaaaaa;
border-right:1px solid #aaaaaa;
}
/*水平滚动条滑块被掠过时*/
QScrollBar::handle:horizontal:hover
{
/*background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #90d9fe, stop:0.6 #e2f3fc, stop:1 #90d9fe);渐变背景*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0.2 #eeeeee, stop:1 #ffffff);/*渐变背景色*/
}
/*水平滚动条滑块被按压时*/
QScrollBar::handle:horizontal:pressed
{
/*background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #60c8fd, stop:0.6 #bde4f8, stop:1 #60c8fd);渐变背景*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
}
/*水平滚动条sub-line(增加一行)按钮*/
QScrollBar::add-line:horizontal
{
border-top: 1px solid #aaaaaa;/*边框*/
border-left: 1px solid #aaaaaa;/*边框*/
border-right: 1px solid #aaaaaa;/*边框*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景*/
width: 16px;/*宽度,跟父控件margin匹配*/
subcontrol-position: right;/*sub-line按钮相对于父控件位置设置*/
subcontrol-origin: margin;/*sub-line按钮绘制空间,之前父控件设置了margin为sub-line留出了控件*/
}
/*水平滚动条add-line(增加一行)按钮被掠过时*/
QScrollBar::add-line:horizontal:hover
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0.4 #ffffff, stop:1 #eeeeee);/*渐变背景*/
}
/*水平滚动条add-line(增加一行)按钮被按压时*/
QScrollBar::add-line:horizontal:pressed
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.4 #eeeeee);/*渐变背景*/
}
/*水平滚动条sub-line(减少一行)按钮*/
QScrollBar::sub-line:horizontal
{
border-top: 1px solid #aaaaaa;/*边框*/
border-right: 1px solid #aaaaaa;/*边框*/
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景*/
width: 16px;/*宽度,跟父控件margin匹配*/
subcontrol-position: left;/*sub-line按钮相对于父控件位置设置*/
subcontrol-origin: margin;/*sub-line按钮绘制空间,之前父控件设置了margin为sub-line留出了控件*/
}
/*水平滚动条sub-line(减少一行)按钮hover时*/
QScrollBar::sub-line:horizontal:hover
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0.4 #ffffff, stop:1 #eeeeee);/*渐变背景*/
}
/*水平滚动条sub-line(减少一行)按钮被按压时*/
QScrollBar::sub-line:horizontal:pressed
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.4 #eeeeee);/*渐变背景*/
}
/*水平滚动条左箭头设置图像(在add-line中居中显示)*/
QScrollBar:left-arrow:horizontal
{
image:url(:/qss/icon/hor_scroll_left_arrow.png);/*箭头图像*/
}
/*水平滚动条右箭头设置图像(在sub-line中居中显示)*/
QScrollBar::right-arrow:horizontal
{
image:url(:/qss/icon/hor_scroll_right_arrow.png);/*箭头图像*/
}
/*水平滚动条add-page,sub-page指单击滑轨时滚动一页。可以为add-page,sub-page设置hover,pressed的背景 */
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
{
background: none;/*不设置add-page,sub-page背景*/
}
/*垂直滚动条,大同小异*/
QScrollBar:vertical
{
border-left: 1px solid #aaaaaa;
/*background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #eeeeee, stop:0.8 #ffffff);*/
background:white;
width: 16px;
margin: 16px 0px 16px 0px;
}
QScrollBar::handle:vertical
{
/*background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #73c5f1, stop:0.6 #bde4f8, stop:1 #73c5f1);渐变背景色*/
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
min-height: 20px;
border-radius: 0px;
border-top:1px solid #aaaaaa;
border-bottom:1px solid #aaaaaa;
}
QScrollBar::handle:vertical:hover
{
/*background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #90d9fe, stop:0.6 #e2f3fc, stop:1 #90d9fe);渐变背景*/
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0.2 #eeeeee, stop:1 #ffffff);/*渐变背景色*/
}
QScrollBar::handle:vertical:pressed
{
/*background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #60c8fd, stop:0.6 #bde4f8, stop:1 #60c8fd);渐变背景色*/
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
}
QScrollBar::add-line:vertical
{
border-left: 1px solid #aaaaaa;
border-top: 1px solid #aaaaaa;
border-bottom: 1px solid #aaaaaa;
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #ffffff, stop:0.8 #eeeeee);
height: 16px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical:hover
{
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0.4 #ffffff, stop:1 #eeeeee);
}
QScrollBar::add-line:vertical:pressed
{
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #ffffff, stop:0.4 #eeeeee);
}
QScrollBar::sub-line:vertical
{
border-left: 1px solid #aaaaaa;
border-bottom: 1px solid #aaaaaa;
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #ffffff, stop:0.8 #eeeeee);
height: 16px;
subcontrol-position: top;
subcontrol-origin: margin;
}
QScrollBar::sub-line:vertical:hover
{
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0.4 #ffffff, stop:1 #eeeeee);
}
QScrollBar::sub-line:vertical:pressed
{
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 #ffffff, stop:0.4 #eeeeee);
}
QScrollBar::down-arrow:vertical
{
image:url(:/qss/icon/ver_scroll_bottom_arrow.png);
}
QScrollBar::up-arrow:vertical
{
image:url(:/qss/icon/ver_scroll_top_arrow.png);
}
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
{
background: none;
}
/*
一种更为简洁的滚动条
QScrollBar:horizontal
{
background: #f2f2f2;
height: 12px;
}
QScrollBar::handle:horizontal
{
background: #dddddd;
min-width: 20px;
border-radius: 6px;
}
QScrollBar::handle:horizontal:hover
{
background: #d0d0d0;
}
QScrollBar::handle:horizontal:pressed
{
background: #d0d0d0;
}
QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal
{
background: none;
}
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
{
background: none;
}
QScrollBar:vertical
{
background: #f2f2f2;
width: 12px;
}
QScrollBar::handle:vertical
{
background: #dddddd;
min-height: 20px;
border-radius: 6px;
}
QScrollBar::handle:vertical:hover
{
background: #d0d0d0;
}
QScrollBar::handle:vertical:pressed
{
background: #d0d0d0;
}
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical
{
background: none;
}
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical
{
background: none;
}
*/
/*/////////////////////////////////////////////////QTabWidget///////////////////////////////////////////*/
/*QTabWidget由子控制器pane和tab-bar组成。pane为tab页所在区域,tab-bar为tab标签栏所在区域*/
/*QTabWidget pane子控制器属性设置*/
QTabWidget::pane
{
border: 0px solid #aaaaaa; /*tab有边框pane就不要边框了*/
margin-top:-1px;/*设置margin-top为-1是为了让tab-bar遮掉pane的上边框*/
}
/*QTabWidget tab-bar子控制器属性设置*/
QTabWidget::tab-bar
{
left: 3px; /*left表示子控制器距父控件左边的距离定位*/
}
/*tab-bar子控制器(tab标签栏)又由tab标签组成,子控制器tab表示tab标签*/
QTabBar::tab
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #eeeeee, stop:0.8 #dddddd);/*渐变背景色*/
border-left: 1px solid #aaaaaa;/*边框,不设置标签底部边框*/
border-right: 1px solid #aaaaaa;/**/
border-top: 1px solid #aaaaaa;/**/
border-top-left-radius: 6px;/**/
border-top-right-radius: 6px;/**/
min-width: 18ex;/**/
padding: 4px;/**/
}
/*tab标签被选中或掠过时*/
QTabBar::tab:selected, QTabBar::tab:hover
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
}
/*tab标签被选中时*/
QTabBar::tab:selected
{
border-bottom: 3px solid #73c5f1;/*设置底部边框*/
margin-left: -4px;/*设置margin-top为-4px是为了扩大选中标签宽度,使得选中标签宽度大于未选中标签*/
margin-right: -4px;/**/
}
/*tab标签未被选中时*/
QTabBar::tab:!selected
{
border-bottom: 1px solid #aaaaaa;/*设置底部边框*/
margin-top: 2px;/*设置margin-top为了压缩标签大小,使得未选中标签高度小于选中标签*/
}
/*第一个tab标签被选中时*/
QTabBar::tab:first:selected
{
margin-left: 0px; /*左边不扩大宽度*/
}
/*最后一个tab标签被选中时*/
QTabBar::tab:last:selected
{
margin-right: 0px;/*右边不扩大宽度*/
}
/*只有一个tab标签时*/
QTabBar::tab:only-one
{
margin: 0px;/*不使用margin对标签大小作改变*/
}
/*QTabBar上标签过多时出现的左右箭头QToolButton按钮属性设置*/
QTabBar QToolButton
{
border-radius: 6px;
}
/*QTabBar上标签过多时出现的左右箭头按钮箭头图片*/
QTabBar QToolButton::right-arrow
{
image:url(:/qss/icon/hor_scroll_right_arrow.png);/*箭头图像*/
}
/*QTabBar上标签过多时出现的左右箭头按钮箭头图片*/
QTabBar QToolButton::left-arrow
{
image:url(:/qss/icon/hor_scroll_left_arrow.png);/*箭头图像*/
}
/*/////////////////////////////////////////////////QCalendarWidget日历控件///////////////////////////////////////////*/
QCalendarWidget QToolButton
{
color:Black;
}
/*QCalendarWidget上左右箭头按钮箭头图片*/
QCalendarWidget QToolButton::right-arrow
{
image:url(:/qss/icon/hor_scroll_right_arrow.png);/*箭头图像*/
}
/*QCalendarWidget上左右箭头按钮箭头图片*/
QCalendarWidget QToolButton::left-arrow
{
image:url(:/qss/icon/hor_scroll_left_arrow.png);/*箭头图像*/
}
/*/////////////////////////////////////////////////QListView/QListWidget///////////////////////////////////////////*/
/*QListView公用属性设置*/
QListView
{
border:1px solid #aaaaaa;/*边框*/
selection-background-color: #73c5f1;/*选中背景*/
alternate-background-color:#e9e9e9;/*交替行背景色,代码中设置了交替行背景设有效时生效*/
outline:none;/*去掉选中时的虚线框*/
}
QListView::item
{
min-height:24px;/*调整项高度*/
margin-left:40px;
}
/*/////////////////////////////////////////////////QTableView/QTableWidget///////////////////////////////////////////*/
/*QTableView公用属性设置*/
QTableView
{
border:1px solid #aaaaaa;/*边框*/
background:#ffffff;/*背景*/
selection-background-color: #73c5f1;/*选中背景*/
alternate-background-color:#e9e9e9;/*交替行背景色,代码中设置了交替行背景设有效时生效*/
}
/*QTableView的CornerButton区域设置*/
QTableView QTableCornerButton::section
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
border: 1px outset #aaaaaa;/*边框 outset类型边框指右底边框比左上边框颜色深,可参见w3c border-style属性*/
}
/*QTableView表头设置,设置表头所有位置的背景,而不是仅仅为section部分,包括垂直和水平表头*/
QTableView QHeaderView
{
background: #eeeeee;/*QHeaderView背景色*/
}
/*QTableView表头section部分设置,包括垂直和水平表头*/
QTableView QHeaderView::section
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
border: 1px outset #aaaaaa;/**/
padding:4px;/*调整表头高度*/
}
QTableView::item
{
min-height:24px;/*调整项高度*/
}
/*/////////////////////////////////////////////////QTreeView/QTreeWidget///////////////////////////////////////////*/
/*QTreeView公用属性设置*/
QTreeView
{
border:1px solid #aaaaaa;/*边框*/
show-decoration-selected: 1;
background:#ffffff;/*背景*/
selection-background-color: #73c5f1;/*选中背景*/
alternate-background-color:#e9e9e9;/*交替行背景色,代码中设置了交替行背景设有效时生效*/
}
/*QTreeView表头设置,设置表头所有位置的背景,而不是仅仅为section部分,包括垂直和水平表头*/
QTreeView QHeaderView
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
}
/*QTreeView表头section部分设置,包括垂直和水平表头*/
QTreeView QHeaderView::section
{
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #ffffff, stop:0.8 #eeeeee);/*渐变背景色*/
border: 1px outset #aaaaaa;/**/
padding:4px;/*调整表头高度*/
}
/*QTreeView item子控制器属性设置*/
QTreeView::item
{
min-height:30px;/*调整项高度*/
}
/*QTreeView item子控制器掠过时属性设置*/