Show a border around text fields and drop-downs when hovering

And when they are focused.
This applies to the setting text fields, extruder selectors and drop-downs as well as to the machine settings.

Contributes to issue CURA-9217.
This commit is contained in:
Ghostkeeper 2022-05-09 17:42:17 +02:00
parent efdb21b7a1
commit 7fda81b678
No known key found for this signature in database
GPG key ID: 68F39EA88EEED5FF
9 changed files with 26 additions and 11 deletions

View file

@ -90,6 +90,7 @@ UM.TooltipArea
{
anchors.fill: parent
borderColor: (textFieldWithUnit.hovered || textFieldWithUnit.activeFocus) ? UM.Theme.getColor("text_field_border_hovered") : "transparent"
liningColor:
{
if (!textFieldWithUnit.enabled)
@ -109,7 +110,7 @@ UM.TooltipArea
// Validation is OK.
if (textFieldWithUnit.hovered || textFieldWithUnit.activeFocus)
{
return UM.Theme.getColor("border_main")
return UM.Theme.getColor("text_field_border_hovered")
}
return UM.Theme.getColor("border_field_light")
}