mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
Correct line colour when hovered
A detail that I almost missed in the design examples. Contributes to issue CURA-5876.
This commit is contained in:
parent
1555a1ab17
commit
b0e9f23eee
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ Button
|
|||
{
|
||||
height: childrenRect.height
|
||||
color: parent.hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("action_button")
|
||||
border.color: parent.checked ? UM.Theme.getColor("primary") : UM.Theme.getColor("lining")
|
||||
border.color: (parent.checked || parent.hovered) ? UM.Theme.getColor("primary") : UM.Theme.getColor("lining")
|
||||
border.width: parent.checked ? UM.Theme.getSize("thick_lining").width : UM.Theme.getSize("default_lining").width
|
||||
radius: UM.Theme.getSize("default_radius").width
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue