From 06fccd86184b70b7e5155eef809966f65d3a6565 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Bellet Date: Wed, 16 Aug 2023 15:04:07 +0200 Subject: [PATCH] Totally hide input above its container --- app/webpacker/css/admin/products_v3.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/webpacker/css/admin/products_v3.scss b/app/webpacker/css/admin/products_v3.scss index a5b7d9fe62..ba34c089d4 100644 --- a/app/webpacker/css/admin/products_v3.scss +++ b/app/webpacker/css/admin/products_v3.scss @@ -159,7 +159,10 @@ } > input { - background-color: $lighter-grey; + // Totally hide the input from its container + background-color: transparent; + border: none; + width: calc(100% - 30px); // 30px is the width of the search icon + padding } &:before {