-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.qss
More file actions
119 lines (103 loc) · 2.56 KB
/
style.qss
File metadata and controls
119 lines (103 loc) · 2.56 KB
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
/*= Style for mainwindow START
==================================================== */
#MainWindow {
background-color: #fff;
}
/*= END
==================================================== */
/*= Style for button to change menu style START
==================================================== */
#change_btn {
padding: 5px;
border: none;
width: 30px;
height: 30px;
}
/*= END
==================================================== */
/*= Style for header widget START
==================================================== */
#widget {
background-color: #f9fafd;
}
/*= END
==================================================== */
/*= Style for menu with icon only START
==================================================== */
/* style for widget */
#icon_only_widget {
background-color: #313a46;
width:50px;
}
/* style for QPushButton and QLabel */
#icon_only_widget QPushButton, QLabel {
height:50px;
border:none;
/* border-bottom: 1px solid #b0b0b0; */
}
#icon_only_widget QPushButton:hover {
background-color: rgba( 86, 101, 115, 0.5);
}
/* style for logo image */
#logo_label_1 {
padding: 5px
}
/*= END
==================================================== */
/*= Style for menu with icon and text START
==================================================== */
/* style for widget */
#full_menu_widget {
background-color: #313a46;
}
/* style for QPushButton */
#full_menu_widget QPushButton {
border:none;
border-radius: 3px;
text-align: left;
padding: 8px 0 8px 15px;
color: #788596;
}
#full_menu_widget QPushButton:hover {
background-color: rgba( 86, 101, 115, 0.5);
}
#full_menu_widget QPushButton:checked {
color: #fff;
}
/* style for logo image */
#logo_label_2 {
padding: 5px;
color: #fff;
}
/* style for APP title */
#logo_label_3 {
padding-right: 10px;
color: #fff;
}
/*= END
==================================================== */
/*= Style for search button START
==================================================== */
#search_btn {
border: none;
}
/*= END
==================================================== */
/*= Style for search input START
==================================================== */
#search_input {
border: none;
padding: 5px 10px;
}
#search_input:focus {
background-color: #70B9FE;
}
/*= END
==================================================== */
/*= Style for user information button START
==================================================== */
#user_btn {
border: none;
}
/*= END
==================================================== */