summaryrefslogtreecommitdiff
path: root/src/leap/gui/styles.py
blob: b482922eb0ac0326af39505724cd31c300505fc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
GreenLineEdit = "QLabel {color: green; font-weight: bold}"
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;
}
"""