diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-21 15:34:43 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-02-21 15:34:43 +0800 |
commit | c004b4d9d6717798aaa25b7b4f7640eafeed8485 (patch) | |
tree | af023b32acbb755cbb1a1439504727ba309d6b20 | |
parent | de9922e1c5bc537adefd7d85bbcf0f98742a5913 (diff) |
Disabled save button colour
-rw-r--r-- | InstructorEditProfile.ui.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/InstructorEditProfile.ui.qml b/InstructorEditProfile.ui.qml index 1729a34..1117070 100644 --- a/InstructorEditProfile.ui.qml +++ b/InstructorEditProfile.ui.qml @@ -466,9 +466,10 @@ Flickable { } background: Rectangle { radius: 5.2 - color: saveButton.down ? "#0555a1" : "#066ac9" + color: saveButton.down ? "#0555a1" : saveButton.enabled ? "#066ac9" : "#a6066ac9" border { - color: saveButton.down ? "#055097" : "#066ac9" + color: saveButton.down ? "#055097" : saveButton.enabled ? "#066ac9" : "#a6066ac9" + width: 1 } } |