diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-08 19:32:38 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-08 19:32:38 +1000 |
| commit | 5b8edfc1e29433b40bb1120043bc1b79010a6cc1 (patch) | |
| tree | 99476b16b36a299b82e8497be9338d6cc760ef8c /modules/bar/popouts | |
| parent | controlcenter: hide float button when floating (diff) | |
| download | caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.tar.gz caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.tar.bz2 caelestia-shell-5b8edfc1e29433b40bb1120043bc1b79010a6cc1.zip | |
internal: transparency support coming soon™
Also fix media player selector text colour
Fix colour preview not resetting light/dark mode
Diffstat (limited to 'modules/bar/popouts')
| -rw-r--r-- | modules/bar/popouts/Battery.qml | 2 | ||||
| -rw-r--r-- | modules/bar/popouts/Bluetooth.qml | 2 | ||||
| -rw-r--r-- | modules/bar/popouts/Network.qml | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/modules/bar/popouts/Battery.qml b/modules/bar/popouts/Battery.qml index 254e2af..08bb814 100644 --- a/modules/bar/popouts/Battery.qml +++ b/modules/bar/popouts/Battery.qml @@ -112,7 +112,7 @@ Column { implicitWidth: saver.implicitHeight + balance.implicitHeight + perf.implicitHeight + Appearance.padding.normal * 2 + Appearance.spacing.large * 2 implicitHeight: Math.max(saver.implicitHeight, balance.implicitHeight, perf.implicitHeight) + Appearance.padding.small * 2 - color: Colours.palette.m3surfaceContainer + color: Colours.tPalette.m3surfaceContainer radius: Appearance.rounding.full StyledRect { diff --git a/modules/bar/popouts/Bluetooth.qml b/modules/bar/popouts/Bluetooth.qml index 09ed768..f8035ed 100644 --- a/modules/bar/popouts/Bluetooth.qml +++ b/modules/bar/popouts/Bluetooth.qml @@ -108,7 +108,7 @@ ColumnLayout { implicitHeight: connectIcon.implicitHeight + Appearance.padding.small radius: Appearance.rounding.full - color: device.modelData.state === BluetoothDeviceState.Connected ? Colours.palette.m3primary : Colours.palette.m3surface + color: device.modelData.state === BluetoothDeviceState.Connected ? Colours.palette.m3primary : Colours.tPalette.m3surface StyledBusyIndicator { anchors.centerIn: parent diff --git a/modules/bar/popouts/Network.qml b/modules/bar/popouts/Network.qml index 6c21f24..ed48b86 100644 --- a/modules/bar/popouts/Network.qml +++ b/modules/bar/popouts/Network.qml @@ -102,7 +102,7 @@ ColumnLayout { implicitHeight: connectIcon.implicitHeight + Appearance.padding.small radius: Appearance.rounding.full - color: networkItem.modelData.active ? Colours.palette.m3primary : Colours.palette.m3surface + color: networkItem.modelData.active ? Colours.palette.m3primary : Colours.tPalette.m3surface StyledBusyIndicator { anchors.centerIn: parent @@ -156,7 +156,7 @@ ColumnLayout { implicitHeight: rescanBtn.implicitHeight + Appearance.padding.small * 2 radius: Appearance.rounding.normal - color: Network.scanning ? Colours.palette.m3surfaceContainer : Colours.palette.m3primaryContainer + color: Network.scanning ? Colours.tPalette.m3surfaceContainer : Colours.palette.m3primaryContainer StateLayer { color: Network.scanning ? Colours.palette.m3onSurface : Colours.palette.m3onPrimaryContainer |