0159cd59cd
This makes the line be much clearer about it being about the items below it, marking the step from 'seen' to new transactions.
45 lines
1.1 KiB
QML
45 lines
1.1 KiB
QML
import QtQuick
|
|
import "../Flowee" as Flowee
|
|
|
|
Item {
|
|
id: root
|
|
implicitHeight: helpText.height + 15
|
|
|
|
Rectangle {
|
|
width: helpText.implicitWidth + 30
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.bottom: parent.bottom
|
|
height: helpText.height + 3
|
|
// 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
|
|
}
|
|
}
|
|
topLeftRadius: 10
|
|
topRightRadius: 10
|
|
}
|
|
Rectangle {
|
|
width: root.width
|
|
height: 1
|
|
anchors.bottom: parent.bottom
|
|
color: palette.midlight
|
|
}
|
|
|
|
Flowee.Label {
|
|
id: helpText
|
|
text: qsTr("Seen Transactions")
|
|
font.italic: true
|
|
anchors.bottom: parent.bottom
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
}
|
|
}
|