Update MonitorStage.qml

This commit is contained in:
Ian Paschal 2018-12-14 15:47:36 +01:00
parent 3bd5d141ab
commit 30168103b7

View file

@ -15,9 +15,6 @@ Component
{ {
id: monitorFrame id: monitorFrame
property var emphasisColor: UM.Theme.getColor("setting_control_border_highlight")
property var cornerRadius: UM.Theme.getSize("monitor_corner_radius").width
height: maximumHeight height: maximumHeight
onVisibleChanged: onVisibleChanged:
{ {
@ -39,11 +36,11 @@ Component
gradient: Gradient { gradient: Gradient {
GradientStop { GradientStop {
position: 0.0 position: 0.0
color: "#f6f6f6" color: "#f6f6f6" // TODO: Theme!
} }
GradientStop { GradientStop {
position: 1.0 position: 1.0
color: "#ffffff" color: "#ffffff" // TODO: Theme!
} }
} }
} }