~vthompson/ubuntu-calendar-app/scroll-in-test

« back to all changes in this revision

Viewing changes to NewEventEntryField.qml

  • Committer: Kunal Parmar
  • Date: 2013-10-09 10:38:43 UTC
  • mto: This revision was merged to the branch mainline in revision 140.
  • Revision ID: pkunal.parmar@gmail.com-20131009103843-vpz6fbdtc7n6olmd
Dummy element removed

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
import QtQuick 2.0
2
2
import Ubuntu.Components 0.1
3
 
import Ubuntu.Components.Themes.Ambiance 0.1
4
3
 
5
4
TextField{
6
5
    id: root
10
9
        id: label
11
10
        anchors.left: parent.left
12
11
        anchors.verticalCenter: parent.verticalCenter
13
 
        color: root.highlighted ? "#2C001E" : dummy.color
14
 
    }
15
 
 
16
 
    Label{
17
 
        id: dummy
18
 
        visible: false
 
12
        color: root.highlighted ? "#2C001E" : Theme.palette.normal.baseText
19
13
    }
20
14
}