2025-11-13 17:06:37 +01:00
|
|
|
import QtQuick
|
|
|
|
|
import "../Flowee" as Flowee
|
|
|
|
|
|
|
|
|
|
Item {
|
|
|
|
|
id: root
|
2025-11-13 22:38:40 +01:00
|
|
|
implicitHeight: helpText.height + 8
|
2025-11-13 17:06:37 +01:00
|
|
|
|
|
|
|
|
Rectangle {
|
2025-11-13 22:38:40 +01:00
|
|
|
width: parent.width - 16
|
|
|
|
|
x: 8
|
|
|
|
|
height: parent.height
|
|
|
|
|
color: palette.light
|
|
|
|
|
border.width: 1
|
|
|
|
|
border.color: palette.midlight
|
|
|
|
|
gradient: Gradient {
|
|
|
|
|
orientation: Gradient.Horizontal
|
|
|
|
|
GradientStop {
|
|
|
|
|
position: Pay.useDarkSkin ? -2 : 0
|
|
|
|
|
color: Pay.useDarkSkin ? palette.midlight : palette.mid
|
|
|
|
|
}
|
|
|
|
|
GradientStop {
|
|
|
|
|
position: 1
|
|
|
|
|
color: palette.base
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-11-13 17:06:37 +01:00
|
|
|
}
|
|
|
|
|
Flowee.Label {
|
|
|
|
|
id: helpText
|
2025-11-13 22:38:40 +01:00
|
|
|
text: qsTr("Seen Transactions")
|
|
|
|
|
font.italic: true
|
2025-11-13 17:06:37 +01:00
|
|
|
anchors.centerIn: parent
|
|
|
|
|
}
|
|
|
|
|
}
|