From d13f97d6e3c01d0397244695e48fdd740c46b296 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Mon, 21 Nov 2022 08:53:41 +0100 Subject: [PATCH] css: don't make full tags inline-block in the tree when showing full tags in the tree as inline-block, the height is increased, leading to unwanted 'wobble' when tags are added/removed Signed-off-by: Dominik Csapak --- src/css/ext6-pmx.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/css/ext6-pmx.css b/src/css/ext6-pmx.css index 37cadde..b9bfb35 100644 --- a/src/css/ext6-pmx.css +++ b/src/css/ext6-pmx.css @@ -14,6 +14,11 @@ display: inline-block; } +.proxmox-tags-full .x-grid-cell-inner-treecolumn .proxmox-tag-light, +.proxmox-tags-full .x-grid-cell-inner-treecolumn .proxmox-tag-dark { + display: inherit; +} + .x-boundlist-item > .proxmox-tag-light, .x-boundlist-item > .proxmox-tag-dark { line-height: 15px;