Compare commits

...

3 Commits

Author SHA1 Message Date
allexzander 33cb1a1a95 Merge pull request #6691 from nextcloud/bugfix/slow-sync-with-tray-open
Bugfix/slow sync with tray open
2024-04-25 14:02:12 +02:00
Matthieu Gallien 52026f7a08
Merge pull request #6700 from nextcloud/backport/6696/stable-3.12
[stable-3.12] Bugfix. Conflict dialog for multiple files. Fix checkbox border colors for dark mode on Windows.
2024-04-25 14:01:59 +02:00
Matthieu Gallien 4110712ac7 Merge pull request #6696 from nextcloud/bugfix/conflictdialog-multiple-darkmode
Bugfix. Conflict dialog for multiple files. Fix checkbox border colors for dark mode on Windows.
2024-04-25 10:56:44 +02:00
3 changed files with 55 additions and 1 deletions

View File

@ -31,6 +31,24 @@ Item {
CheckBox {
id: selectItem
palette {
text: Style.ncTextColor
windowText: Style.ncTextColor
buttonText: Style.ncTextColor
brightText: Style.ncTextBrightColor
highlight: Style.lightHover
highlightedText: Style.ncTextColor
light: Style.lightHover
midlight: Style.ncSecondaryTextColor
mid: Style.darkerHover
dark: Style.menuBorder
button: Style.buttonBackgroundColor
window: palette.dark // NOTE: Fusion theme uses darker window colour for the border of the checkbox
base: Style.backgroundColor
toolTipBase: Style.backgroundColor
toolTipText: Style.ncTextColor
}
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter

View File

@ -94,6 +94,24 @@ ApplicationWindow {
Layout.fillWidth: true
palette {
text: Style.ncTextColor
windowText: Style.ncTextColor
buttonText: Style.ncTextColor
brightText: Style.ncTextBrightColor
highlight: Style.lightHover
highlightedText: Style.ncTextColor
light: Style.lightHover
midlight: Style.ncSecondaryTextColor
mid: Style.darkerHover
dark: Style.menuBorder
button: Style.buttonBackgroundColor
window: palette.dark // NOTE: Fusion theme uses darker window colour for the border of the checkbox
base: Style.backgroundColor
toolTipBase: Style.backgroundColor
toolTipText: Style.ncTextColor
}
text: qsTr('All local versions')
leftPadding: 0
@ -112,6 +130,24 @@ ApplicationWindow {
Layout.fillWidth: true
palette {
text: Style.ncTextColor
windowText: Style.ncTextColor
buttonText: Style.ncTextColor
brightText: Style.ncTextBrightColor
highlight: Style.lightHover
highlightedText: Style.ncTextColor
light: Style.lightHover
midlight: Style.ncSecondaryTextColor
mid: Style.darkerHover
dark: Style.menuBorder
button: Style.buttonBackgroundColor
window: palette.dark // NOTE: Fusion theme uses darker window colour for the border of the checkbox
base: Style.backgroundColor
toolTipBase: Style.backgroundColor
toolTipText: Style.ncTextColor
}
text: qsTr('All server versions')
leftPadding: 0

View File

@ -34,7 +34,7 @@ RowLayout {
padding: 0
imageSource: syncStatus.syncIcon
running: syncStatus.syncing
running: false // hotfix for download speed slowdown when tray is open
}
ColumnLayout {