~ci-train-bot/unity8/unity8-ubuntu-zesty-2404

« back to all changes in this revision

Viewing changes to tests/plugins/Dash/cardcreator/5.res.cardcreator

  • Committer: Nick Dedekind
  • Date: 2016-11-28 13:46:55 UTC
  • mfrom: (2704 unity8)
  • mto: This revision was merged to the branch mainline in revision 2752.
  • Revision ID: nick.dedekind@canonical.com-20161128134655-vd70a64pbci1b4oc
merged with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AbstractButton { 
2
2
                id: root; 
3
3
                property var cardData; 
4
 
                property string backgroundShapeStyle: "inset"; 
 
4
                property string backgroundShapeStyle: "flat"; 
5
5
                property real fontScale: 1.0; 
6
6
                property var scopeStyle: null; 
7
7
                readonly property string title: cardData && cardData["title"] || ""; 
48
48
                                id: overlay; 
49
49
                                property real luminance: Style.luminance(overlayColor); 
50
50
                                aspect: UbuntuShape.Flat; 
51
 
                                radius: "medium"; 
 
51
                                radius: "small"; 
52
52
                                overlayColor: cardData && cardData["overlayColor"] || "#99000000"; 
53
53
                                overlayRect: Qt.rect(0, 1 - overlayLoader.overlayHeight / height, 1, 1); 
54
54
                            } 
73
73
                        visible: showHeader && overlayLoader.active; 
74
74
                        width: undefined;
75
75
                        text: root.title; 
76
 
                        font.weight: cardData && cardData["subtitle"] ? Font.DemiBold : Font.Normal; 
 
76
                        font.weight: Font.Normal; 
77
77
                        horizontalAlignment: Text.AlignLeft;
78
78
                    }
79
79
Label {