diff --git a/services/web-ui/public/index.html b/services/web-ui/public/index.html index c9ebd60..f9770fe 100644 --- a/services/web-ui/public/index.html +++ b/services/web-ui/public/index.html @@ -257,6 +257,22 @@ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; + cursor: text; + } + + /* Inline rename input */ + .asset-name-input { + width: 100%; + font-size: var(--text-sm); + font-weight: 500; + font-family: inherit; + padding: 1px 4px; + border-radius: 3px; + border: 1px solid var(--accent-border); + background: var(--bg-raised); + color: var(--text-primary); + outline: none; + box-sizing: border-box; } .asset-info { @@ -303,7 +319,7 @@ min-width: 160px; } - /* Asset detail popover */ + /* Asset action buttons */ .asset-actions { position: absolute; top: var(--sp-2); @@ -619,6 +635,7 @@ setupDrag(); setupSearch(); setupFilters(); + setupRenameListener(document.getElementById('assetGrid')); // Multi-select bulk actions if (window.SelectionManager) { @@ -806,7 +823,7 @@