diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-06-29 16:47:49 +0200 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-06-29 16:47:49 +0200 |
commit | 4e338ae323fc6fcdfb641cf463f60946bcbbc60e (patch) | |
tree | e972ac393c35d488ad4c3840fe650cad6d56269c | |
parent | b390d0e43a803861268d68deefca03b09d6731f3 (diff) | |
download | kube-4e338ae323fc6fcdfb641cf463f60946bcbbc60e.tar.gz kube-4e338ae323fc6fcdfb641cf463f60946bcbbc60e.zip |
White date when selected.
This provides much better contrast.
-rw-r--r-- | framework/qml/MailListView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index 3569b0c3..f26041c2 100644 --- a/framework/qml/MailListView.qml +++ b/framework/qml/MailListView.qml | |||
@@ -251,7 +251,7 @@ FocusScope { | |||
251 | visible: !delegateRoot.hovered | 251 | visible: !delegateRoot.hovered |
252 | text: Qt.formatDateTime(model.date, "dd MMM yyyy") | 252 | text: Qt.formatDateTime(model.date, "dd MMM yyyy") |
253 | font.italic: true | 253 | font.italic: true |
254 | color: Kube.Colors.disabledTextColor | 254 | color: !delegateRoot.highlighted ? Kube.Colors.disabledTextColor : delegateRoot.textColor |
255 | font.pointSize: Kube.Units.tinyFontSize | 255 | font.pointSize: Kube.Units.tinyFontSize |
256 | } | 256 | } |
257 | 257 | ||