WWW update
[ubi] / qml / ubi / Shadow.qml
1 import QtQuick 1.0 // to target S60 5th Edition or Maemo 5
2 import "UIConstants.js" as Const
3
4 Item {
5     id: root
6     anchors.right: parent.right
7     anchors.left: parent.left
8     height: Const.SHADOW_OFFSET
9
10     Rectangle {
11         anchors.right: parent.right
12         anchors.left: parent.left
13
14         height: Const.SHADOW_OFFSET
15         color: "black"
16         opacity: 0.3
17     }
18 }