diff --git a/qml/EntriesPage.qml b/qml/EntriesPage.qml index 9b92088..a146647 100644 --- a/qml/EntriesPage.qml +++ b/qml/EntriesPage.qml @@ -50,9 +50,6 @@ Kirigami.ScrollablePage { shortcut: "Ctrl+Shift+A" } ] - background: Rectangle { - color: Kirigami.Theme.backgroundColor - } // dialog to confirm deletion of an entry BasicDialog { diff --git a/qml/FieldsDelegate.qml b/qml/FieldsDelegate.qml index 276b67a..d668242 100644 --- a/qml/FieldsDelegate.qml +++ b/qml/FieldsDelegate.qml @@ -40,7 +40,6 @@ Item { } return pieces.join(": ") } - color: palette.text verticalAlignment: Text.AlignVCenter } } diff --git a/qml/FieldsPage.qml b/qml/FieldsPage.qml index 7204e88..0d39782 100644 --- a/qml/FieldsPage.qml +++ b/qml/FieldsPage.qml @@ -25,9 +25,6 @@ Kirigami.ScrollablePage { shortcut: "Ctrl+Shift+A" } ] - background: Rectangle { - color: Kirigami.Theme.backgroundColor - } // dialog to edit certain field BasicDialog { diff --git a/qml/PasswordDialog.qml b/qml/PasswordDialog.qml index 8a0120b..4d13fc6 100644 --- a/qml/PasswordDialog.qml +++ b/qml/PasswordDialog.qml @@ -44,11 +44,6 @@ BasicDialog { placeholderText: newPassword ? qsTr("enter password here, leave empty for no encryption") : qsTr("enter password here") - color: "#101010" - placeholderTextColor: "#505050" - background: Rectangle { - border.color: "#5d5e6d" - } Keys.onPressed: (event) => passwordDialog.acceptOnReturn(event) } Controls.TextField { @@ -58,11 +53,6 @@ BasicDialog { enabled: visible && !showCharactersCheckBox.checked echoMode: TextInput.Password placeholderText: qsTr("repeat password") - color: "#101010" - placeholderTextColor: "#505050" - background: Rectangle { - border.color: passwordDialog.canAccept ? "#089900" : "#ff0000" - } Keys.onPressed: passwordDialog.acceptOnReturn(event) } Controls.CheckBox {