summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-04-26 12:39:33 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-04-26 12:39:33 +0200
commit3442e810fc4d139e86cb5f7b122f72e7c7aaee69 (patch)
treeb31b4cee9e35a311d0861fccbd86959c8a2887a8
parent7edf665dbac268595dda5d9e5363975af71198f2 (diff)
downloadkube-3442e810fc4d139e86cb5f7b122f72e7c7aaee69.tar.gz
kube-3442e810fc4d139e86cb5f7b122f72e7c7aaee69.zip
use inverted icons in maillist buttons
-rw-r--r--framework/qml/IconButton.qml4
-rw-r--r--framework/qml/Icons.qml10
2 files changed, 8 insertions, 6 deletions
diff --git a/framework/qml/IconButton.qml b/framework/qml/IconButton.qml
index 13f817a0..a0cd704f 100644
--- a/framework/qml/IconButton.qml
+++ b/framework/qml/IconButton.qml
@@ -35,7 +35,9 @@ T.Button {
35 hoverEnabled: true 35 hoverEnabled: true
36 36
37 background: Rectangle { 37 background: Rectangle {
38 color: Kube.Colors.buttonColor 38 color: "#2980b9" //FIXME
39
40 visible: root.hovered == true
39 41
40 Rectangle { 42 Rectangle {
41 anchors.fill: parent 43 anchors.fill: parent
diff --git a/framework/qml/Icons.qml b/framework/qml/Icons.qml
index ee706d95..e2a42987 100644
--- a/framework/qml/Icons.qml
+++ b/framework/qml/Icons.qml
@@ -32,11 +32,11 @@ Item {
32 property string success: "dialog-ok" 32 property string success: "dialog-ok"
33 property string success_inverted: "dialog-ok-inverted" 33 property string success_inverted: "dialog-ok-inverted"
34 34
35 property string markAsRead: "mail-mark-unread-new" 35 property string markAsRead: "mail-mark-unread-new-inverted"
36 property string markAsUnread: "mail-mark-unread-new" 36 property string markAsUnread: "mail-mark-unread-new-inverted"
37 property string markImportant: "mail-mark-important" 37 property string markImportant: "mail-mark-important-inverted"
38 property string undo: "edit-undo" 38 property string undo: "edit-undo-inverted"
39 property string moveToTrash: "edit-delete" 39 property string moveToTrash: "edit-delete-inverted"
40 property string edit: "document-edit" 40 property string edit: "document-edit"
41 property string replyToSender: "mail-reply-sender" 41 property string replyToSender: "mail-reply-sender"
42 property string outbox: "mail-folder-outbox" 42 property string outbox: "mail-folder-outbox"