~nik90/ubuntu-clock-app/edit-alarm-feature

« back to all changes in this revision

Viewing changes to app/alarm/AlarmList.qml

  • Committer: Nekhelesh Ramananthan
  • Date: 2014-06-19 13:52:32 UTC
  • Revision ID: krnekhelesh@gmail.com-20140619135232-gqzo6950cx9jk8mj
fixed font size and color

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
            ListItem.Base {
69
69
                objectName: "alarm" + index
70
70
 
 
71
                height: units.gu(7)
 
72
 
71
73
                Label {
72
74
                    id: alarmTime
73
75
                    objectName: "listAlarmTime" + index
74
76
 
75
 
                    anchors.verticalCenter: parent.verticalCenter
 
77
                    anchors.top: alarmDetailsColumn.top
76
78
                    anchors.left: parent.left
77
79
                    anchors.leftMargin: units.gu(0)
78
80
 
79
 
                    fontSize: "large"
80
 
                    color: model.enabled ? Theme.palette.normal.baseText : Qt.rgba(1,1,1,0.3)
 
81
                    fontSize: "medium"
81
82
                    text: alarmUtils.convertTime(date.getHours(), date.getMinutes(), 0, "24-hour")
82
83
                }
83
84
 
105
106
                        id: alarmSubtitle
106
107
                        objectName: "listAlarmSubtitle" + index
107
108
 
108
 
                        fontSize: "small"
 
109
                        fontSize: "x-small"
109
110
                        text: alarmUtils.format_day_string(daysOfWeek, type)
110
111
                    }
111
112
                }