diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-11-02 09:28:20 +0100 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-11-02 09:28:20 +0100 |
commit | cd602feafc99cd5ebc51096a9f8fbdce9e742849 (patch) | |
tree | 48a19f809c45209dab9bdc8cc59051922958117c /framework/qml | |
parent | ed91fe6cddd689382f23167c1136e3a8386df0b5 (diff) | |
download | kube-cd602feafc99cd5ebc51096a9f8fbdce9e742849.tar.gz kube-cd602feafc99cd5ebc51096a9f8fbdce9e742849.zip |
place popup notificaitons at the bottom
Diffstat (limited to 'framework/qml')
-rw-r--r-- | framework/qml/NotificationPopup.qml | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/framework/qml/NotificationPopup.qml b/framework/qml/NotificationPopup.qml index e5865881..0d51d485 100644 --- a/framework/qml/NotificationPopup.qml +++ b/framework/qml/NotificationPopup.qml | |||
@@ -25,7 +25,7 @@ MouseArea { | |||
25 | 25 | ||
26 | function notify(text) { | 26 | function notify(text) { |
27 | popup.title = text | 27 | popup.title = text |
28 | bg.color = Kube.Colors.textColor | 28 | bg.color = Kube.Colors.buttonColor |
29 | show() | 29 | show() |
30 | } | 30 | } |
31 | 31 | ||
@@ -53,10 +53,10 @@ MouseArea { | |||
53 | 53 | ||
54 | Rectangle { | 54 | Rectangle { |
55 | id: bg | 55 | id: bg |
56 | |||
57 | anchors.fill: parent | 56 | anchors.fill: parent |
58 | 57 | border.width: 1 | |
59 | opacity: 0.6 | 58 | border.color: Kube.Colors.textColor |
59 | opacity: 0.9 | ||
60 | } | 60 | } |
61 | 61 | ||
62 | Kube.Label { | 62 | Kube.Label { |
@@ -72,7 +72,6 @@ MouseArea { | |||
72 | 72 | ||
73 | font.pixelSize: 16 | 73 | font.pixelSize: 16 |
74 | 74 | ||
75 | color: Kube.Colors.highlightedTextColor | ||
76 | horizontalAlignment: Text.AlignHCenter | 75 | horizontalAlignment: Text.AlignHCenter |
77 | elide: Text.ElideRight | 76 | elide: Text.ElideRight |
78 | wrapMode: Text.Wrap | 77 | wrapMode: Text.Wrap |