diff options
author | Joakim Bygdell <j.bygdell@gmail.com> | 2017-07-08 16:19:53 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-09 03:06:04 +0900 |
commit | aa5060669cc78a3277c63d918acd629478c2abf8 (patch) | |
tree | 9e73c5ceb215306801a17ab6312d85259401a98f /mobile-widgets/qml/DiveDetailsView.qml | |
parent | b9a05e501be9870e01cf27ef23bdea08696d9ad1 (diff) | |
download | subsurface-aa5060669cc78a3277c63d918acd629478c2abf8.tar.gz |
QML UI: Style Dive Details View
Change the accent colors in the dive details view
to match the theme colors.
Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com>
Diffstat (limited to 'mobile-widgets/qml/DiveDetailsView.qml')
-rw-r--r-- | mobile-widgets/qml/DiveDetailsView.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mobile-widgets/qml/DiveDetailsView.qml b/mobile-widgets/qml/DiveDetailsView.qml index c8c7e3a55..adea41168 100644 --- a/mobile-widgets/qml/DiveDetailsView.qml +++ b/mobile-widgets/qml/DiveDetailsView.qml @@ -142,7 +142,7 @@ Item { color: "transparent" opacity: 0.6 border.width: 1 - border.color: subsurfaceTheme.darkPrimaryColor + border.color: subsurfaceTheme.darkerPrimaryColor anchors.fill: parent } } @@ -199,7 +199,7 @@ Item { } Rectangle { - color: subsurfaceTheme.darkPrimaryColor + color: subsurfaceTheme.darkerPrimaryColor height: 1 opacity: 0.5 Layout.columnSpan: 3 @@ -252,7 +252,7 @@ Item { } Rectangle { - color: subsurfaceTheme.darkPrimaryColor + color: subsurfaceTheme.darkerPrimaryColor height: 1 opacity: 0.5 Layout.columnSpan: 3 @@ -294,7 +294,7 @@ Item { } Rectangle { - color: subsurfaceTheme.darkPrimaryColor + color: subsurfaceTheme.darkerPrimaryColor height: 1 opacity: 0.5 Layout.columnSpan: 3 |