~aacid/unity8/moreAsyncAudioCard

« back to all changes in this revision

Viewing changes to qml/Notifications/Notification.qml

  • Committer: Albert Astals Cid
  • Date: 2016-03-10 08:32:16 UTC
  • mfrom: (2136.2.83 unity8)
  • Revision ID: albert.astals@canonical.com-20160310083216-8nnplxl85qx13xd0
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
281
281
                        }
282
282
                        visible: type !== Notification.Confirmation
283
283
                        fontSize: "medium"
284
 
                        color: darkOnBright ? sdFontColor : theme.palette.selected.backgroundText
 
284
                        color: darkOnBright ? sdFontColor : theme.palette.normal.backgroundText
285
285
                        elide: Text.ElideRight
286
286
                        textFormat: Text.PlainText
287
287
                    }
296
296
                        }
297
297
                        visible: body != "" && type !== Notification.Confirmation
298
298
                        fontSize: "small"
299
 
                        color: darkOnBright ? sdFontColor : theme.palette.selected.backgroundText
 
299
                        color: darkOnBright ? sdFontColor : theme.palette.normal.backgroundText
300
300
                        wrapMode: Text.WordWrap
301
301
                        maximumLineCount: type == Notification.SnapDecision ? 12 : 2
302
302
                        elide: Text.ElideRight
337
337
                anchors.horizontalCenter: parent.horizontalCenter
338
338
                visible: type === Notification.Confirmation && body !== ""
339
339
                fontSize: "medium"
340
 
                color: darkOnBright ? sdFontColor : theme.palette.selected.backgroundText
 
340
                color: darkOnBright ? sdFontColor : theme.palette.normal.backgroundText
341
341
                wrapMode: Text.WordWrap
342
342
                maximumLineCount: 1
343
343
                elide: Text.ElideRight