refactor(ui): remove unused toolbar dot indicator

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-10 22:42:41 +08:00
parent 6f998480bc
commit 0edff0e1cb
2 changed files with 0 additions and 9 deletions
@@ -200,14 +200,6 @@
background: #f2f4f7;
}
.toolbar-dot {
width: 7px;
height: 7px;
margin-left: auto;
border-radius: 999px;
background: #ff5a4e;
}
.toolbar-menu-separator {
height: 1px;
background: #eceff3;
@@ -505,7 +505,6 @@ export function ImageNodeToolbar({
<button key={item.id} type="button" disabled={disabled} onClick={() => runMoreAction(item.onClick)}>
<Icon size={15} />
<span>{item.label}</span>
{item.dot && <i className="toolbar-dot" />}
</button>
);
})}