From 72a3a8fbcca75d450b94a01e84056d0a168451d4 Mon Sep 17 00:00:00 2001 From: Quentin Rouland Date: Tue, 4 Feb 2025 16:17:28 +0100 Subject: [PATCH] Fix password page color issues with dark theme --- qml/components/CopyText.qml | 2 ++ qml/pages/Password.qml | 1 + 2 files changed, 3 insertions(+) diff --git a/qml/components/CopyText.qml b/qml/components/CopyText.qml index dc1e2f8..fa98be1 100644 --- a/qml/components/CopyText.qml +++ b/qml/components/CopyText.qml @@ -19,12 +19,14 @@ Item { Rectangle { anchors.fill: parent + color: theme.palette.normal.background Text { text: copyText.text anchors.left: parent.left anchors.leftMargin: units.gu(2) anchors.verticalCenter: parent.verticalCenter + color: theme.palette.normal.backgroundText } Icon { diff --git a/qml/pages/Password.qml b/qml/pages/Password.qml index f97acfb..aa4f174 100644 --- a/qml/pages/Password.qml +++ b/qml/pages/Password.qml @@ -26,6 +26,7 @@ Page { anchors.bottom: parent.bottom anchors.right: parent.right anchors.left: parent.left + color: theme.palette.normal.background Flow { id: container