summaryrefslogtreecommitdiff
path: root/src/leap/gui/styles.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/gui/styles.py')
-rw-r--r--src/leap/gui/styles.py18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/leap/gui/styles.py b/src/leap/gui/styles.py
index 759817ce..b482922e 100644
--- a/src/leap/gui/styles.py
+++ b/src/leap/gui/styles.py
@@ -1,4 +1,16 @@
-ErrorLabelStyleSheet = """
-QLabel { color: red;
- font-weight: bold}
+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;
+}
"""