diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-15 17:16:52 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-15 17:16:52 -0500 |
| commit | 4ada7ea608711aa21f8bfc51698e7a3ec261aeeb (patch) | |
| tree | db25cc915484be87b201691171224325777d1bac /modules/controlcenter/launcher | |
| parent | deleted: shell (diff) | |
| download | caelestia-shell-4ada7ea608711aa21f8bfc51698e7a3ec261aeeb.tar.gz caelestia-shell-4ada7ea608711aa21f8bfc51698e7a3ec261aeeb.tar.bz2 caelestia-shell-4ada7ea608711aa21f8bfc51698e7a3ec261aeeb.zip | |
controlcenter: corrected certain containers not respecting transparency layers
Diffstat (limited to 'modules/controlcenter/launcher')
| -rw-r--r-- | modules/controlcenter/launcher/LauncherPane.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/controlcenter/launcher/LauncherPane.qml b/modules/controlcenter/launcher/LauncherPane.qml index 12abc1e..dc7a7a7 100644 --- a/modules/controlcenter/launcher/LauncherPane.qml +++ b/modules/controlcenter/launcher/LauncherPane.qml @@ -218,7 +218,7 @@ RowLayout { Layout.topMargin: Appearance.spacing.normal Layout.bottomMargin: Appearance.spacing.small - color: Colours.tPalette.m3surfaceContainer + color: Colours.layer(Colours.palette.m3surfaceContainer, 2) radius: Appearance.rounding.full implicitHeight: Math.max(searchIcon.implicitHeight, searchField.implicitHeight, clearIcon.implicitHeight) @@ -317,7 +317,7 @@ RowLayout { readonly property bool isSelected: root.selectedApp === modelData - color: Qt.alpha(Colours.tPalette.m3surfaceContainer, isSelected ? Colours.tPalette.m3surfaceContainer.a : 0) + color: isSelected ? Colours.layer(Colours.palette.m3surfaceContainer, 2) : "transparent" radius: Appearance.rounding.normal StateLayer { |