diff --git a/plugins/actions/smart-mind-map/smart_mind_map.py b/plugins/actions/smart-mind-map/smart_mind_map.py index 9dfa969..a0b1017 100644 --- a/plugins/actions/smart-mind-map/smart_mind_map.py +++ b/plugins/actions/smart-mind-map/smart_mind_map.py @@ -690,6 +690,29 @@ CSS_TEMPLATE_MINDMAP = """ text-decoration: none; border-bottom: 1px dotted var(--link-color); } + .star-btn { + background: transparent !important; + border: none !important; + color: #fbbf24 !important; + display: inline-flex !important; + align-items: center; + justify-content: center; + padding: 4px 8px !important; + cursor: pointer; + transition: all 0.2s ease; + text-decoration: none; + height: 28px; + } + .star-btn:hover { + color: #f59e0b !important; + transform: scale(1.15); + filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.5)); + } + .star-btn svg { + width: 18px !important; + height: 18px !important; + fill: currentColor !important; + } .content-area { padding: 0; @@ -846,6 +869,11 @@ CONTENT_TEMPLATE_MINDMAP = """ + + + + +
@@ -1439,8 +1467,8 @@ class Action: description="Whether to print debug logs in the browser console.", ) ENABLE_DIRECT_EMBED_MODE: bool = Field( - default=False, - description="Enable Direct Embed Mode (v0.8.0+ layout) instead of Legacy Mode. Defaults to False (Legacy Mode).", + default=True, + description="Enable Direct Embed Mode (v0.8.0+ layout) instead of Legacy Mode. Defaults to True (Direct Embed Mode).", ) def __init__(self): @@ -2369,6 +2397,11 @@ class Action: + + + + +