Add CSS styling to history view to make text lighter coloured.
authorAmir Taaki <genjix@riseup.net>
Sun, 12 Aug 2012 20:23:26 +0000 (21:23 +0100)
committerAmir Taaki <genjix@riseup.net>
Sun, 12 Aug 2012 20:23:26 +0000 (21:23 +0100)
data/style.css
lib/gui_lite.py

index bb7e1bb..ffc9bb4 100644 (file)
@@ -77,3 +77,9 @@ MiniWindow QPushButton {
 {
     color: #333;
 }
+
+#history::item
+{
+    color: #888;
+}
+
index cc2b657..8834fa1 100644 (file)
@@ -176,6 +176,7 @@ class MiniWindow(QDialog):
         main_layout.addWidget(self.send_button, 2, 1)
 
         self.history_list = history_widget.HistoryWidget()
+        self.history_list.setObjectName("history")
         self.history_list.hide()
         main_layout.addWidget(self.history_list, 3, 0, 1, -1)