From cbbbadf4389c346e3d4ac2bd99ec1b4381d94916 Mon Sep 17 00:00:00 2001 From: Simula_r <18093452+simula-r@users.noreply.github.com> Date: Thu, 9 Oct 2025 14:58:13 -0700 Subject: [PATCH] fix: misc LOD polish (#6001) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Fix NodeHeader styes when LOD and prevent unwanted pointer-events at LOD. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6001-fix-misc-LOD-polish-2876d73d365081efb5d6fcaf5815eee6) by [Unito](https://www.unito.io) --- packages/design-system/src/css/style.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/packages/design-system/src/css/style.css b/packages/design-system/src/css/style.css index 2a714ce7a..df630d226 100644 --- a/packages/design-system/src/css/style.css +++ b/packages/design-system/src/css/style.css @@ -1046,6 +1046,11 @@ audio.comfy-audio.empty-audio-widget { transition: none; } +.isLOD .lg-node-header { + border-radius: 0px; + pointer-events: none; +} + .isLOD .lg-node-widgets { pointer-events: none; }