mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 06:55:59 +03:00
Fix some more colours
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
parent
18df69c657
commit
3ffbc66fa0
5 changed files with 7 additions and 10 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue