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" } }