Merge branch 'development'
[quandoparte] / application / resources / harmattan / qml / DroppedShadow.qml
1 import QtQuick 1.1
2
3 Rectangle {
4     id: shadow
5     width: parent.width
6     height: 5
7     z: 10
8
9     gradient: Gradient {
10         GradientStop {color: "#99000000"; position: 0.0}
11         GradientStop {color: "#00000000"; position: 1.0}
12     }
13 }