summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-05-03 15:51:27 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-05-03 15:51:27 +0200
commitd33eb2ea64172240c0b26f9945cfffa6935d7cfa (patch)
tree260462b8fa67316860ebd29a839309f8da7492a5 /components
parent05cf495c9cae08e172af4c23f9ea63859145eb63 (diff)
downloadkube-d33eb2ea64172240c0b26f9945cfffa6935d7cfa.tar.gz
kube-d33eb2ea64172240c0b26f9945cfffa6935d7cfa.zip
use seperation border instead of different color for sidebar
Diffstat (limited to 'components')
-rw-r--r--components/kube/contents/ui/Kube.qml12
1 files changed, 9 insertions, 3 deletions
diff --git a/components/kube/contents/ui/Kube.qml b/components/kube/contents/ui/Kube.qml
index dc89e69b..b5eee31f 100644
--- a/components/kube/contents/ui/Kube.qml
+++ b/components/kube/contents/ui/Kube.qml
@@ -102,7 +102,15 @@ Controls2.ApplicationWindow {
102 bottom: mainContent.bottom 102 bottom: mainContent.bottom
103 } 103 }
104 width: Kube.Units.gridUnit + Kube.Units.largeSpacing 104 width: Kube.Units.gridUnit + Kube.Units.largeSpacing
105 color: Kube.Colors.statusbarColor 105 color: Kube.Colors.textColor
106
107 Rectangle {
108 anchors.right: parent.right
109 width: 1
110 height: parent.height
111 color: Kube.Colors.viewBackgroundColor
112 opacity: 0.3
113 }
106 114
107 Column { 115 Column {
108 anchors { 116 anchors {
@@ -171,8 +179,6 @@ Controls2.ApplicationWindow {
171 function openComposerWithMail(mail, openAsDraft) { 179 function openComposerWithMail(mail, openAsDraft) {
172 kubeViews.push({item: composerView, immediate: true, properties: {message: mail, loadAsDraft: openAsDraft}}) 180 kubeViews.push({item: composerView, immediate: true, properties: {message: mail, loadAsDraft: openAsDraft}})
173 } 181 }
174
175
176 //Not components so we maintain state 182 //Not components so we maintain state
177 MailView { 183 MailView {
178 id: mailView 184 id: mailView