mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-10 15:30:55 +00:00
src/trezor/ui: add new BTN_KEY_CONFIRM style to mnemonic keyboard, use that one
This commit is contained in:
parent
329b7d1488
commit
984327fea5
@ -34,8 +34,8 @@ class Input(Button):
|
|||||||
self.taint()
|
self.taint()
|
||||||
if content == word: # confirm button
|
if content == word: # confirm button
|
||||||
self.enable()
|
self.enable()
|
||||||
self.normal_style = ui.BTN_CONFIRM['normal']
|
self.normal_style = ui.BTN_KEY_CONFIRM['normal']
|
||||||
self.active_style = ui.BTN_CONFIRM['active']
|
self.active_style = ui.BTN_KEY_CONFIRM['active']
|
||||||
self.icon = ui.ICON_CONFIRM
|
self.icon = ui.ICON_CONFIRM
|
||||||
elif word: # auto-complete button
|
elif word: # auto-complete button
|
||||||
self.enable()
|
self.enable()
|
||||||
|
@ -179,6 +179,30 @@ BTN_KEY = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BTN_KEY_CONFIRM = {
|
||||||
|
'normal': {
|
||||||
|
'bg-color': GREEN,
|
||||||
|
'fg-color': FG,
|
||||||
|
'text-style': MONO,
|
||||||
|
'border-color': BG,
|
||||||
|
'radius': RADIUS,
|
||||||
|
},
|
||||||
|
'active': {
|
||||||
|
'bg-color': FG,
|
||||||
|
'fg-color': GREEN,
|
||||||
|
'text-style': MONO,
|
||||||
|
'border-color': FG,
|
||||||
|
'radius': RADIUS,
|
||||||
|
},
|
||||||
|
'disabled': {
|
||||||
|
'bg-color': BG,
|
||||||
|
'fg-color': GREY,
|
||||||
|
'text-style': MONO,
|
||||||
|
'border-color': BG,
|
||||||
|
'radius': RADIUS,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# loader
|
# loader
|
||||||
LDR_DEFAULT = {
|
LDR_DEFAULT = {
|
||||||
'normal': {
|
'normal': {
|
||||||
|
Loading…
Reference in New Issue
Block a user