summaryrefslogtreecommitdiffstats
path: root/views/log
diff options
context:
space:
mode:
Diffstat (limited to 'views/log')
-rw-r--r--views/log/qml/View.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml
index b710267d..560a4cff 100644
--- a/views/log/qml/View.qml
+++ b/views/log/qml/View.qml
@@ -99,6 +99,7 @@ Controls1.SplitView {
99 } 99 }
100 100
101 delegate: Kube.ListDelegate { 101 delegate: Kube.ListDelegate {
102 id: delegateRoot
102 border.color: Kube.Colors.buttonColor 103 border.color: Kube.Colors.buttonColor
103 border.width: 1 104 border.width: 1
104 Kube.Label { 105 Kube.Label {
@@ -126,7 +127,7 @@ Controls1.SplitView {
126 width: parent.width - Kube.Units.largeSpacing * 2 127 width: parent.width - Kube.Units.largeSpacing * 2
127 maximumLineCount: 1 128 maximumLineCount: 1
128 elide: Text.ElideRight 129 elide: Text.ElideRight
129 color: Kube.Colors.disabledTextColor 130 color: delegateRoot.disabledTextColor
130 text: model.message 131 text: model.message
131 } 132 }
132 133
@@ -140,7 +141,7 @@ Controls1.SplitView {
140 } 141 }
141 text: Qt.formatDateTime(model.timestamp, " hh:mm:ss dd MMM yyyy") 142 text: Qt.formatDateTime(model.timestamp, " hh:mm:ss dd MMM yyyy")
142 font.italic: true 143 font.italic: true
143 color: Kube.Colors.disabledTextColor 144 color: delegateRoot.disabledTextColor
144 font.pointSize: Kube.Units.smallFontSize 145 font.pointSize: Kube.Units.smallFontSize
145 } 146 }
146 } 147 }