/* ============================================================
   3-components / editor-toolbar.css
   富文本编辑器工具栏
   来源：styles.css L4192–4211
   ============================================================ */

.compose-editor { border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; }

.editor-toolbar {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: var(--bg-input);
    border-bottom: 1px solid var(--border-light);
}

.editor-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    transition: var(--transition);
}

.editor-btn:hover { background: var(--bg-hover); color: var(--text-primary); }
.editor-btn svg { width: 18px; height: 18px; }

/* Dark mode */
[data-theme="dark"] .editor-toolbar { background: var(--bg-input); }
[data-theme="dark"] .editor-btn:hover { background: var(--bg-hover); }
