mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 09:17:50 -06:00
Make the blue color on the monitor tab consistent
CL-554
This commit is contained in:
parent
ebb8437bff
commit
c6f4e263fb
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ Component
|
||||||
height: maximumHeight
|
height: maximumHeight
|
||||||
color: UM.Theme.getColor("viewport_background")
|
color: UM.Theme.getColor("viewport_background")
|
||||||
|
|
||||||
property var emphasisColor: "#44c0ff" //TODO: should be linked to theme.
|
property var emphasisColor: UM.Theme.getColor("setting_control_border_highlight")
|
||||||
property var lineColor: "#DCDCDC" // TODO: Should be linked to theme.
|
property var lineColor: "#DCDCDC" // TODO: Should be linked to theme.
|
||||||
property var cornerRadius: 4 * screenScaleFactor // TODO: Should be linked to theme.
|
property var cornerRadius: 4 * screenScaleFactor // TODO: Should be linked to theme.
|
||||||
UM.I18nCatalog
|
UM.I18nCatalog
|
||||||
|
|
|
@ -51,7 +51,7 @@ Rectangle
|
||||||
property var printer
|
property var printer
|
||||||
|
|
||||||
border.width: UM.Theme.getSize("default_lining").width
|
border.width: UM.Theme.getSize("default_lining").width
|
||||||
border.color: mouse.containsMouse ? UM.Theme.getColor("setting_control_border_highlight") : lineColor
|
border.color: mouse.containsMouse ? emphasisColor : lineColor
|
||||||
z: mouse.containsMouse ? 1 : 0 // Push this item up a bit on mouse over to ensure that the highlighted bottom border is visible.
|
z: mouse.containsMouse ? 1 : 0 // Push this item up a bit on mouse over to ensure that the highlighted bottom border is visible.
|
||||||
|
|
||||||
property var printJob:
|
property var printJob:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue