summary refs log tree commit diff
path: root/resources/qml/TimelineView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/TimelineView.qml')
-rw-r--r--resources/qml/TimelineView.qml24
1 files changed, 9 insertions, 15 deletions
diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml

index 6750b427..52847db0 100644 --- a/resources/qml/TimelineView.qml +++ b/resources/qml/TimelineView.qml
@@ -18,15 +18,13 @@ import im.nheko.EmojiModel 1.0 Page { id: timelineRoot - property var colors: currentActivePalette property var systemInactive - property var inactiveColors: currentInactivePalette ? currentInactivePalette : systemInactive readonly property int avatarSize: 40 - property real highlightHue: colors.highlight.hslHue - property real highlightSat: colors.highlight.hslSaturation - property real highlightLight: colors.highlight.hslLightness + property real highlightHue: Nheko.colors.highlight.hslHue + property real highlightSat: Nheko.colors.highlight.hslSaturation + property real highlightLight: Nheko.colors.highlight.hslLightness - palette: colors + palette: Nheko.colors FontMetrics { id: fontMetrics @@ -219,7 +217,7 @@ Page { Rectangle { anchors.fill: parent - color: colors.window + color: Nheko.colors.window Component { id: deviceVerificationDialog @@ -270,7 +268,7 @@ Page { anchors.centerIn: parent text: qsTr("No room open") font.pointSize: 24 - color: colors.text + color: Nheko.colors.text } BusyIndicator { @@ -296,7 +294,7 @@ Page { Layout.fillWidth: true height: 1 z: 3 - color: colors.mid + color: Nheko.colors.mid } Rectangle { @@ -304,7 +302,7 @@ Page { Layout.fillWidth: true Layout.fillHeight: true - color: colors.base + color: Nheko.colors.base ColumnLayout { anchors.fill: parent @@ -358,7 +356,7 @@ Page { Layout.fillWidth: true z: 3 height: 1 - color: colors.mid + color: Nheko.colors.mid } ReplyPopup { @@ -383,8 +381,4 @@ Page { timelineRoot: timelineLayout } - systemInactive: SystemPalette { - colorGroup: SystemPalette.Disabled - } - }