summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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