summaryrefslogtreecommitdiffstats
path: root/qt-mobile
diff options
context:
space:
mode:
authorGravatar Grace Karanja <gracie.karanja89@gmail.com>2015-06-10 18:19:19 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-06-20 14:27:39 -0700
commit28ab1f6413c7ec6e03ecd0cbdb682b261beba305 (patch)
tree1ec58cff3825de6e0c02d6e5b1c5103136def12a /qt-mobile
parentb7e4b35cde1f1a6be01818eac94732186a1b99ab (diff)
downloadsubsurface-28ab1f6413c7ec6e03ecd0cbdb682b261beba305.tar.gz
Better theme for dive list view
Set a rounded blue rectangle on the selected item. Signed-off-by: Grace Karanja <gracie.karanja89@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-mobile')
-rw-r--r--qt-mobile/main.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index ab147a2b4..a3da04d9c 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -69,7 +69,8 @@ ApplicationWindow {
id: highlightBar
Rectangle {
width: parent.width; height: 50
- color: "#FFFF88"
+ color: "lightsteelblue"
+ radius: 5
y: diveListView.currentItem.y;
Behavior on y { SpringAnimation { spring: 2; damping: 0.1 } }
}