diff options
Diffstat (limited to 'framework')
-rw-r--r-- | framework/qml/ListDelegate.qml | 1 | ||||
-rw-r--r-- | framework/qml/MailListView.qml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/framework/qml/ListDelegate.qml b/framework/qml/ListDelegate.qml index 6d6a5d08..196148cb 100644 --- a/framework/qml/ListDelegate.qml +++ b/framework/qml/ListDelegate.qml | |||
@@ -27,6 +27,7 @@ T.ItemDelegate { | |||
27 | property alias color: background.color | 27 | property alias color: background.color |
28 | property alias border: background.border | 28 | property alias border: background.border |
29 | property color textColor: highlighted ? Kube.Colors.highlightedTextColor : Kube.Colors.textColor | 29 | property color textColor: highlighted ? Kube.Colors.highlightedTextColor : Kube.Colors.textColor |
30 | property color disabledTextColor: highlighted ? Kube.Colors.highlightedTextColor : Kube.Colors.disabledTextColor | ||
30 | 31 | ||
31 | height: Kube.Units.gridUnit * 3 | 32 | height: Kube.Units.gridUnit * 3 |
32 | width: root.ListView.view.width | 33 | width: root.ListView.view.width |
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml index 90f3013b..55c229db 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: !delegateRoot.highlighted ? Kube.Colors.disabledTextColor : delegateRoot.textColor | 254 | color: delegateRoot.disabledTextColor |
255 | font.pointSize: Kube.Units.tinyFontSize | 255 | font.pointSize: Kube.Units.tinyFontSize |
256 | } | 256 | } |
257 | 257 | ||