mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-24 14:05:58 +03:00
Merge pull request #4986 from nextcloud/bugfix/sync-progress-bar-dark
Fix sync progress bar colours in dark mode
This commit is contained in:
commit
9078cca682
1 changed files with 15 additions and 0 deletions
|
@ -68,6 +68,21 @@ RowLayout {
|
||||||
sourceComponent: ProgressBar {
|
sourceComponent: ProgressBar {
|
||||||
id: syncProgressBar
|
id: syncProgressBar
|
||||||
|
|
||||||
|
// TODO: Rather than setting all these palette colours manually,
|
||||||
|
// create a custom style and do it for all components globally
|
||||||
|
palette {
|
||||||
|
text: Style.ncTextColor
|
||||||
|
windowText: Style.ncTextColor
|
||||||
|
buttonText: Style.ncTextColor
|
||||||
|
light: Style.lightHover
|
||||||
|
midlight: Style.lightHover
|
||||||
|
mid: Style.ncSecondaryTextColor
|
||||||
|
dark: Style.menuBorder
|
||||||
|
button: Style.menuBorder
|
||||||
|
window: Style.backgroundColor
|
||||||
|
base: Style.backgroundColor
|
||||||
|
}
|
||||||
|
|
||||||
value: syncStatus.syncProgress
|
value: syncStatus.syncProgress
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue