From 70e66802a2d46a1ffdac7528b134c9d7741a8797 Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Wed, 27 Nov 2019 14:10:50 -0500 Subject: changed labels that have links to new LinkLabel, removed hardcoded colors changed the link colors on dark themes to something saner --- src/stylesheets/dracula.qss | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/stylesheets/dracula.qss') diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss index 2a7fbf9e..537ff083 100644 --- a/src/stylesheets/dracula.qss +++ b/src/stylesheets/dracula.qss @@ -30,6 +30,10 @@ QCheckBox, QGroupBox { selection-color: #bbbbbb; } +LinkLabel { + qproperty-linkColor: #3399FF; +} + /* * GroupBox and CheckBox */ -- cgit v1.3.1 From 72e99f7c5c41fcc1c60ba59397ea560436dbd93c Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Mon, 6 Jan 2020 04:34:43 -0500 Subject: changed widget background color to opaque, fixes redrawing problems in the images tab --- src/stylesheets/dracula.qss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stylesheets/dracula.qss') diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss index 537ff083..a78d2414 100644 --- a/src/stylesheets/dracula.qss +++ b/src/stylesheets/dracula.qss @@ -4,7 +4,7 @@ QWidget, QStackedWidget, QScrollArea, QAbstractScrollArea { - background-color: transparent; + background-color: #3c3f41; color: #bbbbbb; } -- cgit v1.3.1