From ed076ebd6139dcc7a609ae36a0c76a85a2cbc761 Mon Sep 17 00:00:00 2001 From: hikemaniac <31667811+hikemaniac@users.noreply.github.com> Date: Sat, 14 Mar 2020 16:06:33 +0100 Subject: [PATCH 1/2] Fix border-radius for search query input field --- app/assets/stylesheets/common.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index d3382eb3f2..639e0328eb 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -764,6 +764,10 @@ header .search_forms, overflow: hidden; border-radius: 2px 0 0 2px; } + + input#query { + border-radius: 3px 0px 0px 3px; + } input[type=text] { width: 100%; From 74142661e391f84253de87d30c9ead76632355e4 Mon Sep 17 00:00:00 2001 From: hikemaniac <31667811+hikemaniac@users.noreply.github.com> Date: Sat, 14 Mar 2020 16:39:21 +0100 Subject: [PATCH 2/2] Moved CSS rule --- app/assets/stylesheets/common.scss | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss index 639e0328eb..98b58c9987 100644 --- a/app/assets/stylesheets/common.scss +++ b/app/assets/stylesheets/common.scss @@ -764,10 +764,6 @@ header .search_forms, overflow: hidden; border-radius: 2px 0 0 2px; } - - input#query { - border-radius: 3px 0px 0px 3px; - } input[type=text] { width: 100%; @@ -777,6 +773,7 @@ header .search_forms, input[type=text].overflow { border-right: none; + border-radius: 3px 0px 0px 3px; } input:focus {