Index: sources/gui/qml/components/HelpNotification.qml =================================================================== diff -u -r0f83de066c8a116195a3cc60577d597ef9654c55 -r2f524fd1b0badc222cd772417234770e5488cf56 --- sources/gui/qml/components/HelpNotification.qml (.../HelpNotification.qml) (revision 0f83de066c8a116195a3cc60577d597ef9654c55) +++ sources/gui/qml/components/HelpNotification.qml (.../HelpNotification.qml) (revision 2f524fd1b0badc222cd772417234770e5488cf56) @@ -18,7 +18,6 @@ height : parent.height rowAnchors { centerIn: undefined - left : parent.left } } } Index: sources/gui/qml/dialogs/NotificationDialog.qml =================================================================== diff -u -r0f83de066c8a116195a3cc60577d597ef9654c55 -r2f524fd1b0badc222cd772417234770e5488cf56 --- sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 0f83de066c8a116195a3cc60577d597ef9654c55) +++ sources/gui/qml/dialogs/NotificationDialog.qml (.../NotificationDialog.qml) (revision 2f524fd1b0badc222cd772417234770e5488cf56) @@ -302,6 +302,7 @@ fgColor : isPressed ? Colors.white : borderColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification + borderColor : Colors.alarmButton } TouchRect { id : _temporaryBreak @@ -313,6 +314,7 @@ fgColor : isPressed ? Colors.white : borderColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification + borderColor : Colors.alarmButton } TouchRect { id : _rinsebackTouchRect @@ -324,6 +326,7 @@ fgColor : isPressed ? Colors.white : borderColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification + borderColor : Colors.alarmButton } TouchRect { id : _endTouchRect @@ -335,6 +338,7 @@ fgColor : isPressed ? Colors.white : borderColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification + borderColor : Colors.alarmButton } TouchRect { id : _okTouchRect @@ -346,6 +350,7 @@ fgColor : isPressed ? Colors.white : borderColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification + borderColor : Colors.alarmButton } } Index: sources/gui/qml/globals/Colors.qml =================================================================== diff -u -r7b71ec23c53c04a24e3db8ace0ca4825ec57d721 -r2f524fd1b0badc222cd772417234770e5488cf56 --- sources/gui/qml/globals/Colors.qml (.../Colors.qml) (revision 7b71ec23c53c04a24e3db8ace0ca4825ec57d721) +++ sources/gui/qml/globals/Colors.qml (.../Colors.qml) (revision 2f524fd1b0badc222cd772417234770e5488cf56) @@ -47,6 +47,7 @@ readonly property color mainTreatmentLighterBlue : "#1F3D5A" readonly property color mainTreatmentOrange : "#FFB836" readonly property color mainTreatmentIsoBlue : "#C3F9FF" + readonly property color alarmButton : "#0753B0" readonly property color sliderHighlightColor : "orange" readonly property color sliderProgressBorderActive : white