From c4ddd4bfc28c4fd015c6789339d280456c019ce2 Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sat, 6 Jun 2026 14:11:48 +0200 Subject: [PATCH] fix(furni-editor): green/red status dot on permission toggles Replace the white/grey dot with a green (ON) / red (OFF) traffic-light badge + a subtle ring so it reads on both the teal and grey chip backgrounds. --- src/components/furni-editor/views/FurniEditorEditView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/furni-editor/views/FurniEditorEditView.tsx b/src/components/furni-editor/views/FurniEditorEditView.tsx index 251509b..60bd81c 100644 --- a/src/components/furni-editor/views/FurniEditorEditView.tsx +++ b/src/components/furni-editor/views/FurniEditorEditView.tsx @@ -345,7 +345,7 @@ export const FurniEditorEditView: FC = props => title={ on ? 'Enabled — click to disable' : 'Disabled — click to enable' } className={ `inline-flex items-center gap-1.5 text-[11px] px-2.5 py-1 rounded-lg border font-medium transition ${ on ? 'bg-[#1E7295] border-[#1E7295] text-[#ffffff] shadow-sm' : 'bg-slate-100 border-slate-200 text-slate-400 hover:bg-slate-200 hover:text-slate-600' }` } > - + { key.replace('allow', '') } );