From d3b7b857a4de39ab04c112373845a2a5e5660ea0 Mon Sep 17 00:00:00 2001 From: Woody Date: Thu, 9 Nov 2023 21:39:45 +0100 Subject: [PATCH] Fix palette list shadow of selected option Fix padding and margin in pallist element Fix palette list shadow of selected option --- wled00/data/simple.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wled00/data/simple.js b/wled00/data/simple.js index e52ec747c..33959c231 100644 --- a/wled00/data/simple.js +++ b/wled00/data/simple.js @@ -86,6 +86,9 @@ function simplifyUI(doc) { // Chage height of palette list gId("pallist").style.height = "300px"; gId("pallist").style.overflow = "scroll"; + // fix shadow + gId("pallist").style.margin = "0px -16px"; + gId("pallist").style.padding = "0px 16px"; // Hide filter options gId("filters").style.display = "none";