From f0acb197adb3dab2207c25d0d93068acd78b3d33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20T=C3=A1mara?= Date: Mon, 3 Nov 2025 13:14:29 -0500 Subject: [PATCH] style: Improve tree visual Use block and tree if you want to present a treelike structure, see keybinding for a usage sample --- assets/css/index.css | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/assets/css/index.css b/assets/css/index.css index 536d61a..784c29a 100644 --- a/assets/css/index.css +++ b/assets/css/index.css @@ -405,14 +405,23 @@ label input { width: 100%; } -.tree, .tree ul { +.tree p { + margin-bottom: 0px; +} +.tree { + padding: 10px; position: relative; - padding-left: 0; list-style-type: none; line-height: var(--line-height); + background: var(--background-color-alt); } .tree ul { margin: 0; + padding: 0; + position: relative; + list-style-type: none; + line-height: var(--line-height); + background: var(--background-color-alt); } .tree ul li { position: relative;