diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-03-20 10:14:22 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-03-20 10:14:22 +0100 |
commit | 7453740335ab416a93b1b198bf48e49b0eea548c (patch) | |
tree | 034829660532f8e67864d36dc6e7b1e1a602371e /components/package/contents/ui | |
parent | c3ba13d4240005cb9e7bdaca5977114e74bd0e9a (diff) | |
download | kube-7453740335ab416a93b1b198bf48e49b0eea548c.tar.gz kube-7453740335ab416a93b1b198bf48e49b0eea548c.zip |
change notificaiton color
Diffstat (limited to 'components/package/contents/ui')
-rw-r--r-- | components/package/contents/ui/Notification.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/package/contents/ui/Notification.qml b/components/package/contents/ui/Notification.qml index 21a6490c..51f06512 100644 --- a/components/package/contents/ui/Notification.qml +++ b/components/package/contents/ui/Notification.qml | |||
@@ -23,7 +23,7 @@ MouseArea { | |||
23 | 23 | ||
24 | function notify(text) { | 24 | function notify(text) { |
25 | popup.title = text | 25 | popup.title = text |
26 | bg.color = Kirigami.Theme.highlightColor | 26 | bg.color = Kirigami.Theme.textColor |
27 | show() | 27 | show() |
28 | } | 28 | } |
29 | 29 | ||
@@ -56,7 +56,10 @@ MouseArea { | |||
56 | 56 | ||
57 | Rectangle { | 57 | Rectangle { |
58 | id: bg | 58 | id: bg |
59 | |||
59 | anchors.fill: parent | 60 | anchors.fill: parent |
61 | |||
62 | opacity: 0.6 | ||
60 | } | 63 | } |
61 | 64 | ||
62 | Label { | 65 | Label { |