From e8c53984995da60616587dc8a2137602dbf0014a Mon Sep 17 00:00:00 2001 From: Claude Agent Date: Thu, 2 Apr 2026 13:15:59 +0000 Subject: [PATCH] =?UTF-8?q?style(design):=20FINDING-003=20=E2=80=94=20repl?= =?UTF-8?q?ace=20transition:all=20with=20explicit=20props?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DESIGN.md motion rules: never use transition:all, list properties explicitly. Changed preset-btn from transition:all to background/color/border-color transitions. Co-Authored-By: Claude Opus 4.6 (1M context) --- api/app/static/css/style.css | 2 +- api/app/templates/base.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/app/static/css/style.css b/api/app/static/css/style.css index 958ae1e..68399d1 100644 --- a/api/app/static/css/style.css +++ b/api/app/static/css/style.css @@ -1069,7 +1069,7 @@ tr.mapping-deleted td { min-height: 32px; font-size: 0.78rem; cursor: pointer; - transition: all 0.15s; + transition: background 0.15s, color 0.15s, border-color 0.15s; border-radius: 4px; } .preset-btn:hover { diff --git a/api/app/templates/base.html b/api/app/templates/base.html index 9c6bef4..50590d5 100644 --- a/api/app/templates/base.html +++ b/api/app/templates/base.html @@ -19,7 +19,7 @@ {% set rp = request.scope.get('root_path', '') %} - +