diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 10:19:46 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-05-05 10:19:46 +1000 |
| commit | c665c0ca98d72c172893e8bbd9c893aaa2b9f46e (patch) | |
| tree | 160713bc48b5332c0534d0d235ef7f100344eb58 /modules/launcher | |
| parent | bar: add scroll actions to fillers (diff) | |
| download | caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.gz caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.tar.bz2 caelestia-shell-c665c0ca98d72c172893e8bbd9c893aaa2b9f46e.zip | |
feat: border + colour changes
Diffstat (limited to 'modules/launcher')
| -rw-r--r-- | modules/launcher/AppList.qml | 2 | ||||
| -rw-r--r-- | modules/launcher/Background.qml | 2 | ||||
| -rw-r--r-- | modules/launcher/Content.qml | 4 | ||||
| -rw-r--r-- | modules/launcher/ContentList.qml | 4 | ||||
| -rw-r--r-- | modules/launcher/Launcher.qml | 1 |
5 files changed, 7 insertions, 6 deletions
diff --git a/modules/launcher/AppList.qml b/modules/launcher/AppList.qml index 2f352ba..5dfdf8b 100644 --- a/modules/launcher/AppList.qml +++ b/modules/launcher/AppList.qml @@ -39,7 +39,7 @@ ListView { highlight: StyledRect { radius: Appearance.rounding.normal - color: Appearance.alpha(Appearance.colours.m3surfaceContainerHighest, true) + color: Appearance.alpha(Appearance.colours.m3surfaceContainerHigh, true) } delegate: isAction ? actionItem : appItem diff --git a/modules/launcher/Background.qml b/modules/launcher/Background.qml index 0e9f7dd..7bffd26 100644 --- a/modules/launcher/Background.qml +++ b/modules/launcher/Background.qml @@ -16,7 +16,7 @@ Shape { ShapePath { strokeWidth: -1 - fillColor: Appearance.colours.m3surfaceContainer + fillColor: Appearance.colours.m3surface startY: root.wrapperHeight diff --git a/modules/launcher/Content.qml b/modules/launcher/Content.qml index 315835e..41904f7 100644 --- a/modules/launcher/Content.qml +++ b/modules/launcher/Content.qml @@ -24,7 +24,7 @@ Item { StyledRect { id: listWrapper - color: Appearance.alpha(Appearance.colours.m3surfaceContainerHigh, true) + color: Appearance.alpha(Appearance.colours.m3surfaceContainer, true) radius: root.rounding implicitWidth: list.width + root.padding * 2 @@ -61,7 +61,7 @@ Item { placeholderText: qsTr(`Type "${LauncherConfig.actionPrefix}" for commands`) background: StyledRect { - color: Appearance.alpha(Appearance.colours.m3surfaceContainerHigh, true) + color: Appearance.alpha(Appearance.colours.m3surfaceContainer, true) radius: root.rounding } diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml index 74c229a..253bcf0 100644 --- a/modules/launcher/ContentList.qml +++ b/modules/launcher/ContentList.qml @@ -139,7 +139,7 @@ Item { id: icon text: "manage_search" - color: Appearance.colours.m3outline + color: Appearance.colours.m3onSurfaceVariant font.pointSize: Appearance.font.size.extraLarge anchors.verticalCenter: parent.verticalCenter @@ -153,7 +153,7 @@ Item { anchors.verticalCenter: parent.verticalCenter text: qsTr("No results") - color: Appearance.colours.m3outline + color: Appearance.colours.m3onSurfaceVariant font.pointSize: Appearance.font.size.larger font.weight: 500 } diff --git a/modules/launcher/Launcher.qml b/modules/launcher/Launcher.qml index 34e592a..26549f5 100644 --- a/modules/launcher/Launcher.qml +++ b/modules/launcher/Launcher.qml @@ -25,6 +25,7 @@ Scope { item: wrapper } + margins.bottom: BackgroundConfig.border.thickness anchors.top: true anchors.left: true anchors.bottom: true |