From e46ffe838f401c64725e01105da5c665c7da9b46 Mon Sep 17 00:00:00 2001 From: Macbook Date: Wed, 24 Jun 2026 00:53:35 +0900 Subject: [PATCH] =?UTF-8?q?=EC=A0=84=EB=9E=B5=EC=BB=A8=ED=8A=B8=EB=A1=A4?= =?UTF-8?q?=20=EB=B2=84=ED=8A=BC=EC=83=89=EC=83=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/styles/strategyEditor.css | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/frontend/src/styles/strategyEditor.css b/frontend/src/styles/strategyEditor.css index e5bfada..ec8bc12 100644 --- a/frontend/src/styles/strategyEditor.css +++ b/frontend/src/styles/strategyEditor.css @@ -1206,7 +1206,7 @@ .se-flow-cond-actions { display: flex; align-items: center; - gap: 2px; + gap: 6px; flex-shrink: 0; } .se-flow-node--cond { position: relative; } @@ -1234,13 +1234,23 @@ .se-flow-del { position: static; - border: none; background: rgba(0, 0, 0, 0.4); - color: rgba(255, 77, 109, 0.9); + border: 1px solid color-mix(in srgb, var(--se-danger) 45%, transparent); + background: color-mix(in srgb, var(--se-danger) 24%, transparent); + color: color-mix(in srgb, var(--se-danger) 88%, #fff 12%); width: 18px; height: 18px; border-radius: 4px; cursor: pointer; font-size: 0.85rem; line-height: 1; opacity: 0; - transition: opacity 0.12s; + transition: opacity 0.12s, background 0.12s, border-color 0.12s, color 0.12s; flex-shrink: 0; + display: flex; + align-items: center; + justify-content: center; + padding: 0; +} +.se-flow-del:hover { + background: color-mix(in srgb, var(--se-danger) 42%, transparent); + border-color: color-mix(in srgb, var(--se-danger) 72%, transparent); + color: #fff; } .se-flow-settings { border: none;