diff options
| author | Al <gabriel.cortesi@outlook.com> | 2019-01-01 22:10:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-01 22:10:56 +0100 |
| commit | 523cb203ce5da9d70cafe9d00e3e48d62c066755 (patch) | |
| tree | 2d255de69f5c09b4ede269f16adec2bfcc7821d5 /src/stylesheets/dracula.qss | |
| parent | 619a0887d8ce109f384690317adbd253e3ad6ae6 (diff) | |
| parent | 6fa416fc52f21ddb3eebcd1568baf8394e89ef6b (diff) | |
Merge pull request #606 from przester/download-tab
Revamp the downloads tab, fix some UI bugs
Diffstat (limited to 'src/stylesheets/dracula.qss')
| -rw-r--r-- | src/stylesheets/dracula.qss | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/src/stylesheets/dracula.qss b/src/stylesheets/dracula.qss index 99cf918d..385fca16 100644 --- a/src/stylesheets/dracula.qss +++ b/src/stylesheets/dracula.qss @@ -394,4 +394,32 @@ SaveGameInfoWidget { DownloadListWidget QLabel#installLabel { color: none; -}
\ No newline at end of file +} + +DownloadListWidget[downloadView=standard]::item { + padding: 16px; +} + +DownloadListWidget[downloadView=compact]::item { + padding: 4px; +} + +DownloadListWidget::item:hover { + padding: 0px; +} + +DownloadListWidget::item:selected { + padding: 0px; +} + +QProgressBar +{ + border: 2px solid grey; + border-radius: 5px; + text-align: center; +} + +QProgressBar::chunk +{ + background-color: #427683; +} |
