Fix some more colours
authorClaudio Cambra <claudio.cambra@nextcloud.com>
Thu, 14 Nov 2024 10:24:01 +0000 (18:24 +0800)
committerClaudio Cambra <claudio.cambra@nextcloud.com>
Thu, 21 Nov 2024 05:20:59 +0000 (13:20 +0800)
Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
src/gui/filedetails/FileDetailsPage.qml
src/gui/filedetails/NCTabButton.qml
src/gui/filedetails/ShareView.qml
src/gui/tray/MainWindow.qml
src/gui/tray/UnifiedSearchResultListItem.qml

index 6c0bac5af3899c7505c7c450f767d2303494b74d..de3bdb9801798031bbaf8c358394a3a3356e97a3 100644 (file)
@@ -69,7 +69,7 @@ Page {
     bottomPadding: intendedPadding
 
     background: Rectangle {
-        color: palette.window
+        color: palette.base
         visible: root.backgroundsVisible
     }
 
index 2f53254489e05a5f3f73182f88d72bf93e25db8c..48e2fecccabecf8abae48e1a12631b26efda2b6a 100644 (file)
@@ -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 {
index d5c63e8d6b9357d2902affa289ca315253529bc5..1a6831ed143d00194c432acb0d5396d553e0d612 100644 (file)
@@ -251,7 +251,7 @@ ColumnLayout {
                     z: Infinity
 
                     sourceComponent: Rectangle {
-                        color: palette.window
+                        color: palette.base
                         opacity: 0.5
 
                         NCBusyIndicator {
index 1b5c847f3aa70bb8ec1569764bf2d6af95e26f33..652339bd84936d19140f6b26e0647cd9fec8437e 100644 (file)
@@ -177,7 +177,7 @@ ApplicationWindow {
             radius: Systray.useNormalWindow ? 0.0 : Style.trayWindowRadius\r
             border.width: Style.trayWindowBorderWidth\r
             border.color: palette.dark\r
-            color: palette.window\r
+            color: palette.base\r
         }\r
 \r
         property var folderAccountState: ({})\r
@@ -714,16 +714,13 @@ ApplicationWindow {
 \r
             visible: !trayWindowMainItem.isUnifiedSearchActive\r
 \r
-            anchors.top: trayWindowUnifiedSearchInputContainer.bottom\r
+            anchors.bottom: trayWindowUnifiedSearchInputContainer.bottom\r
             anchors.left: trayWindowMainItem.left\r
             anchors.right: trayWindowMainItem.right\r
 \r
             Rectangle {\r
                 id: syncStatusSeparator\r
-\r
-                Layout.fillWidth: true\r
-                Layout.preferredHeight: 1\r
-\r
+                width: parent.width\r
                 height: 1\r
                 color: Style.menuBorder\r
             }\r
index a69855c53ae23527d84df05f25c7a84252fd20f0..bc3588e6e527f61e5abf74e5e92e2a6c0b82f2ec 100644 (file)
@@ -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 {