We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f11e01 commit 931d442Copy full SHA for 931d442
src/qml/controls/ContinueButton.qml
@@ -32,6 +32,12 @@ Button {
32
radius: 5
33
34
states: [
35
+ State {
36
+ name: "DISABLED"; when: !root.enabled
37
+ PropertyChanges { target: bg; color: Theme.color.neutral2 }
38
+ PropertyChanges { target: bg; border.color: Theme.color.neutral2 }
39
+ PropertyChanges { target: root; textColor: Theme.color.neutral5 }
40
+ },
41
State {
42
name: "PRESSED"; when: root.pressed
43
PropertyChanges { target: bg; color: backgroundPressedColor }
0 commit comments