diff options
Diffstat (limited to 'mobile-widgets/qml/DiveList.qml')
-rw-r--r-- | mobile-widgets/qml/DiveList.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mobile-widgets/qml/DiveList.qml b/mobile-widgets/qml/DiveList.qml index 22a0e78e5..f8c82835a 100644 --- a/mobile-widgets/qml/DiveList.qml +++ b/mobile-widgets/qml/DiveList.qml @@ -12,7 +12,7 @@ Kirigami.ScrollablePage { objectName: "DiveList" title: qsTr("Dive list") background: Rectangle { - color: Kirigami.Theme.viewBackgroundColor + color: subsurfaceTheme.backgroundColor } width: subsurfaceTheme.columnWidth property int credentialStatus: manager.credentialStatus @@ -31,7 +31,7 @@ Kirigami.ScrollablePage { checked: diveListView.currentIndex === model.index width: parent.width height: diveListEntry.height + Kirigami.Units.smallSpacing - backgroundColor: checked ? subsurfaceTheme.primaryColor : Kirigami.Theme.viewBackgroundColor + backgroundColor: checked ? subsurfaceTheme.primaryColor : subsurfaceTheme.backgroundColor textColor: checked ? subsurfaceTheme.primaryTextColor : subsurfaceTheme.diveListTextColor property real detailsOpacity : 0 |