summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-06-12 15:40:28 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-06-12 15:40:28 +0200
commitddda9d5ab4b8c92d1940fb236be4b9f5cb68cdbe (patch)
tree70fdaa6eeca76be3f628c930ca7f03cb3ab73f96
parent7d3eac6e33085ffa66ff72294fc079ffd5f25b02 (diff)
downloadkube-ddda9d5ab4b8c92d1940fb236be4b9f5cb68cdbe.tar.gz
kube-ddda9d5ab4b8c92d1940fb236be4b9f5cb68cdbe.zip
different highlight for active mail in the conversation view
-rw-r--r--framework/qml/MailViewer.qml11
1 files changed, 3 insertions, 8 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml
index cd170f8f..2fc304b2 100644
--- a/framework/qml/MailViewer.qml
+++ b/framework/qml/MailViewer.qml
@@ -52,14 +52,9 @@ Rectangle {
52 enabled: root.current 52 enabled: root.current
53 } 53 }
54 54
55 //Overlay for non-active mails 55 //highlight active mails
56 Rectangle { 56 border.width: current ? 1 : 0
57 anchors.fill: parent 57 border.color: Kube.Colors.highlightColor
58 visible: !current
59 color: "lightGrey"
60 z: 1
61 opacity: 0.2
62 }
63 58
64 color: Kube.Colors.viewBackgroundColor 59 color: Kube.Colors.viewBackgroundColor
65 60