1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-23 03:02:30 +01:00

Added Styles to isNew feature.

This commit is contained in:
Debashbora 2021-08-27 16:53:15 +05:30
parent 441f06f45b
commit 72bf0864fa

View File

@ -190,12 +190,29 @@ Item {
}
}
Text {
text: qsTr("New")
Rectangle{
x:259.5 ; y:8 ; width: 59; height: 28
radius: 5
color: "lightblue"
transform: Rotation { origin.x: 30; origin.y: 30; }
anchors
{
right: root.right
left:root.right
}
Text
{
font.family:"Comic Sans Ms";font.pointSize: 11; font.bold: true;font.italic: true
color: "grey"
text: qsTr("New!")
anchors{
centerIn: parent
}
visible: root.isNew
}
}
}
OpacityMask {