summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-06-18 16:54:22 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-06-18 16:54:22 +0200
commitd2c8ab1862b2cfe9deb645f7cc46eb2caf42dafb (patch)
tree8988ef0e48464566355cc2e83a89e324a94a34c0 /components
parent98470c504f9601b9bbe8c6be24eff4a96e9b4b14 (diff)
downloadkube-d2c8ab1862b2cfe9deb645f7cc46eb2caf42dafb.tar.gz
kube-d2c8ab1862b2cfe9deb645f7cc46eb2caf42dafb.zip
use kirigami theme instead of colorpalette
Diffstat (limited to 'components')
-rw-r--r--components/package/contents/ui/EditAccountDialog.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/components/package/contents/ui/EditAccountDialog.qml b/components/package/contents/ui/EditAccountDialog.qml
index d065bbc2..b450e5d6 100644
--- a/components/package/contents/ui/EditAccountDialog.qml
+++ b/components/package/contents/ui/EditAccountDialog.qml
@@ -31,7 +31,7 @@ Rectangle {
31 property variant uiSource 31 property variant uiSource
32 property variant accountId 32 property variant accountId
33 33
34 color: ColorPalette.border 34 color: Kirigami.Theme.textColor
35 opacity: 0.9 35 opacity: 0.9
36 36
37 MouseArea { 37 MouseArea {
@@ -48,7 +48,7 @@ Rectangle {
48 height: root.height * 0.8 48 height: root.height * 0.8
49 width: root.width * 0.8 49 width: root.width * 0.8
50 50
51 color: ColorPalette.background 51 color: Kirigami.Theme.backgroundColor
52 52
53 MouseArea { 53 MouseArea {
54 anchors.fill: parent 54 anchors.fill: parent
@@ -60,7 +60,5 @@ Rectangle {
60 source: root.uiSource 60 source: root.uiSource
61 onLoaded: item.accountId = root.accountId 61 onLoaded: item.accountId = root.accountId
62 } 62 }
63
64 Component.onCompleted: console.log(uiSource)
65 } 63 }
66} 64}