bar: add missed colour animation
Missed animations for workspaces
This commit is contained in:
parent
4e41356d5c
commit
4359b7447b
2 changed files with 24 additions and 0 deletions
|
|
@ -39,6 +39,14 @@ Rectangle {
|
|||
visible: false
|
||||
anchors.fill: parent
|
||||
color: Appearance.colours.base
|
||||
|
||||
Behavior on color {
|
||||
ColorAnimation {
|
||||
duration: Appearance.anim.durations.normal
|
||||
easing.type: Easing.BezierSpline
|
||||
easing.bezierCurve: Appearance.anim.curves.standard
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
OpacityMask {
|
||||
|
|
@ -54,6 +62,14 @@ Rectangle {
|
|||
anchors.verticalCenter: root.vertical ? undefined : parent.verticalCenter
|
||||
}
|
||||
|
||||
Behavior on color {
|
||||
ColorAnimation {
|
||||
duration: Appearance.anim.durations.normal
|
||||
easing.type: Easing.BezierSpline
|
||||
easing.bezierCurve: Appearance.anim.curves.standard
|
||||
}
|
||||
}
|
||||
|
||||
Behavior on leading {
|
||||
Anim {}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,6 +78,14 @@ BoxLayout {
|
|||
}
|
||||
]
|
||||
|
||||
Behavior on color {
|
||||
ColorAnimation {
|
||||
duration: Appearance.anim.durations.normal
|
||||
easing.type: Easing.BezierSpline
|
||||
easing.bezierCurve: Appearance.anim.curves.standard
|
||||
}
|
||||
}
|
||||
|
||||
Behavior on roundLeft {
|
||||
SequentialAnimation {
|
||||
PropertyAction {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue