aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBramastyo Harimukti <bramastyo.harimukti.santoso@pelagicore.com>2018-06-08 17:09:13 +0200
committerBramastyo Harimukti Santoso <bramastyo.harimukti.santoso@pelagicore.com>2018-06-11 09:10:44 +0000
commitc284534cec38b0c4b6cec969939eb3cfa20a6c36 (patch)
treec08513c550082ba4ee39f2df7b008beb55e7e6e8
parent437cad006ef390ec81282923097f3bc3ff4a09c8 (diff)
[controls] use accent color for the scroll indicator
Task-number: AUTOSUITE-534 Change-Id: I1d3695730d89d76db04b1af8cbf71f0949aa6589 Reviewed-by: Dominik Holland <dominik.holland@pelagicore.com> Reviewed-by: Alexandra Betouni <ABetouni@luxoft.com>
-rw-r--r--styles/neptune/ScrollIndicator.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/styles/neptune/ScrollIndicator.qml b/styles/neptune/ScrollIndicator.qml
index 2de32754..9e6fa942 100644
--- a/styles/neptune/ScrollIndicator.qml
+++ b/styles/neptune/ScrollIndicator.qml
@@ -81,7 +81,7 @@ T.ScrollIndicator {
contentItem: Rectangle {
implicitWidth: NeptuneStyle.dp(7)
radius: width / 2
- color: NeptuneStyle.accentDetailColor
+ color: NeptuneStyle.accentColor
opacity: control.active ? 1.0 : 0.0
Behavior on opacity { DefaultNumberAnimation { duration: opacity < 0.1 ? 80 : 500 } }
visible: opacity > 0