From a43e98afa157edd8c0f1f6c2de77a4212f2a833f Mon Sep 17 00:00:00 2001 From: adamghill Date: Sat, 29 Nov 2025 08:39:52 -0500 Subject: [PATCH 1/3] Do not set the width explicitly on `.input-form button` because it creates too much whitespace. --- djangoproject/scss/_style.scss | 1 - 1 file changed, 1 deletion(-) diff --git a/djangoproject/scss/_style.scss b/djangoproject/scss/_style.scss index 08a9a834f..91c270d31 100644 --- a/djangoproject/scss/_style.scss +++ b/djangoproject/scss/_style.scss @@ -3011,7 +3011,6 @@ form { position: absolute; right: 0; top: 6%; - width: 40px; i { @include font-size(20); From be34a0345591e82e1de4699b1b9295711e225325 Mon Sep 17 00:00:00 2001 From: adamghill Date: Wed, 3 Dec 2025 07:22:40 -0500 Subject: [PATCH 2/3] Add width back. --- djangoproject/scss/_style.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/djangoproject/scss/_style.scss b/djangoproject/scss/_style.scss index 91c270d31..08a9a834f 100644 --- a/djangoproject/scss/_style.scss +++ b/djangoproject/scss/_style.scss @@ -3011,6 +3011,7 @@ form { position: absolute; right: 0; top: 6%; + width: 40px; i { @include font-size(20); From 1319cf80f1b44ee2521c7e6e266d9225ed397dda Mon Sep 17 00:00:00 2001 From: adamghill Date: Wed, 3 Dec 2025 07:29:49 -0500 Subject: [PATCH 3/3] Remove reseting margin-left for .search. --- djangoproject/scss/_style.scss | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/djangoproject/scss/_style.scss b/djangoproject/scss/_style.scss index 08a9a834f..c06f758eb 100644 --- a/djangoproject/scss/_style.scss +++ b/djangoproject/scss/_style.scss @@ -581,7 +581,7 @@ header { border: 0; float: left; text-align: left; - > :not(.search){ + > :not(.search) { padding: 10px; } } @@ -3057,12 +3057,9 @@ form { width: 20%; min-width: 200px; margin: 10px; - margin-left: 0; + input { margin: 0; - @include respond-min(1080px) { - margin: 0 10px; - } } } }