From 71eb88016e7b01b6b153f21f8b037c8d0fe5e2c8 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Fri, 31 Oct 2025 12:13:02 +0100 Subject: [PATCH] =?UTF-8?q?overview:=20correct=F0=9F=92=A2=20the=20search?= =?UTF-8?q?=20field's=20height?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../quickshell/ii/modules/overview/SearchBar.qml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/dots/.config/quickshell/ii/modules/overview/SearchBar.qml b/dots/.config/quickshell/ii/modules/overview/SearchBar.qml index 25723be1a..653e3d3f0 100644 --- a/dots/.config/quickshell/ii/modules/overview/SearchBar.qml +++ b/dots/.config/quickshell/ii/modules/overview/SearchBar.qml @@ -63,9 +63,10 @@ RowLayout { } ToolbarTextField { // Search box id: searchInput - Layout.alignment: Qt.AlignVCenter + Layout.topMargin: 4 + Layout.bottomMargin: 4 + implicitHeight: 40 focus: GlobalStates.overviewOpen - padding: 15 font.pixelSize: Appearance.font.pixelSize.small placeholderText: Translation.tr("Search, calculate or run") implicitWidth: root.searchingText == "" ? Appearance.sizes.searchWidthCollapsed : Appearance.sizes.searchWidth @@ -91,12 +92,6 @@ RowLayout { } } } - - cursorDelegate: Rectangle { - width: 1 - color: searchInput.activeFocus ? Appearance.colors.colPrimary : "transparent" - radius: 1 - } } IconToolbarButton {