diff options
| author | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2019-01-01 18:31:17 +0100 |
|---|---|---|
| committer | Krzysztof Starecki <krzysztof.starecki@gmail.com> | 2019-01-01 18:31:17 +0100 |
| commit | ad752182bc6d25512c94a47b48aa02e845466f27 (patch) | |
| tree | 6a605d6ddb9584ec93eec89159dc0fece4102ddc /src/stylesheets | |
| parent | 63b21894160bf10675b36a4519afccdef6567900 (diff) | |
Fix download entry padding issues
Diffstat (limited to 'src/stylesheets')
| -rw-r--r-- | src/stylesheets/Night Eyes.qss | 8 | ||||
| -rw-r--r-- | src/stylesheets/dracula.qss | 12 |
2 files changed, 18 insertions, 2 deletions
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 |
