~pkunal-parmar/ubuntu-calendar-app/ICalImport

« back to all changes in this revision

Viewing changes to DayHeaderBackground.qml

  • Committer: Kunal Parmar
  • Date: 2013-09-28 09:37:52 UTC
  • mto: This revision was merged to the branch mainline in revision 153.
  • Revision ID: pkunal.parmar@gmail.com-20130928093752-6hhmsea2xmtns5uk
Background added to day labels

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Item {
 
4
    width: parent.width
 
5
    height:parent.height
 
6
    BorderImage {
 
7
        id: separator
 
8
        source: "PageHeaderBaseDividerLight.png"
 
9
        width: parent.width;
 
10
        height: parent.height
 
11
    }
 
12
 
 
13
    Image {
 
14
        anchors {
 
15
            top: separator.bottom
 
16
            left: parent.left
 
17
            right: parent.right
 
18
        }
 
19
        source: "PageHeaderBaseDividerBottom.png"
 
20
    }
 
21
}