mirror of
https://github.com/aaronsb/obsidian-mcp-plugin.git
synced 2026-07-22 06:45:14 +00:00
- Complete Obsidian plugin structure with TypeScript build pipeline - Basic plugin lifecycle (onload/onunload) with settings management - Settings UI for HTTP server configuration (ports, SSL, debug) - Status bar indicator and restart command - Ready for BRAT installation and testing Phase 1 foundation complete - plugin loads successfully in Obsidian
31 lines
No EOL
520 B
CSS
31 lines
No EOL
520 B
CSS
/* Obsidian MCP Plugin Styles */
|
|
|
|
.mcp-plugin-settings {
|
|
padding: 20px;
|
|
}
|
|
|
|
.mcp-plugin-settings h2 {
|
|
margin-bottom: 20px;
|
|
color: var(--text-accent);
|
|
}
|
|
|
|
.mcp-status-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
|
|
.mcp-status-indicator {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background-color: var(--text-success);
|
|
}
|
|
|
|
.mcp-status-indicator.error {
|
|
background-color: var(--text-error);
|
|
}
|
|
|
|
.mcp-status-indicator.warning {
|
|
background-color: var(--text-warning);
|
|
} |