This repository has been archived by the owner on Aug 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.qss
87 lines (71 loc) · 1.42 KB
/
stylesheet.qss
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
Ui_MainWindow {
background: #222222;
}
Ui_Column {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
background: #3a3a3a;
}
QScrollArea {
border-radius: 50px;
}
TweetBox {
border-radius: 5px;
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0 #111111, stop: 0.7 #111111, stop: 1 transparent);
}
QGroupBox::title {
subcontrol-position: top center;
}
QProgressBar {
border-radius: 4px;
text-align: center;
}
QProgressBar::chunk {
background: #1b4370;
}
QScrollBar:vertical {
border: 1px;
width: 5px;
background: none;
}
QScrollBar::handle:vertical {
background: #3F3F3F;
min-height: 5px;
border-radius: 3px;
}
QScrollBar::add-line:vertical {
border: 1px;
height: 10px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
QScrollBar::sub-line:vertical {
border: 1px;
height: 10px;
subcontrol-position: top;
}
QScrollBar::add-page:vertical, QScrollBar::sub-page:vertical {
background: none;
}
#followButton {
background: green;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
#unfollowButton {
background: red;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
#UserProfileViewFollowButton[follow=true] {
border-radius: 5px;
background: red;
}
#UserProfileViewFollowButton[follow=false] {
border-radius: 5px;
background: green;
}
#UserProfileViewFollowButton[me=true] {
background: yellow;
}