2022-03-24 22:00:49 +01:00
|
|
|
import QtQuick 2.6
|
|
|
|
|
import QtQuick.Controls.Material 2.0
|
|
|
|
|
|
|
|
|
|
Rectangle {
|
2022-12-30 16:22:22 +01:00
|
|
|
property color baseColor: Material.background
|
2022-03-24 22:00:49 +01:00
|
|
|
Rectangle {
|
|
|
|
|
anchors { left: parent.left; top: parent.top; right: parent.right }
|
|
|
|
|
height: 1
|
2022-12-30 16:22:22 +01:00
|
|
|
color: Qt.darker(baseColor, 1.50)
|
2022-03-24 22:00:49 +01:00
|
|
|
}
|
|
|
|
|
Rectangle {
|
|
|
|
|
anchors { left: parent.left; top: parent.top; bottom: parent.bottom }
|
|
|
|
|
width: 1
|
2022-12-30 16:22:22 +01:00
|
|
|
color: Qt.darker(baseColor, 1.50)
|
2022-03-24 22:00:49 +01:00
|
|
|
}
|
|
|
|
|
Rectangle {
|
|
|
|
|
anchors { left: parent.left; bottom: parent.bottom; right: parent.right }
|
|
|
|
|
height: 1
|
2022-12-30 16:22:22 +01:00
|
|
|
color: Qt.lighter(baseColor, 1.50)
|
2022-03-24 22:00:49 +01:00
|
|
|
}
|
|
|
|
|
Rectangle {
|
|
|
|
|
anchors { right: parent.right; top: parent.top; bottom: parent.bottom }
|
|
|
|
|
width: 1
|
2022-12-30 16:22:22 +01:00
|
|
|
color: Qt.lighter(baseColor, 1.50)
|
2022-03-24 22:00:49 +01:00
|
|
|
}
|
2022-12-30 16:22:22 +01:00
|
|
|
color: Qt.darker(baseColor, 1.15)
|
2022-03-24 22:00:49 +01:00
|
|
|
}
|