mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-06 05:25:41 -05:00
- CC Color picker widget - Tooltips in more places - Attempt to improve niri screen transitiosn
30 lines
820 B
QML
30 lines
820 B
QML
import QtQuick
|
|
import qs.Common
|
|
|
|
Rectangle {
|
|
color: "transparent"
|
|
radius: Appearance.rounding.normal
|
|
|
|
readonly property var standardAnimation: {
|
|
"duration": Appearance.anim.durations.normal,
|
|
"easing.type": Easing.BezierSpline,
|
|
"easing.bezierCurve": Appearance.anim.curves.standard
|
|
}
|
|
|
|
Behavior on radius {
|
|
NumberAnimation {
|
|
duration: standardAnimation.duration
|
|
easing.type: standardAnimation["easing.type"]
|
|
easing.bezierCurve: standardAnimation["easing.bezierCurve"]
|
|
}
|
|
}
|
|
|
|
Behavior on opacity {
|
|
NumberAnimation {
|
|
duration: standardAnimation.duration
|
|
easing.type: standardAnimation["easing.type"]
|
|
easing.bezierCurve: standardAnimation["easing.bezierCurve"]
|
|
}
|
|
}
|
|
}
|