From 60fd0b55a7961ab8121604ff9aee92b85aa636d8 Mon Sep 17 00:00:00 2001 From: bh Date: Sun, 8 Mar 2026 15:23:50 +0800 Subject: Add fade animation and increase font size on calendar popup --- quickshell/.config/quickshell/shell.qml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/quickshell/.config/quickshell/shell.qml b/quickshell/.config/quickshell/shell.qml index a58b7b0..110838d 100644 --- a/quickshell/.config/quickshell/shell.qml +++ b/quickshell/.config/quickshell/shell.qml @@ -717,6 +717,11 @@ PanelWindow { anchors.margins: 11 spacing: 8 + opacity: calendarPopup.showing ? 1.0 : 0.0 + Behavior on opacity { + NumberAnimation { duration: 150; easing.type: Easing.OutCubic } + } + // Month/Year header with navigation RowLayout { Layout.fillWidth: true @@ -784,7 +789,7 @@ PanelWindow { text: modelData color: "#FFC500" font.family: "Source Code Pro" - font.pixelSize: 12 + font.pixelSize: 14 font.bold: true horizontalAlignment: Text.AlignHCenter } @@ -809,7 +814,7 @@ PanelWindow { text: model.day color: isToday ? "#FFC500" : isCurrentMonth ? root.fg : "#4d7f7f" font.family: "Source Code Pro" - font.pixelSize: 12 + font.pixelSize: 14 font.bold: isToday horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter -- cgit v1.2.3