diff --git a/admin-spa/src/components/ui/tiptap-button-extension.ts b/admin-spa/src/components/ui/tiptap-button-extension.ts index bb0e2fa..cca5056 100644 --- a/admin-spa/src/components/ui/tiptap-button-extension.ts +++ b/admin-spa/src/components/ui/tiptap-button-extension.ts @@ -69,20 +69,20 @@ export const ButtonExtension = Node.create({ // Simple link styling - no fancy button appearance in editor // The actual button styling happens in email rendering (EmailRenderer.php) - // In editor, just show as a link with visual indicator it's a button + // In editor, just show as a styled link (differentiable from regular links) return [ 'a', mergeAttributes(this.options.HTMLAttributes, { href, class: 'button-node', - style: 'color: #7f54b3; text-decoration: underline; cursor: pointer; font-weight: 500;', + style: 'color: #7f54b3; text-decoration: underline; cursor: pointer; font-weight: 600; background: rgba(127,84,179,0.1); padding: 2px 6px; border-radius: 3px;', 'data-button': '', 'data-text': text, 'data-href': href, 'data-style': style, title: `Button: ${text} → ${href}`, }), - `🔘 ${text}`, + text, ]; },