blob: 18c0ac97dcf518e892ee8e2c47574485d6a5bd30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
ErrorLabelStyleSheet = """
QLabel { color: red;
font-weight: bold}
"""
ErrorLineEdit = """
QLineEdit {
border: 1px solid red;
}
"""
# XXX this is bad.
# and you should feel bad for it.
# The original style has a sort of box color
# white/beige left-top/right-bottom or something like
# that.
RegularLineEdit = """
QLineEdit {
border: 1px solid black;
}
"""
|