From c272cbdf5a3a2de0c85721dc3d500ffe298d387b Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Fri, 27 Feb 2026 18:31:41 +0100 Subject: [PATCH] Tweak few elements: dimensions and the checkbox color in the new sidebar --- web/views_manager.css | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/web/views_manager.css b/web/views_manager.css index 60a202893..5e0369bb6 100644 --- a/web/views_manager.css +++ b/web/views_manager.css @@ -548,7 +548,7 @@ align-items: center; justify-content: space-evenly; padding: 20px 32px; - gap: 20px; + gap: 44px; width: 100%; box-sizing: border-box; position: relative; @@ -609,12 +609,15 @@ } > .thumbnail { + --input-dim: 16px; + --gap-between-input-and-thumbnail: 16px; + display: inline-flex; - justify-content: center; + justify-content: flex-end; align-items: center; flex-direction: row-reverse; - gap: 16px; - width: auto; + gap: var(--gap-between-input-and-thumbnail); + width: 190px; height: auto; position: relative; scroll-margin-top: 20px; @@ -662,6 +665,9 @@ > input { margin: 0; + width: var(--input-dim); + height: var(--input-dim); + accent-color: var(--indicator-color); } > .thumbnailImageContainer {