summaryrefslogtreecommitdiff
path: root/components/controls/CollapsibleSection.qml
diff options
context:
space:
mode:
authorATMDA <atdma2600@gmail.com>2025-11-19 08:01:48 -0500
committerATMDA <atdma2600@gmail.com>2025-11-19 08:01:48 -0500
commit50e29f8be35cb773b5bf25a494eddfe665073583 (patch)
tree0e730d11f0c9bf18c32128bfde5a7414e5cb59fc /components/controls/CollapsibleSection.qml
parentcontrolcenter: minor moving around elements in taskbar panel (diff)
downloadcaelestia-shell-50e29f8be35cb773b5bf25a494eddfe665073583.tar.gz
caelestia-shell-50e29f8be35cb773b5bf25a494eddfe665073583.tar.bz2
caelestia-shell-50e29f8be35cb773b5bf25a494eddfe665073583.zip
controlcenter: corrected nesting of bg when transparency off
Diffstat (limited to 'components/controls/CollapsibleSection.qml')
-rw-r--r--components/controls/CollapsibleSection.qml5
1 files changed, 4 insertions, 1 deletions
diff --git a/components/controls/CollapsibleSection.qml b/components/controls/CollapsibleSection.qml
index 078145b..8940884 100644
--- a/components/controls/CollapsibleSection.qml
+++ b/components/controls/CollapsibleSection.qml
@@ -13,6 +13,7 @@ ColumnLayout {
property string description: ""
property bool expanded: false
property bool showBackground: false
+ property bool nested: false
signal toggleRequested
@@ -87,7 +88,9 @@ ColumnLayout {
id: backgroundRect
anchors.fill: parent
radius: Appearance.rounding.normal
- color: Colours.layer(Colours.palette.m3surfaceContainer, 2)
+ color: Colours.transparency.enabled
+ ? Colours.layer(Colours.palette.m3surfaceContainer, root.nested ? 3 : 2)
+ : (root.nested ? Colours.palette.m3surfaceContainerHigh : Colours.palette.m3surfaceContainer)
opacity: root.showBackground && root.expanded ? 1.0 : 0.0
visible: root.showBackground