Index: sources/gui/qml/dialogs/AlarmListDialog.qml =================================================================== diff -u -r5292af384a2d6a77e9fe40396eee96be27c69719 -r78aa5e70b591b3544ff9d9e6b772fe07deaa2f0f --- sources/gui/qml/dialogs/AlarmListDialog.qml (.../AlarmListDialog.qml) (revision 5292af384a2d6a77e9fe40396eee96be27c69719) +++ sources/gui/qml/dialogs/AlarmListDialog.qml (.../AlarmListDialog.qml) (revision 78aa5e70b591b3544ff9d9e6b772fe07deaa2f0f) @@ -25,7 +25,7 @@ /*! * \brief Contains the Alarm Dialog Implementation */ -Item { id : _root +Rectangle { id : _root property alias titleText : _title.text; property alias titleBarForeground : _title.color @@ -35,10 +35,12 @@ property int alarmID : -1 property bool minVisible : true - property color contentbackgroundColor : Colors.offWhite + property color contentbackgroundColor : Colors.modeBackgroundDialogColor property int headerOverlap : 30 anchors.fill: parent + color : Colors.modeBackgroundDialogColor + radius : Variables.alarmDialogRadius signal muteClicked() signal minimizeClicked() @@ -114,7 +116,7 @@ visible : ! vAlarmActiveList.adjustment_Accepted text : vAlarmActiveList.status objectName: "_NotificationDialog_Description" - color: Colors.alarmDialogText + color: Colors.modeAlarmListColor font.pixelSize: Fonts.fontPixelButton anchors { horizontalCenter: parent.horizontalCenter; @@ -138,8 +140,8 @@ itemWidth : width rowSpacing : 0 colSpacing : 0 - lineColor : Colors.alarmDialogText - textColor : Colors.alarmDialogText + lineColor : Colors.modeAlarmListColor + textColor : Colors.modeAlarmListColor itemsText : vAlarmActiveList.alarmIDs itemsValue : vAlarmActiveList.alarmTexts itemsTouchable : [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, ]