forked from easysoft/zenshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zentaosettinglist.css
123 lines (110 loc) · 2.28 KB
/
zentaosettinglist.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
QWidget#zentaosettinglist {
background-color: transparent;
}
QLabel#label {
padding-left: 20px;
font-size: 16px;
}
#listWidget {
background-color: transparent;
font-size: 14px;
color: #3C4353;
font-weight: 500;
border: none;
outline:0px;
}
QListWidget::item {
background-color: rgba(237,238,242,0.40);
border: 1px solid rgba(215,219,222,1);
border-radius: 2px;
}
QListWidget::item:hover {
show-decoration-selected: 2px;
background-color: transparent;
border-radius: 2px;
}
QListWidget::item:selected {
background-color: rgba(116,125,255,0.06);
padding: 0px;
margin: 0px;
border: 1px solid rgba(116,125,255,1);
border-radius: 5px;
}
QLabel.listItemTxt {
max-height: 30px;
min-height: 30px;
height: 30px;
padding-left: 24px;
background-color: transparent;
font-size: 14px;
color: #3C4353;
font-weight: 400;
}
QPushButton.listItemBtn {
margin: 0px;
padding: 0px;
max-width: 30px;
max-height: 30px;
min-width: 30px;
min-height: 30px;
width: 30px;
height: 30px;
background-color: transparent;
background-repeat: no-repeat;
background-position: center;
background-image: url(:/images/remove-item.png);;
}
QScrollBar:vertical
{
width:6px;
background:rgba(0,0,0,0%);
margin:0px,0px,0px,0px;
padding-top:9px;
padding-bottom:9px;
min-height:180px;
}
QScrollBar::handle:vertical
{
width:6px;
background:rgba(0,0,0,25%);
min-height:180px;
}
QScrollBar::handle:vertical:hover
{
width:6px;
background:rgba(0,0,0,50%);
min-height:180px;
}
QScrollBar::add-line:vertical
{
height:6px;
width:6px;
border-image:url(:/images/down-arrow.png);
subcontrol-position:bottom;
}
QScrollBar::sub-line:vertical
{
height:6px;
width:6px;
border-image:url(:/images/up-arrow.png);
subcontrol-position:top;
}
/*
QScrollBar::add-line:vertical:hover
{
height:9px;width:8px;
border-image:url(:/images/a/4.png);
subcontrol-position:bottom;
}
QScrollBar::sub-line:vertical:hover
{
height:9px;width:8px;
border-image:url(:/images/a/2.png);
subcontrol-position:top;
}
QScrollBar::add-page:vertical,QScrollBar::sub-page:vertical
{
background:rgba(0,0,0,10%);
border-radius:4px;
}
*/