From e313acef12039ca555dac15fb26e9111ff69c073 Mon Sep 17 00:00:00 2001 From: Lucio Giannotta Date: Wed, 25 Oct 2023 17:54:08 +0800 Subject: [PATCH] Remove bullet points and unnecessary padding from `SearchListControl` --- assets/js/editor-components/search-list-control/style.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/js/editor-components/search-list-control/style.scss b/assets/js/editor-components/search-list-control/style.scss index d8f089f7647..95185d8ab2c 100644 --- a/assets/js/editor-components/search-list-control/style.scss +++ b/assets/js/editor-components/search-list-control/style.scss @@ -52,6 +52,12 @@ } } } + + .woocommerce-search-list__list { + // Here to increase specificity compared to default editor styles + // wrapping `ul`s and `ol`s. + padding-left: 0; + } } .woocommerce-search-list__selected { @@ -98,6 +104,7 @@ border: 1px solid $gray-200; margin: 0; padding: 0; + list-style: none; max-height: 17em; overflow-x: hidden; overflow-y: auto;