summaryrefslogtreecommitdiffstats
path: root/views/log/qml/View.qml
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-04 10:05:17 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-04 10:05:17 +0200
commit46b1a246642a0aafbf8032f0bbf7a515daeba103 (patch)
treed3cd3a4d7a0be0be84675a40c24c5d3729fe4db8 /views/log/qml/View.qml
parenta69789502feb0235bddad0cf3cb9ed9ca7554632 (diff)
downloadkube-46b1a246642a0aafbf8032f0bbf7a515daeba103.tar.gz
kube-46b1a246642a0aafbf8032f0bbf7a515daeba103.zip
Control disabledTextColor from the delegate as well
Diffstat (limited to 'views/log/qml/View.qml')
-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 }