mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-03 03:58:48 +02:00
16 lines
460 B
QML
16 lines
460 B
QML
import QtQuick 2.0
|
|
|
|
Rectangle {
|
|
width : 40; height : 15; radius: 2
|
|
border.width: 1; border.color: "#FF101010"
|
|
color: "transparent"
|
|
anchors.leftMargin: 1; anchors.topMargin: 3
|
|
clip: true
|
|
Rectangle {
|
|
anchors.fill: parent; radius: 2
|
|
anchors.leftMargin: -1; anchors.topMargin: -1
|
|
anchors.rightMargin: 0; anchors.bottomMargin: 0
|
|
border.width: 1; border.color: "#FF525255"
|
|
color: "transparent"
|
|
}
|
|
}
|