-
Notifications
You must be signed in to change notification settings - Fork 37
/
setting.css
83 lines (72 loc) · 1.48 KB
/
setting.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
QDialog#SettingDlg {
background-color: #ffffff;
border: 0px;
margin: 0px;
padding: 0px;
color: #161515;
}
QLabel {
background-color: transparent;
color: black;
}
QLabel#titleLabel {
width: 32px;
min-height: 20px;
font-size: 16px;
color: #333333;
font-weight: 400;
}
QPushButton {
background-repeat: no-repeat;
background-color: transparent;
background-position: center;
}
QPushButton#hotkeyStatus {
background-color: #ffffff;
}
QPushButton#closeButton {
width: 10px;
height: 10px;
background-image: url(:/images/close_button.png);
}
QPushButton#settingSaveBtn {
width: 144.9px;
height: 30px;
background: #AD86E1;
border-radius: 4px;
color: #FFFFFF;
}
QPushButton#settingSaveBtn:hover {
background-color: rgb(136, 79, 212);
}
QPushButton#settingSaveBtn:pressed {
background-color: rgb(136, 79, 212);
border: 2px solid rgb(73, 67, 215);
border-radius: 4px;
}
QPushButton#hotkeyValue {
width: 210px;
height: 30px;
border: 1px solid rgba(159,113,220,1);
border-radius: 4px;
padding-left: 20px;
text-align: left;
}
QPushButton.setting-check {
width: 156px;
height: 12px;
font-size: 12px;
color: #FF9090;
text-align: left;
padding-left: 3px;
font-weight: 400;
}
QPushButton.setting-check:checked {
width: 156px;
height: 12px;
font-size: 12px;
color: #FF9090;
text-align: left;
padding-left: 3px;
font-weight: 400;
}