From c5ca80b168ca247179db322d8e3ff14d6c9e16ad Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 10 Jul 2026 19:14:07 -0400 Subject: feat(admin): style conditions green and actions orange, standardize remove button wording --- internal/admin/static/editor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/admin/static/editor.js') diff --git a/internal/admin/static/editor.js b/internal/admin/static/editor.js index 1bd6872..d5fb5c7 100644 --- a/internal/admin/static/editor.js +++ b/internal/admin/static/editor.js @@ -140,7 +140,7 @@ function renderEditor(id, data) { html += '
'; html += ''; - html += ''; + html += ''; html += '
'; $('#editorMain').innerHTML = html; @@ -359,7 +359,7 @@ function showItemContextMenu(e, id) { addBtn('Rename', '', function() { startInlineItemRename(id); }); addBtn('Duplicate', '', function() { duplicateFromMenu(id); }); - addBtn('Delete', 'danger', function() { deleteItem(id); }); + addBtn('Remove', 'danger', function() { deleteItem(id); }); document.body.appendChild(overlay); document.body.appendChild(menu); -- cgit v1.2.3