summaryrefslogtreecommitdiff
path: root/onionshare
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2019-09-03 22:31:13 -0700
committerMicah Lee <micah@micahflee.com>2019-09-03 22:31:13 -0700
commitc2011e6915330910631e11695105cf83b88eb2cb (patch)
treeaf02cb09d87424d7e490cc7884238605f04d6a1f /onionshare
parentdee9e40051259509ffc23ab1dc5810a02b6a0f89 (diff)
downloadonionshare-c2011e6915330910631e11695105cf83b88eb2cb.tar.gz
onionshare-c2011e6915330910631e11695105cf83b88eb2cb.zip
Make the IndividualFileHistoryItem widgets have color
Diffstat (limited to 'onionshare')
-rw-r--r--onionshare/common.py20
1 files changed, 19 insertions, 1 deletions
diff --git a/onionshare/common.py b/onionshare/common.py
index 27e8efc2..06563461 100644
--- a/onionshare/common.py
+++ b/onionshare/common.py
@@ -203,7 +203,7 @@ class Common(object):
border: 0px;
}""",
- # Common styles between ShareMode and ReceiveMode and their child widgets
+ # Common styles between modes and their child widgets
'mode_info_label': """
QLabel {
font-size: 12px;
@@ -310,6 +310,24 @@ class Common(object):
width: 10px;
}""",
+ 'history_individual_file_timestamp_label': """
+ QLabel {
+ color: #666666;
+ }""",
+
+ 'history_individual_file_request_label': """
+ QLabel { }""",
+
+ 'history_individual_file_status_code_label_2xx': """
+ QLabel {
+ color: #008800;
+ }""",
+
+ 'history_individual_file_status_code_label_4xx': """
+ QLabel {
+ color: #cc0000;
+ }""",
+
# Share mode and child widget styles
'share_zip_progess_bar': """
QProgressBar {