From 01ab0f5ab99d8b4d5532451b74603fe7ac5ea6a6 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 28 Sep 2025 16:57:32 +0200 Subject: [PATCH] cheatsheet: ptable: make elements not look weird when hovered --- .config/quickshell/ii/modules/cheatsheet/ElementTile.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/ii/modules/cheatsheet/ElementTile.qml b/.config/quickshell/ii/modules/cheatsheet/ElementTile.qml index 4d9e33923..d84abedfd 100644 --- a/.config/quickshell/ii/modules/cheatsheet/ElementTile.qml +++ b/.config/quickshell/ii/modules/cheatsheet/ElementTile.qml @@ -1,4 +1,5 @@ import qs.modules.common +import qs.modules.common.functions import qs.modules.common.widgets import QtQuick @@ -18,7 +19,7 @@ RippleButton { topMargin: 4 leftMargin: 4 } - color: Appearance.colors.colLayer2 + color: ColorUtils.transparentize(Appearance.colors.colLayer2) radius: Appearance.rounding.full implicitWidth: Math.max(20, elementNumber.implicitWidth) implicitHeight: Math.max(20, elementNumber.implicitHeight) @@ -40,7 +41,7 @@ RippleButton { topMargin: 4 rightMargin: 4 } - color: Appearance.colors.colLayer2 + color: ColorUtils.transparentize(Appearance.colors.colLayer2) radius: Appearance.rounding.full implicitWidth: Math.max(20, elementWeight.implicitWidth) implicitHeight: Math.max(20, elementWeight.implicitHeight)