-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.py
More file actions
28 lines (24 loc) · 1.03 KB
/
stylesheet.py
File metadata and controls
28 lines (24 loc) · 1.03 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
# This contains all the stylesheet strings for the various buttons.
# Max, 08/11/2015
sweepButtonStyle = """
QPushButton {
background-color: rgba(0, 255, 0, 25%);
border: 1px solid #CCC;
border-radius: 5px;
font: 12px;
padding: 6px; }
QPushButton:pressed {
background-color: rgba(0, 255, 0, 100%);}
QPushButton:!enabled {
background-color: rgba(84, 84, 84, 25%);}
"""
abortButtonStyle = """
QPushButton {
background-color: rgba(255, 0, 0, 50%);
border: 1px solid #CCC;
border-radius: 5px;
font: 12px;
padding: 6px; }
QPushButton:pressed {
background-color: rgba(255, 0, 0, 100%);}
"""