Index: sources/gui/qml/dialogs/AlarmListDialog.qml =================================================================== diff -u -rfdddcd8b25b5acc99f8c044c998af0e95752063c -r07d01d133209c35053830f7e55dfa26127c4499b --- sources/gui/qml/dialogs/AlarmListDialog.qml (.../AlarmListDialog.qml) (revision fdddcd8b25b5acc99f8c044c998af0e95752063c) +++ sources/gui/qml/dialogs/AlarmListDialog.qml (.../AlarmListDialog.qml) (revision 07d01d133209c35053830f7e55dfa26127c4499b) @@ -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() @@ -115,7 +117,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; @@ -139,8 +141,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, ]