~mzanetti/unity8/fix-1648251

« back to all changes in this revision

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

  • Committer: Michael Zanetti
  • Date: 2016-12-01 12:20:34 UTC
  • mfrom: (2525.1.179 unity8)
  • Revision ID: michael.zanetti@canonical.com-20161201122034-cpvbf7webbhg2wph
merge 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"] || "";
72
72
                    visible: showHeader ; 
73
73
                    width: undefined;
74
74
                    text: root.title; 
75
 
                    font.weight: cardData && cardData["subtitle"] ? Font.DemiBold : Font.Normal; 
 
75
                    font.weight: Font.Normal; 
76
76
                    horizontalAlignment: Text.AlignLeft;
77
77
                }
78
78
,Label { 
103
103
    sourceComponent: UbuntuShape {
104
104
        objectName: "touchdown";
105
105
        anchors.fill: parent;
106
 
        radius: "medium";
 
106
        radius: "small";
107
107
        borderSource: "radius_pressed.sci"
108
108
    }
109
109
}