diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-10 16:51:41 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-08-10 16:51:41 +1000 |
| commit | 5d513eeb252c25b782051acd41e229974ab6e493 (patch) | |
| tree | 63e332ad2fc42c6fd01c934784b952d5f041524b /modules | |
| parent | internal: more colour fixes (diff) | |
| download | caelestia-shell-5d513eeb252c25b782051acd41e229974ab6e493.tar.gz caelestia-shell-5d513eeb252c25b782051acd41e229974ab6e493.tar.bz2 caelestia-shell-5d513eeb252c25b782051acd41e229974ab6e493.zip | |
internal: more colour fixes
:woe:
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/bar/popouts/Bluetooth.qml | 2 | ||||
| -rw-r--r-- | modules/bar/popouts/Network.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/bar/popouts/Bluetooth.qml b/modules/bar/popouts/Bluetooth.qml index f8035ed..6678030 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.tPalette.m3surface + color: Qt.alpha(Colours.palette.m3primary, device.modelData.state === BluetoothDeviceState.Connected ? 1 : 0) StyledBusyIndicator { anchors.centerIn: parent diff --git a/modules/bar/popouts/Network.qml b/modules/bar/popouts/Network.qml index ed48b86..6a95b73 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.tPalette.m3surface + color: Qt.alpha(Colours.palette.m3primary, networkItem.modelData.active ? 1 : 0) StyledBusyIndicator { anchors.centerIn: parent |