diff --git a/mix/qml/LogsPane.qml b/mix/qml/LogsPane.qml index 8956abdf2..9d03b2af2 100644 --- a/mix/qml/LogsPane.qml +++ b/mix/qml/LogsPane.qml @@ -277,7 +277,7 @@ Rectangle Rectangle { width: logsTable.width - 4 height: 17 - color: styleData.alternate ? "transparent" : "#f0f0f0" + color: styleData.alternate ? "transparent" : LogsPaneStyle.generic.layout.logAlternateColor } } } diff --git a/mix/qml/LogsPaneStyle.qml b/mix/qml/LogsPaneStyle.qml index c47ee6338..59b80653a 100644 --- a/mix/qml/LogsPaneStyle.qml +++ b/mix/qml/LogsPaneStyle.qml @@ -23,6 +23,7 @@ QtObject { property int dateWidth: 150 property int typeWidth: 80 property int contentWidth: 700 + property string logAlternateColor: "#f0f0f0" } } }