mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +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
|
||||
|
||||
background: Rectangle {
|
||||
color: palette.window
|
||||
color: palette.base
|
||||
visible: root.backgroundsVisible
|
||||
}
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ TabButton {
|
|||
padding: Style.smallSpacing
|
||||
background: Rectangle {
|
||||
radius: Style.slightlyRoundedButtonRadius
|
||||
color: tabButton.pressed ? palette.highlight : palette.window
|
||||
color: tabButton.pressed ? palette.highlight : "transparent"
|
||||
}
|
||||
|
||||
contentItem: ColumnLayout {
|
||||
|
|
|
@ -251,7 +251,7 @@ ColumnLayout {
|
|||
z: Infinity
|
||||
|
||||
sourceComponent: Rectangle {
|
||||
color: palette.window
|
||||
color: palette.base
|
||||
opacity: 0.5
|
||||
|
||||
NCBusyIndicator {
|
||||
|
|
|
@ -177,7 +177,7 @@ ApplicationWindow {
|
|||
radius: Systray.useNormalWindow ? 0.0 : Style.trayWindowRadius
|
||||
border.width: Style.trayWindowBorderWidth
|
||||
border.color: palette.dark
|
||||
color: palette.window
|
||||
color: palette.base
|
||||
}
|
||||
|
||||
property var folderAccountState: ({})
|
||||
|
@ -714,16 +714,13 @@ ApplicationWindow {
|
|||
|
||||
visible: !trayWindowMainItem.isUnifiedSearchActive
|
||||
|
||||
anchors.top: trayWindowUnifiedSearchInputContainer.bottom
|
||||
anchors.bottom: trayWindowUnifiedSearchInputContainer.bottom
|
||||
anchors.left: trayWindowMainItem.left
|
||||
anchors.right: trayWindowMainItem.right
|
||||
|
||||
Rectangle {
|
||||
id: syncStatusSeparator
|
||||
|
||||
Layout.fillWidth: true
|
||||
Layout.preferredHeight: 1
|
||||
|
||||
width: parent.width
|
||||
height: 1
|
||||
color: Style.menuBorder
|
||||
}
|
||||
|
|
|
@ -46,7 +46,7 @@ MouseArea {
|
|||
Rectangle {
|
||||
id: unifiedSearchResultHoverBackground
|
||||
anchors.fill: parent
|
||||
color: parent.containsMouse ? palette.highlight : palette.window
|
||||
color: parent.containsMouse ? palette.highlight : "transparent"
|
||||
}
|
||||
|
||||
Loader {
|
||||
|
|
Loading…
Reference in a new issue