mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
DatePicker: date input with fixed size; longer animation; move up calendar rectangle
This commit is contained in:
parent
2946127ed7
commit
ad38f155bc
1 changed files with 4 additions and 4 deletions
|
@ -91,8 +91,8 @@ Item {
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.right: parent.right
|
anchors.right: parent.right
|
||||||
height: parent.height - 1
|
height: parent.height - 1
|
||||||
anchors.leftMargin: datePicker.expanded ? 1 : 0
|
anchors.leftMargin: 0
|
||||||
anchors.rightMargin: datePicker.expanded ? 1 : 0
|
anchors.rightMargin: 0
|
||||||
radius: 4
|
radius: 4
|
||||||
y: 1
|
y: 1
|
||||||
color: datePicker.backgroundColor
|
color: datePicker.backgroundColor
|
||||||
|
@ -257,7 +257,7 @@ Item {
|
||||||
id: calendarRect
|
id: calendarRect
|
||||||
width: head.width
|
width: head.width
|
||||||
x: head.x
|
x: head.x
|
||||||
y: head.y + head.height + 10
|
y: head.y + head.height - 2
|
||||||
|
|
||||||
color: MoneroComponents.Style.middlePanelBackgroundColor
|
color: MoneroComponents.Style.middlePanelBackgroundColor
|
||||||
border.width: 1
|
border.width: 1
|
||||||
|
@ -266,7 +266,7 @@ Item {
|
||||||
clip: true
|
clip: true
|
||||||
|
|
||||||
Behavior on height {
|
Behavior on height {
|
||||||
NumberAnimation { duration: 100; easing.type: Easing.InQuad }
|
NumberAnimation { duration: 150; easing.type: Easing.InQuad }
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|
Loading…
Reference in a new issue