From f3ee7a0566a92037223c8528340d697a6ef2499e Mon Sep 17 00:00:00 2001 From: Krzysztof Starecki Date: Mon, 31 Dec 2018 19:35:52 +0100 Subject: Port the 'Night Eyes' theme --- src/stylesheets/Night Eyes.qss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/stylesheets/Night Eyes.qss') diff --git a/src/stylesheets/Night Eyes.qss b/src/stylesheets/Night Eyes.qss index e9bb6c44..860f1283 100644 --- a/src/stylesheets/Night Eyes.qss +++ b/src/stylesheets/Night Eyes.qss @@ -648,3 +648,19 @@ DownloadListWidgetCompact QLabel background: #141414; padding: 4px; } + +DownloadListWidget[downloadView=standard]::item { + padding: 16px; +} + +DownloadListWidget[downloadView=compact]::item { + padding: 4px; +} + +QProgressBar +{ + border: 2px solid grey; + border-radius: 5px; + text-align: center; + margin: 0px; +} \ No newline at end of file -- cgit v1.3.1 From ad752182bc6d25512c94a47b48aa02e845466f27 Mon Sep 17 00:00:00 2001 From: Krzysztof Starecki Date: Tue, 1 Jan 2019 18:31:17 +0100 Subject: Fix download entry padding issues --- src/stylesheets/Night Eyes.qss | 8 ++++++++ src/stylesheets/dracula.qss | 12 ++++++++++-- 2 files changed, 18 insertions(+), 2 deletions(-) (limited to 'src/stylesheets/Night Eyes.qss') diff --git a/src/stylesheets/Night Eyes.qss b/src/stylesheets/Night Eyes.qss index 860f1283..6c6b0629 100644 --- a/src/stylesheets/Night Eyes.qss +++ b/src/stylesheets/Night Eyes.qss @@ -657,6 +657,14 @@ DownloadListWidget[downloadView=compact]::item { padding: 4px; } +DownloadListWidget::item:hover { + padding: 0px; +} + +DownloadListWidget::item:selected { + padding: 0px; +} + QProgressBar { border: 2px solid grey; diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss index 33ce5f66..385fca16 100644 --- a/src/stylesheets/dracula.qss +++ b/src/stylesheets/dracula.qss @@ -397,11 +397,19 @@ SaveGameInfoWidget { } DownloadListWidget[downloadView=standard]::item { - padding: 16px; + padding: 16px; } DownloadListWidget[downloadView=compact]::item { - padding: 4px; + padding: 4px; +} + +DownloadListWidget::item:hover { + padding: 0px; +} + +DownloadListWidget::item:selected { + padding: 0px; } QProgressBar -- cgit v1.3.1