mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-04 10:35:10 +08:00
Make the blue color on the monitor tab consistent
CL-554
This commit is contained in:
parent
ebb8437bff
commit
c6f4e263fb
@ -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…
x
Reference in New Issue
Block a user