diff --git a/.config/quickshell/ReloadPopup.qml b/.config/quickshell/ReloadPopup.qml index eb19cbd91..637141912 100644 --- a/.config/quickshell/ReloadPopup.qml +++ b/.config/quickshell/ReloadPopup.qml @@ -58,7 +58,9 @@ Scope { MouseArea { id: mouseArea anchors.fill: parent - onClicked: popupLoader.active = false + onClicked: { + popupLoader.active = false + } // makes the mouse area track mouse hovering, so the hide animation // can be paused when hovering. diff --git a/.config/quickshell/modules/common/widgets/PointingHandInteraction.qml b/.config/quickshell/modules/common/widgets/PointingHandInteraction.qml index 202cd6f3c..cf8b065f7 100644 --- a/.config/quickshell/modules/common/widgets/PointingHandInteraction.qml +++ b/.config/quickshell/modules/common/widgets/PointingHandInteraction.qml @@ -2,6 +2,6 @@ import QtQuick MouseArea { anchors.fill: parent - onPressed: mouse.accepted = false + onPressed: (mouse) => mouse.accepted = false cursorShape: Qt.PointingHandCursor } \ No newline at end of file diff --git a/.config/quickshell/modules/common/widgets/StyledTabButton.qml b/.config/quickshell/modules/common/widgets/StyledTabButton.qml index 3e83712e6..704aae643 100644 --- a/.config/quickshell/modules/common/widgets/StyledTabButton.qml +++ b/.config/quickshell/modules/common/widgets/StyledTabButton.qml @@ -27,6 +27,9 @@ TabButton { easing.type: Appearance.animation.elementDecel.type } } + + border.color: button.activeFocus ? Appearance.m3colors.m3secondary : Appearance.transparentize(Appearance.m3colors.m3secondary, 1) + border.width: button.activeFocus ? 2 : 0 } contentItem: Item { anchors.centerIn: buttonBackground diff --git a/.config/quickshell/modules/sidebarRight/todo/TodoWidget.qml b/.config/quickshell/modules/sidebarRight/todo/TodoWidget.qml index 2554aaa07..92b33c6f3 100644 --- a/.config/quickshell/modules/sidebarRight/todo/TodoWidget.qml +++ b/.config/quickshell/modules/sidebarRight/todo/TodoWidget.qml @@ -252,13 +252,13 @@ Item { focus: root.showAddDialog onAccepted: dialog.addTask() - background: Rectangle { - anchors.fill: parent - radius: 8 - border.width: 2 - border.color: todoInput.activeFocus ? Appearance.m3colors.m3primary : Appearance.m3colors.m3outline - color: "transparent" - } + // background: Rectangle { + // anchors.fill: parent + // radius: Appearance.rounding.verysmall + // border.width: 2 + // border.color: todoInput.activeFocus ? Appearance.m3colors.m3primary : Appearance.m3colors.m3outline + // color: "transparent" + // } cursorDelegate: Rectangle { width: 1