23 lines
498 B
QML
23 lines
498 B
QML
import QtQuick
|
|
import "../config/"
|
|
|
|
MouseArea {
|
|
id: mouseArea
|
|
|
|
hoverEnabled: true
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
|
|
radius: Dimensions.radius
|
|
color: mouseArea.containsMouse ? Theme.palette.primary : Theme.palette.base300
|
|
Behavior on color {
|
|
ColorAnimation {
|
|
properties: "color"
|
|
duration: 200
|
|
easing.type: Easing.InOutQuad
|
|
}
|
|
}
|
|
}
|
|
}
|