Other: Fix activeFocus color for components

This commit is contained in:
Alexander Bilyak
2021-10-27 11:48:04 +02:00
committed by Jakub
parent 36ec9b07e0
commit 8c9d5c54fc
6 changed files with 30 additions and 23 deletions

View File

@ -57,7 +57,7 @@ T.CheckBox {
return control.colorScheme.signal_danger
}
if (control.hovered) {
if (control.hovered || control.activeFocus) {
return control.colorScheme.interaction_norm_hover
}
@ -74,7 +74,7 @@ T.CheckBox {
return control.colorScheme.signal_danger
}
if (control.hovered) {
if (control.hovered || control.activeFocus) {
return control.colorScheme.interaction_norm_hover
}