diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-28 18:49:11 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-28 18:49:11 +0800 |
commit | 8efb63f2a2c09d9f885222d0ce9f689263a057b4 (patch) | |
tree | 77b491ab0b310fdf0c0fba589071bd78a8afcc6e /Button | |
parent | b81852f3c4d35cb2aa851ae3cac17a1061470961 (diff) |
Mode button icon color is part of the CSS
Diffstat (limited to 'Button')
-rw-r--r-- | Button/Sm.ui.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Button/Sm.ui.qml b/Button/Sm.ui.qml index 909d9c3..4df9bb7 100644 --- a/Button/Sm.ui.qml +++ b/Button/Sm.ui.qml @@ -22,8 +22,10 @@ Button { width: button.icon.width height: button.icon.height } + ColorOverlay { - color: button.icon.color + color: checked + ? Eduport.bsGray800 : Eduport.bsBtnColor source: parent anchors.fill: parent } |