summaryrefslogtreecommitdiffstats
path: root/components/package
diff options
context:
space:
mode:
Diffstat (limited to 'components/package')
-rw-r--r--components/package/contents/ui/MailListView.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/package/contents/ui/MailListView.qml b/components/package/contents/ui/MailListView.qml
index 75162c39..e716e984 100644
--- a/components/package/contents/ui/MailListView.qml
+++ b/components/package/contents/ui/MailListView.qml
@@ -87,6 +87,7 @@ Controls.ScrollView {
87 Text{ 87 Text{
88 text: model.subject 88 text: model.subject
89 89
90 renderType: Text.NativeRendering
90 color: mailListDelegate.checked ? Kirigami.Theme.textColor : model.unread ? "#1d99f3" : Kirigami.Theme.textColor 91 color: mailListDelegate.checked ? Kirigami.Theme.textColor : model.unread ? "#1d99f3" : Kirigami.Theme.textColor
91 font.weight: model.unread || model.important ? Font.DemiBold : Font.Normal 92 font.weight: model.unread || model.important ? Font.DemiBold : Font.Normal
92 } 93 }
@@ -94,15 +95,17 @@ Controls.ScrollView {
94 Text { 95 Text {
95 text: model.senderName 96 text: model.senderName
96 97
98 renderType: Text.NativeRendering
97 color: Kirigami.Theme.textColor 99 color: Kirigami.Theme.textColor
98 } 100 }
99 101
100 Text { 102 Text {
101 text: Qt.formatDateTime(model.date) 103 text: Qt.formatDateTime(model.date)
102 104
105 renderType: Text.NativeRendering
103 font.weight: Font.Light 106 font.weight: Font.Light
104
105 opacity: 0.5 107 opacity: 0.5
108 color: Kirigami.Theme.textColor
106 } 109 }
107 } 110 }
108 } 111 }