aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/SpinBox.qml
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@theqtcompany.com>2015-12-04 16:18:10 +0100
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-12-04 15:41:58 +0000
commite80e59061822013cc4857d58bcf8acaeafc1ad63 (patch)
tree8b8626e84ada6ee427d3b295c950aa420e3eb089 /src/imports/controls/SpinBox.qml
parent435c23be984691e3de645ae8ddff440e5f1786dd (diff)
Adapt default style to latest designs
Press fill colours were changed. Change-Id: Ic15039576c4e26aeef9933dab6fb0a0689550ab2 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/SpinBox.qml')
-rw-r--r--src/imports/controls/SpinBox.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/imports/controls/SpinBox.qml b/src/imports/controls/SpinBox.qml
index ff27d8ba..3933f5ab 100644
--- a/src/imports/controls/SpinBox.qml
+++ b/src/imports/controls/SpinBox.qml
@@ -67,7 +67,7 @@ T.SpinBox {
text: control.textFromValue(control.value, control.locale)
font: control.font
- color: control.enabled ? "#353637" : "#bdbebf"
+ color: "#353637"
// selectionColor: TODO
// selectedTextColor: TODO
horizontalAlignment: Qt.AlignHCenter
@@ -83,7 +83,7 @@ T.SpinBox {
x: control.mirrored ? 0 : parent.width - width
implicitWidth: 40
implicitHeight: 40
- color: up.pressed ? "#bdbebf" : "#ffffff"
+ color: up.pressed ? "#e4e4e4" : "#ffffff"
border.color: control.enabled ? "#353637" : "#bdbebf"
Rectangle {
@@ -108,7 +108,7 @@ T.SpinBox {
x: control.mirrored ? parent.width - width : 0
implicitWidth: 40
implicitHeight: 40
- color: down.pressed ? "#bdbebf" : "#ffffff"
+ color: down.pressed ? "#e4e4e4" : "#ffffff"
border.color: control.enabled ? "#353637" : "#bdbebf"
Rectangle {