Fix some more colours

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2024-11-14 18:24:01 +08:00
parent 18df69c657
commit 3ffbc66fa0
No known key found for this signature in database
GPG key ID: C839200C384636B0
5 changed files with 7 additions and 10 deletions

View file

@ -69,7 +69,7 @@ Page {
bottomPadding: intendedPadding bottomPadding: intendedPadding
background: Rectangle { background: Rectangle {
color: palette.window color: palette.base
visible: root.backgroundsVisible visible: root.backgroundsVisible
} }

View file

@ -29,7 +29,7 @@ TabButton {
padding: Style.smallSpacing padding: Style.smallSpacing
background: Rectangle { background: Rectangle {
radius: Style.slightlyRoundedButtonRadius radius: Style.slightlyRoundedButtonRadius
color: tabButton.pressed ? palette.highlight : palette.window color: tabButton.pressed ? palette.highlight : "transparent"
} }
contentItem: ColumnLayout { contentItem: ColumnLayout {

View file

@ -251,7 +251,7 @@ ColumnLayout {
z: Infinity z: Infinity
sourceComponent: Rectangle { sourceComponent: Rectangle {
color: palette.window color: palette.base
opacity: 0.5 opacity: 0.5
NCBusyIndicator { NCBusyIndicator {

View file

@ -177,7 +177,7 @@ ApplicationWindow {
radius: Systray.useNormalWindow ? 0.0 : Style.trayWindowRadius radius: Systray.useNormalWindow ? 0.0 : Style.trayWindowRadius
border.width: Style.trayWindowBorderWidth border.width: Style.trayWindowBorderWidth
border.color: palette.dark border.color: palette.dark
color: palette.window color: palette.base
} }
property var folderAccountState: ({}) property var folderAccountState: ({})
@ -714,16 +714,13 @@ ApplicationWindow {
visible: !trayWindowMainItem.isUnifiedSearchActive visible: !trayWindowMainItem.isUnifiedSearchActive
anchors.top: trayWindowUnifiedSearchInputContainer.bottom anchors.bottom: trayWindowUnifiedSearchInputContainer.bottom
anchors.left: trayWindowMainItem.left anchors.left: trayWindowMainItem.left
anchors.right: trayWindowMainItem.right anchors.right: trayWindowMainItem.right
Rectangle { Rectangle {
id: syncStatusSeparator id: syncStatusSeparator
width: parent.width
Layout.fillWidth: true
Layout.preferredHeight: 1
height: 1 height: 1
color: Style.menuBorder color: Style.menuBorder
} }

View file

@ -46,7 +46,7 @@ MouseArea {
Rectangle { Rectangle {
id: unifiedSearchResultHoverBackground id: unifiedSearchResultHoverBackground
anchors.fill: parent anchors.fill: parent
color: parent.containsMouse ? palette.highlight : palette.window color: parent.containsMouse ? palette.highlight : "transparent"
} }
Loader { Loader {