diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-06-12 15:40:28 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-06-12 15:40:28 +0200 |
commit | ddda9d5ab4b8c92d1940fb236be4b9f5cb68cdbe (patch) | |
tree | 70fdaa6eeca76be3f628c930ca7f03cb3ab73f96 /framework/qml/MailViewer.qml | |
parent | 7d3eac6e33085ffa66ff72294fc079ffd5f25b02 (diff) | |
download | kube-ddda9d5ab4b8c92d1940fb236be4b9f5cb68cdbe.tar.gz kube-ddda9d5ab4b8c92d1940fb236be4b9f5cb68cdbe.zip |
different highlight for active mail in the conversation view
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 11 |
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 | ||