~tpeeters/unity8/new_tabbar-again

« back to all changes in this revision

Viewing changes to qml/Dash/Previews/PreviewRatingDisplay.qml

  • Committer: tim.peeters at canonical
  • Date: 2014-04-29 14:01:36 UTC
  • mfrom: (832.1.22 unity8)
  • Revision ID: tim.peeters@canonical.com-20140429140136-8idik0b1951bzoqc
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
                    id: authorLabel
72
72
                    objectName: "authorLabel"
73
73
                    anchors { left: parent.left; right: parent.right }
74
 
                    color: Theme.palette.selected.backgroundText
 
74
                    // TODO cimi: Yet another fix requiring Palette update.
 
75
                    color: "grey" //Theme.palette.selected.backgroundText
75
76
                    opacity: .8
76
77
                    text: modelData["author"] || ""
77
78
                    visible: text !== ""
82
83
                    id: reviewLabel
83
84
                    objectName: "reviewLabel"
84
85
                    anchors { left: parent.left; right: parent.right }
85
 
                    color: Theme.palette.selected.backgroundText
 
86
                    // TODO cimi: Yet another fix requiring Palette update.
 
87
                    color: "grey" //Theme.palette.selected.backgroundText
86
88
                    opacity: .8
87
89
                    text: modelData["review"] || ""
88
90
                    visible: text !== ""