mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 05:53:59 -06:00
Add borders to expandable components
This adds a lining to all of the drop-downs from the stage menus. Contributes to issue CURA-5876.
This commit is contained in:
parent
a490e420f0
commit
30b20b4aa5
1 changed files with 4 additions and 0 deletions
|
@ -17,6 +17,8 @@ Item
|
|||
property var popupItem
|
||||
|
||||
property color popupBackgroundColor: UM.Theme.getColor("action_button")
|
||||
property int popupBorderWidth: UM.Theme.getSize("default_lining").width
|
||||
property color popupBorderColor: UM.Theme.getColor("lining")
|
||||
|
||||
property color headerBackgroundColor: UM.Theme.getColor("action_button")
|
||||
property color headerHoverColor: UM.Theme.getColor("action_button_hovered")
|
||||
|
@ -147,6 +149,8 @@ Item
|
|||
background: Rectangle
|
||||
{
|
||||
color: popupBackgroundColor
|
||||
border.width: popupBorderWidth
|
||||
border.color: popupBorderColor
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue