@nocturnium/svelte-ide 1.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +251 -0
- package/dist/components/agents/AgentActivityPanel.svelte +565 -0
- package/dist/components/agents/AgentActivityPanel.svelte.d.ts +24 -0
- package/dist/components/agents/AgentAvatar.svelte +417 -0
- package/dist/components/agents/AgentAvatar.svelte.d.ts +23 -0
- package/dist/components/agents/AgentCursor.svelte +224 -0
- package/dist/components/agents/AgentCursor.svelte.d.ts +35 -0
- package/dist/components/agents/AgentPresenceBar.svelte +261 -0
- package/dist/components/agents/AgentPresenceBar.svelte.d.ts +20 -0
- package/dist/components/agents/index.d.ts +4 -0
- package/dist/components/agents/index.js +5 -0
- package/dist/components/ai/AIConversationList.svelte +524 -0
- package/dist/components/ai/AIConversationList.svelte.d.ts +17 -0
- package/dist/components/ai/AIEditPreview.svelte +132 -0
- package/dist/components/ai/AIEditPreview.svelte.d.ts +8 -0
- package/dist/components/ai/AIInlineEdit.svelte +155 -0
- package/dist/components/ai/AIInlineEdit.svelte.d.ts +10 -0
- package/dist/components/ai/AIMessage.svelte +239 -0
- package/dist/components/ai/AIMessage.svelte.d.ts +13 -0
- package/dist/components/ai/AIMessageActions.svelte +176 -0
- package/dist/components/ai/AIMessageActions.svelte.d.ts +12 -0
- package/dist/components/ai/AIMessageContent.svelte +355 -0
- package/dist/components/ai/AIMessageContent.svelte.d.ts +7 -0
- package/dist/components/ai/AIPanel.svelte +561 -0
- package/dist/components/ai/AIPanel.svelte.d.ts +7 -0
- package/dist/components/ai/AISuggestionWidget.svelte +132 -0
- package/dist/components/ai/AISuggestionWidget.svelte.d.ts +10 -0
- package/dist/components/ai/AIToolCallDisplay.svelte +317 -0
- package/dist/components/ai/AIToolCallDisplay.svelte.d.ts +12 -0
- package/dist/components/ai/index.d.ts +9 -0
- package/dist/components/ai/index.js +10 -0
- package/dist/components/core/Avatar.svelte +110 -0
- package/dist/components/core/Avatar.svelte.d.ts +12 -0
- package/dist/components/core/Badge.svelte +98 -0
- package/dist/components/core/Badge.svelte.d.ts +11 -0
- package/dist/components/core/Button.svelte +175 -0
- package/dist/components/core/Button.svelte.d.ts +18 -0
- package/dist/components/core/ConnectionStatus.svelte +294 -0
- package/dist/components/core/ConnectionStatus.svelte.d.ts +20 -0
- package/dist/components/core/ContextMenu.svelte +176 -0
- package/dist/components/core/ContextMenu.svelte.d.ts +19 -0
- package/dist/components/core/ErrorBoundary.svelte +277 -0
- package/dist/components/core/ErrorBoundary.svelte.d.ts +23 -0
- package/dist/components/core/Icon.svelte +107 -0
- package/dist/components/core/Icon.svelte.d.ts +8 -0
- package/dist/components/core/Input.svelte +138 -0
- package/dist/components/core/Input.svelte.d.ts +20 -0
- package/dist/components/core/Kbd.svelte +34 -0
- package/dist/components/core/Kbd.svelte.d.ts +7 -0
- package/dist/components/core/ResizeHandle.svelte +200 -0
- package/dist/components/core/ResizeHandle.svelte.d.ts +23 -0
- package/dist/components/core/Spinner.svelte +35 -0
- package/dist/components/core/Spinner.svelte.d.ts +7 -0
- package/dist/components/core/Textarea.svelte +112 -0
- package/dist/components/core/Textarea.svelte.d.ts +18 -0
- package/dist/components/core/Tooltip.svelte +103 -0
- package/dist/components/core/Tooltip.svelte.d.ts +11 -0
- package/dist/components/core/index.d.ts +13 -0
- package/dist/components/core/index.js +14 -0
- package/dist/components/editor/AIFocusLayer.svelte +430 -0
- package/dist/components/editor/AIFocusLayer.svelte.d.ts +32 -0
- package/dist/components/editor/Breadcrumbs.svelte +435 -0
- package/dist/components/editor/Breadcrumbs.svelte.d.ts +33 -0
- package/dist/components/editor/BreakpointLayer.svelte +642 -0
- package/dist/components/editor/BreakpointLayer.svelte.d.ts +20 -0
- package/dist/components/editor/CognitiveLoadMeter.svelte +324 -0
- package/dist/components/editor/CognitiveLoadMeter.svelte.d.ts +18 -0
- package/dist/components/editor/CollaborativeEditor.svelte +218 -0
- package/dist/components/editor/CollaborativeEditor.svelte.d.ts +32 -0
- package/dist/components/editor/CommandPalette.svelte +434 -0
- package/dist/components/editor/CommandPalette.svelte.d.ts +11 -0
- package/dist/components/editor/ComplexityLayer.svelte +293 -0
- package/dist/components/editor/ComplexityLayer.svelte.d.ts +23 -0
- package/dist/components/editor/ConflictZoneLayer.svelte +441 -0
- package/dist/components/editor/ConflictZoneLayer.svelte.d.ts +25 -0
- package/dist/components/editor/ContextLens.svelte +262 -0
- package/dist/components/editor/ContextLens.svelte.d.ts +27 -0
- package/dist/components/editor/CustomEditor.svelte +1242 -0
- package/dist/components/editor/CustomEditor.svelte.d.ts +37 -0
- package/dist/components/editor/DebugConsole.svelte +646 -0
- package/dist/components/editor/DebugConsole.svelte.d.ts +41 -0
- package/dist/components/editor/EchoCursorLayer.svelte +363 -0
- package/dist/components/editor/EchoCursorLayer.svelte.d.ts +24 -0
- package/dist/components/editor/Editor.svelte +61 -0
- package/dist/components/editor/Editor.svelte.d.ts +22 -0
- package/dist/components/editor/EditorGutter.svelte +119 -0
- package/dist/components/editor/EditorGutter.svelte.d.ts +19 -0
- package/dist/components/editor/EditorLines.svelte +182 -0
- package/dist/components/editor/EditorLines.svelte.d.ts +43 -0
- package/dist/components/editor/EditorPane.svelte +134 -0
- package/dist/components/editor/EditorPane.svelte.d.ts +9 -0
- package/dist/components/editor/EditorSelections.svelte +186 -0
- package/dist/components/editor/EditorSelections.svelte.d.ts +25 -0
- package/dist/components/editor/EditorTabs.svelte +170 -0
- package/dist/components/editor/EditorTabs.svelte.d.ts +12 -0
- package/dist/components/editor/FileExplorer.svelte +811 -0
- package/dist/components/editor/FileExplorer.svelte.d.ts +67 -0
- package/dist/components/editor/FileIcon.svelte +110 -0
- package/dist/components/editor/FileIcon.svelte.d.ts +10 -0
- package/dist/components/editor/FindReplace.svelte +448 -0
- package/dist/components/editor/FindReplace.svelte.d.ts +40 -0
- package/dist/components/editor/GhostBracketLayer.svelte +391 -0
- package/dist/components/editor/GhostBracketLayer.svelte.d.ts +24 -0
- package/dist/components/editor/GitBlameLayer.svelte +436 -0
- package/dist/components/editor/GitBlameLayer.svelte.d.ts +18 -0
- package/dist/components/editor/InlineDiagnosticsLayer.svelte +540 -0
- package/dist/components/editor/InlineDiagnosticsLayer.svelte.d.ts +35 -0
- package/dist/components/editor/InlineDiffLayer.svelte +337 -0
- package/dist/components/editor/InlineDiffLayer.svelte.d.ts +31 -0
- package/dist/components/editor/MinimalEditor.svelte +75 -0
- package/dist/components/editor/MinimalEditor.svelte.d.ts +6 -0
- package/dist/components/editor/MinimalEditor2.svelte +84 -0
- package/dist/components/editor/MinimalEditor2.svelte.d.ts +6 -0
- package/dist/components/editor/Minimap.svelte +327 -0
- package/dist/components/editor/Minimap.svelte.d.ts +34 -0
- package/dist/components/editor/PluginPreviewSandbox.svelte +793 -0
- package/dist/components/editor/PluginPreviewSandbox.svelte.d.ts +49 -0
- package/dist/components/editor/ProblemsPanel.svelte +628 -0
- package/dist/components/editor/ProblemsPanel.svelte.d.ts +25 -0
- package/dist/components/editor/QuickActionsMenu.svelte +403 -0
- package/dist/components/editor/QuickActionsMenu.svelte.d.ts +18 -0
- package/dist/components/editor/SnippetPalette.svelte +530 -0
- package/dist/components/editor/SnippetPalette.svelte.d.ts +16 -0
- package/dist/components/editor/StructureMap.svelte +431 -0
- package/dist/components/editor/StructureMap.svelte.d.ts +37 -0
- package/dist/components/editor/SymbolOutline.svelte +722 -0
- package/dist/components/editor/SymbolOutline.svelte.d.ts +44 -0
- package/dist/components/editor/TimelineScrubber.svelte +470 -0
- package/dist/components/editor/TimelineScrubber.svelte.d.ts +40 -0
- package/dist/components/editor/TokenRenderer.svelte +69 -0
- package/dist/components/editor/TokenRenderer.svelte.d.ts +15 -0
- package/dist/components/editor/constants.d.ts +32 -0
- package/dist/components/editor/constants.js +36 -0
- package/dist/components/editor/core/ai-awareness.d.ts +176 -0
- package/dist/components/editor/core/ai-awareness.js +210 -0
- package/dist/components/editor/core/bracket-healer.d.ts +189 -0
- package/dist/components/editor/core/bracket-healer.js +406 -0
- package/dist/components/editor/core/breakpoints.d.ts +203 -0
- package/dist/components/editor/core/breakpoints.js +414 -0
- package/dist/components/editor/core/commands.d.ts +108 -0
- package/dist/components/editor/core/commands.js +246 -0
- package/dist/components/editor/core/complexity-analyzer.d.ts +123 -0
- package/dist/components/editor/core/complexity-analyzer.js +376 -0
- package/dist/components/editor/core/conflict-predictor.d.ts +135 -0
- package/dist/components/editor/core/conflict-predictor.js +316 -0
- package/dist/components/editor/core/crdt-binding.d.ts +118 -0
- package/dist/components/editor/core/crdt-binding.js +286 -0
- package/dist/components/editor/core/diagnostics.d.ts +210 -0
- package/dist/components/editor/core/diagnostics.js +335 -0
- package/dist/components/editor/core/echo-cursor.d.ts +201 -0
- package/dist/components/editor/core/echo-cursor.js +267 -0
- package/dist/components/editor/core/folding.d.ts +124 -0
- package/dist/components/editor/core/folding.js +672 -0
- package/dist/components/editor/core/ghost-pair.d.ts +122 -0
- package/dist/components/editor/core/ghost-pair.js +221 -0
- package/dist/components/editor/core/git-blame.d.ts +170 -0
- package/dist/components/editor/core/git-blame.js +324 -0
- package/dist/components/editor/core/index.d.ts +26 -0
- package/dist/components/editor/core/index.js +24 -0
- package/dist/components/editor/core/keybindings.d.ts +79 -0
- package/dist/components/editor/core/keybindings.js +357 -0
- package/dist/components/editor/core/multi-cursor.d.ts +196 -0
- package/dist/components/editor/core/multi-cursor.js +521 -0
- package/dist/components/editor/core/navigation.d.ts +107 -0
- package/dist/components/editor/core/navigation.js +408 -0
- package/dist/components/editor/core/quick-actions.d.ts +189 -0
- package/dist/components/editor/core/quick-actions.js +427 -0
- package/dist/components/editor/core/search.d.ts +88 -0
- package/dist/components/editor/core/search.js +192 -0
- package/dist/components/editor/core/semantic-analyzer.d.ts +77 -0
- package/dist/components/editor/core/semantic-analyzer.js +424 -0
- package/dist/components/editor/core/snippet-manager.d.ts +202 -0
- package/dist/components/editor/core/snippet-manager.js +565 -0
- package/dist/components/editor/core/state.d.ts +367 -0
- package/dist/components/editor/core/state.js +900 -0
- package/dist/components/editor/core/timeline.d.ts +204 -0
- package/dist/components/editor/core/timeline.js +349 -0
- package/dist/components/editor/editor-find.d.ts +56 -0
- package/dist/components/editor/editor-find.js +148 -0
- package/dist/components/editor/editor-input.d.ts +77 -0
- package/dist/components/editor/editor-input.js +445 -0
- package/dist/components/editor/editor-multicursor.d.ts +21 -0
- package/dist/components/editor/editor-multicursor.js +196 -0
- package/dist/components/editor/editor-scroll.d.ts +14 -0
- package/dist/components/editor/editor-scroll.js +34 -0
- package/dist/components/editor/index.d.ts +15 -0
- package/dist/components/editor/index.js +21 -0
- package/dist/components/editor/languages.d.ts +62 -0
- package/dist/components/editor/languages.js +285 -0
- package/dist/components/editor/theme.d.ts +88 -0
- package/dist/components/editor/theme.js +139 -0
- package/dist/components/editor/tokenizer/base.d.ts +40 -0
- package/dist/components/editor/tokenizer/base.js +203 -0
- package/dist/components/editor/tokenizer/index.d.ts +56 -0
- package/dist/components/editor/tokenizer/index.js +215 -0
- package/dist/components/editor/tokenizer/languages/css.d.ts +17 -0
- package/dist/components/editor/tokenizer/languages/css.js +194 -0
- package/dist/components/editor/tokenizer/languages/go.d.ts +17 -0
- package/dist/components/editor/tokenizer/languages/go.js +220 -0
- package/dist/components/editor/tokenizer/languages/html.d.ts +24 -0
- package/dist/components/editor/tokenizer/languages/html.js +145 -0
- package/dist/components/editor/tokenizer/languages/javascript.d.ts +56 -0
- package/dist/components/editor/tokenizer/languages/javascript.js +452 -0
- package/dist/components/editor/tokenizer/languages/json.d.ts +12 -0
- package/dist/components/editor/tokenizer/languages/json.js +91 -0
- package/dist/components/editor/tokenizer/languages/markdown.d.ts +16 -0
- package/dist/components/editor/tokenizer/languages/markdown.js +156 -0
- package/dist/components/editor/tokenizer/languages/python.d.ts +20 -0
- package/dist/components/editor/tokenizer/languages/python.js +227 -0
- package/dist/components/editor/tokenizer/languages/svelte.d.ts +40 -0
- package/dist/components/editor/tokenizer/languages/svelte.js +326 -0
- package/dist/components/editor/tokenizer/types.d.ts +86 -0
- package/dist/components/editor/tokenizer/types.js +4 -0
- package/dist/components/layout/IDELayout.svelte +274 -0
- package/dist/components/layout/IDELayout.svelte.d.ts +29 -0
- package/dist/components/layout/StatusBar.svelte +511 -0
- package/dist/components/layout/StatusBar.svelte.d.ts +47 -0
- package/dist/components/layout/index.d.ts +2 -0
- package/dist/components/layout/index.js +3 -0
- package/dist/components/lsp/AutocompleteWidget.svelte +364 -0
- package/dist/components/lsp/AutocompleteWidget.svelte.d.ts +33 -0
- package/dist/components/lsp/DiagnosticMarker.svelte +166 -0
- package/dist/components/lsp/DiagnosticMarker.svelte.d.ts +19 -0
- package/dist/components/lsp/DiagnosticsPanel.svelte +388 -0
- package/dist/components/lsp/DiagnosticsPanel.svelte.d.ts +21 -0
- package/dist/components/lsp/HoverTooltip.svelte +274 -0
- package/dist/components/lsp/HoverTooltip.svelte.d.ts +24 -0
- package/dist/components/lsp/LSPEditor.svelte +486 -0
- package/dist/components/lsp/LSPEditor.svelte.d.ts +39 -0
- package/dist/components/lsp/SignatureHelpWidget.svelte +216 -0
- package/dist/components/lsp/SignatureHelpWidget.svelte.d.ts +22 -0
- package/dist/components/lsp/index.d.ts +6 -0
- package/dist/components/lsp/index.js +7 -0
- package/dist/components/plugins/PluginCard.svelte +153 -0
- package/dist/components/plugins/PluginCard.svelte.d.ts +19 -0
- package/dist/components/plugins/PluginPanel.svelte +280 -0
- package/dist/components/plugins/PluginPanel.svelte.d.ts +8 -0
- package/dist/components/plugins/PluginProposalForm.svelte +250 -0
- package/dist/components/plugins/PluginProposalForm.svelte.d.ts +6 -0
- package/dist/components/plugins/PluginStatusBadge.svelte +14 -0
- package/dist/components/plugins/PluginStatusBadge.svelte.d.ts +8 -0
- package/dist/components/plugins/index.d.ts +4 -0
- package/dist/components/plugins/index.js +5 -0
- package/dist/components/vfs/LockConflictDialog.svelte +705 -0
- package/dist/components/vfs/LockConflictDialog.svelte.d.ts +21 -0
- package/dist/components/vfs/LockIndicator.svelte +194 -0
- package/dist/components/vfs/LockIndicator.svelte.d.ts +29 -0
- package/dist/components/vfs/LockOverlay.svelte +344 -0
- package/dist/components/vfs/LockOverlay.svelte.d.ts +17 -0
- package/dist/components/vfs/VersionConflictDialog.svelte +549 -0
- package/dist/components/vfs/VersionConflictDialog.svelte.d.ts +24 -0
- package/dist/components/vfs/index.d.ts +4 -0
- package/dist/components/vfs/index.js +5 -0
- package/dist/crdt/awareness.d.ts +42 -0
- package/dist/crdt/awareness.js +109 -0
- package/dist/crdt/document.d.ts +101 -0
- package/dist/crdt/document.js +187 -0
- package/dist/crdt/index.d.ts +9 -0
- package/dist/crdt/index.js +8 -0
- package/dist/crdt/provider.d.ts +85 -0
- package/dist/crdt/provider.js +150 -0
- package/dist/crdt/types.d.ts +61 -0
- package/dist/crdt/types.js +4 -0
- package/dist/crdt/undo.d.ts +34 -0
- package/dist/crdt/undo.js +70 -0
- package/dist/index.d.ts +277 -0
- package/dist/index.js +280 -0
- package/dist/plugins/index.d.ts +103 -0
- package/dist/plugins/index.js +153 -0
- package/dist/services/error-handling.d.ts +95 -0
- package/dist/services/error-handling.js +413 -0
- package/dist/services/ide-integration.d.ts +83 -0
- package/dist/services/ide-integration.js +367 -0
- package/dist/services/lsp-client.d.ts +69 -0
- package/dist/services/lsp-client.js +667 -0
- package/dist/services/mock-ai.d.ts +37 -0
- package/dist/services/mock-ai.js +318 -0
- package/dist/services/optimistic.d.ts +141 -0
- package/dist/services/optimistic.js +367 -0
- package/dist/services/vfs-client.d.ts +81 -0
- package/dist/services/vfs-client.js +348 -0
- package/dist/stores/agents.svelte.d.ts +85 -0
- package/dist/stores/agents.svelte.js +459 -0
- package/dist/stores/ai-persistence.svelte.d.ts +76 -0
- package/dist/stores/ai-persistence.svelte.js +334 -0
- package/dist/stores/ai.svelte.d.ts +140 -0
- package/dist/stores/ai.svelte.js +383 -0
- package/dist/stores/collaboration.svelte.d.ts +164 -0
- package/dist/stores/collaboration.svelte.js +334 -0
- package/dist/stores/editor.svelte.d.ts +131 -0
- package/dist/stores/editor.svelte.js +250 -0
- package/dist/stores/index.d.ts +10 -0
- package/dist/stores/index.js +29 -0
- package/dist/stores/layout.svelte.d.ts +171 -0
- package/dist/stores/layout.svelte.js +351 -0
- package/dist/stores/plugin.svelte.d.ts +121 -0
- package/dist/stores/plugin.svelte.js +410 -0
- package/dist/stores/vfs.svelte.d.ts +123 -0
- package/dist/stores/vfs.svelte.js +680 -0
- package/dist/styles/theme.css +623 -0
- package/dist/types/agents.d.ts +127 -0
- package/dist/types/agents.js +5 -0
- package/dist/types/ai.d.ts +137 -0
- package/dist/types/ai.js +4 -0
- package/dist/types/crdt.d.ts +222 -0
- package/dist/types/crdt.js +5 -0
- package/dist/types/editor.d.ts +52 -0
- package/dist/types/editor.js +18 -0
- package/dist/types/events.d.ts +133 -0
- package/dist/types/events.js +4 -0
- package/dist/types/filesystem.d.ts +77 -0
- package/dist/types/filesystem.js +4 -0
- package/dist/types/index.d.ts +9 -0
- package/dist/types/index.js +12 -0
- package/dist/types/lsp.d.ts +691 -0
- package/dist/types/lsp.js +108 -0
- package/dist/types/plugin.d.ts +239 -0
- package/dist/types/plugin.js +5 -0
- package/dist/types/vfs.d.ts +191 -0
- package/dist/types/vfs.js +18 -0
- package/dist/utils/format.d.ts +55 -0
- package/dist/utils/format.js +152 -0
- package/dist/utils/index.d.ts +3 -0
- package/dist/utils/index.js +4 -0
- package/dist/utils/keybindings.d.ts +33 -0
- package/dist/utils/keybindings.js +171 -0
- package/dist/utils/language.d.ts +27 -0
- package/dist/utils/language.js +222 -0
- package/package.json +178 -0
|
@@ -0,0 +1,623 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @nocturnium/svelte-ide — default theme
|
|
3
|
+
*
|
|
4
|
+
* Ships the design tokens (CSS custom properties), keyframes, and the
|
|
5
|
+
* `.ide-*` helper classes that the components rely on. Import once near your
|
|
6
|
+
* app entry to get the built-in dark "Nocturnium" theme:
|
|
7
|
+
*
|
|
8
|
+
* import '@nocturnium/svelte-ide/theme.css';
|
|
9
|
+
*
|
|
10
|
+
* Every value is a CSS variable on :root, so you can override any token in your
|
|
11
|
+
* own stylesheet (loaded after this one) to retheme without forking.
|
|
12
|
+
*
|
|
13
|
+
* Note: this file intentionally does NOT set global html/body/* resets so it
|
|
14
|
+
* won't fight your application's base styles — only tokens, keyframes, and the
|
|
15
|
+
* opt-in `.ide-*` utility classes are defined.
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/* Nocturnium Design System */
|
|
19
|
+
:root {
|
|
20
|
+
/* Core Brand Colors */
|
|
21
|
+
--color-nocturnium-night: #0d1421;
|
|
22
|
+
--color-nocturnium-deep: #1a2744;
|
|
23
|
+
--color-nocturnium-ocean: #2d5a7b;
|
|
24
|
+
--color-nocturnium-wave: #4a8db7;
|
|
25
|
+
--color-nocturnium-foam: #a8c5d9;
|
|
26
|
+
--color-nocturnium-ember: #d4793a;
|
|
27
|
+
--color-nocturnium-flame: #e9a456;
|
|
28
|
+
--color-nocturnium-moon: #f4f1e0;
|
|
29
|
+
--color-nocturnium-glow: #fffdf5;
|
|
30
|
+
--color-nocturnium-teal: #5eead4;
|
|
31
|
+
|
|
32
|
+
/* Aurora Accents */
|
|
33
|
+
--color-nocturnium-aurora-blue: #60a5fa;
|
|
34
|
+
--color-nocturnium-aurora-purple: #a78bfa;
|
|
35
|
+
--color-nocturnium-aurora-green: #4ade80;
|
|
36
|
+
--color-nocturnium-aurora-yellow: #facc15;
|
|
37
|
+
--color-nocturnium-aurora-pink: #f472b6;
|
|
38
|
+
|
|
39
|
+
/* IDE Surface Colors */
|
|
40
|
+
--ide-bg-primary: var(--color-nocturnium-night);
|
|
41
|
+
--ide-bg-secondary: var(--color-nocturnium-deep);
|
|
42
|
+
--ide-bg-tertiary: var(--color-nocturnium-ocean);
|
|
43
|
+
--ide-bg-elevated: color-mix(in srgb, var(--ide-bg-secondary) 90%, white 10%);
|
|
44
|
+
--ide-bg-hover: color-mix(in srgb, var(--ide-bg-tertiary) 50%, transparent);
|
|
45
|
+
--ide-bg-active: var(--ide-bg-tertiary);
|
|
46
|
+
--ide-bg-selection-secondary: color-mix(in srgb, var(--color-nocturnium-aurora-purple) 22%, transparent);
|
|
47
|
+
|
|
48
|
+
/* IDE Text Colors */
|
|
49
|
+
--ide-text-primary: var(--color-nocturnium-moon);
|
|
50
|
+
--ide-text-secondary: var(--color-nocturnium-foam);
|
|
51
|
+
--ide-text-muted: color-mix(in srgb, var(--ide-text-secondary) 60%, transparent);
|
|
52
|
+
--ide-text-accent: var(--color-nocturnium-ember);
|
|
53
|
+
--ide-text-inverse: var(--color-nocturnium-night);
|
|
54
|
+
|
|
55
|
+
/* IDE Interactive Colors */
|
|
56
|
+
--ide-interactive: var(--color-nocturnium-wave);
|
|
57
|
+
--ide-interactive-hover: var(--color-nocturnium-flame);
|
|
58
|
+
--ide-interactive-active: var(--color-nocturnium-ember);
|
|
59
|
+
--ide-interactive-focus: var(--color-nocturnium-aurora-blue);
|
|
60
|
+
--ide-interactive-muted: color-mix(in srgb, var(--ide-interactive) 70%, transparent);
|
|
61
|
+
|
|
62
|
+
/* IDE Accent Colors */
|
|
63
|
+
--ide-accent: var(--color-nocturnium-wave);
|
|
64
|
+
--ide-accent-strong: var(--color-nocturnium-flame);
|
|
65
|
+
|
|
66
|
+
/* IDE Semantic Colors */
|
|
67
|
+
--ide-success: var(--color-nocturnium-aurora-green);
|
|
68
|
+
--ide-warning: var(--color-nocturnium-aurora-yellow);
|
|
69
|
+
--ide-error: #ef4444;
|
|
70
|
+
--ide-info: var(--color-nocturnium-aurora-blue);
|
|
71
|
+
|
|
72
|
+
/* AI Panel Colors */
|
|
73
|
+
--ide-ai-user: var(--color-nocturnium-ocean);
|
|
74
|
+
--ide-ai-assistant: var(--color-nocturnium-aurora-purple);
|
|
75
|
+
--ide-ai-system: var(--color-nocturnium-deep);
|
|
76
|
+
--ide-ai-thinking: var(--color-nocturnium-aurora-blue);
|
|
77
|
+
--ide-ai-tool: var(--color-nocturnium-aurora-green);
|
|
78
|
+
|
|
79
|
+
/* Plugin Status Colors */
|
|
80
|
+
--ide-plugin-draft: var(--ide-text-muted);
|
|
81
|
+
--ide-plugin-reviewing: var(--color-nocturnium-aurora-yellow);
|
|
82
|
+
--ide-plugin-approved: var(--color-nocturnium-aurora-green);
|
|
83
|
+
--ide-plugin-rejected: var(--ide-error);
|
|
84
|
+
--ide-plugin-deploying: var(--color-nocturnium-aurora-blue);
|
|
85
|
+
--ide-plugin-deployed: var(--color-nocturnium-aurora-green);
|
|
86
|
+
|
|
87
|
+
/* CRDT Collaboration Colors */
|
|
88
|
+
--ide-collab-cursor-1: var(--color-nocturnium-aurora-blue);
|
|
89
|
+
--ide-collab-cursor-2: var(--color-nocturnium-aurora-purple);
|
|
90
|
+
--ide-collab-cursor-3: var(--color-nocturnium-aurora-green);
|
|
91
|
+
--ide-collab-cursor-4: var(--color-nocturnium-aurora-pink);
|
|
92
|
+
--ide-collab-cursor-5: var(--color-nocturnium-aurora-yellow);
|
|
93
|
+
--ide-collab-ai: var(--color-nocturnium-ember);
|
|
94
|
+
|
|
95
|
+
/* IDE Borders */
|
|
96
|
+
--ide-border: color-mix(in srgb, var(--ide-text-secondary) 20%, transparent);
|
|
97
|
+
--ide-border-focus: var(--ide-interactive);
|
|
98
|
+
--ide-border-error: var(--ide-error);
|
|
99
|
+
|
|
100
|
+
/* IDE Shadows */
|
|
101
|
+
--ide-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
|
|
102
|
+
--ide-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
|
|
103
|
+
--ide-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
|
|
104
|
+
--ide-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
|
|
105
|
+
|
|
106
|
+
/* IDE Typography */
|
|
107
|
+
--ide-font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
|
|
108
|
+
--ide-font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Menlo, Monaco, 'Courier New', monospace;
|
|
109
|
+
--ide-font-size-xs: 0.75rem;
|
|
110
|
+
--ide-font-size-sm: 0.875rem;
|
|
111
|
+
--ide-font-size-base: 1rem;
|
|
112
|
+
--ide-font-size-lg: 1.125rem;
|
|
113
|
+
--ide-font-size-xl: 1.25rem;
|
|
114
|
+
--ide-font-size-2xl: 1.5rem;
|
|
115
|
+
--ide-font-size-3xl: 2rem;
|
|
116
|
+
--ide-font-size-4xl: 2.75rem;
|
|
117
|
+
--ide-line-height-tight: 1.25;
|
|
118
|
+
--ide-line-height-normal: 1.5;
|
|
119
|
+
--ide-line-height-relaxed: 1.75;
|
|
120
|
+
|
|
121
|
+
/* IDE Spacing */
|
|
122
|
+
--ide-spacing-xs: 0.25rem;
|
|
123
|
+
--ide-spacing-sm: 0.5rem;
|
|
124
|
+
--ide-spacing-md: 1rem;
|
|
125
|
+
--ide-spacing-lg: 1.5rem;
|
|
126
|
+
--ide-spacing-xl: 2rem;
|
|
127
|
+
--ide-spacing-2xl: 3rem;
|
|
128
|
+
|
|
129
|
+
/* IDE Radii */
|
|
130
|
+
--ide-radius-sm: 0.25rem;
|
|
131
|
+
--ide-radius-md: 0.375rem;
|
|
132
|
+
--ide-radius-lg: 0.5rem;
|
|
133
|
+
--ide-radius-xl: 0.75rem;
|
|
134
|
+
--ide-radius-full: 9999px;
|
|
135
|
+
|
|
136
|
+
/* IDE Transitions */
|
|
137
|
+
--ide-transition-fast: 100ms ease;
|
|
138
|
+
--ide-transition-normal: 200ms ease;
|
|
139
|
+
--ide-transition-slow: 300ms ease;
|
|
140
|
+
--ide-transition-bounce: 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
|
|
141
|
+
|
|
142
|
+
/* IDE Z-Index Scale */
|
|
143
|
+
--ide-z-base: 0;
|
|
144
|
+
--ide-z-dropdown: 100;
|
|
145
|
+
--ide-z-sticky: 200;
|
|
146
|
+
--ide-z-overlay: 300;
|
|
147
|
+
--ide-z-modal: 400;
|
|
148
|
+
--ide-z-popover: 500;
|
|
149
|
+
--ide-z-tooltip: 600;
|
|
150
|
+
--ide-z-notification: 700;
|
|
151
|
+
|
|
152
|
+
/* IDE Layout Sizes */
|
|
153
|
+
--ide-activity-bar-width: 48px;
|
|
154
|
+
--ide-sidebar-width: 260px;
|
|
155
|
+
--ide-sidebar-min-width: 180px;
|
|
156
|
+
--ide-sidebar-max-width: 500px;
|
|
157
|
+
--ide-panel-height: 200px;
|
|
158
|
+
--ide-panel-min-height: 100px;
|
|
159
|
+
--ide-panel-max-height: 500px;
|
|
160
|
+
--ide-status-bar-height: 24px;
|
|
161
|
+
--ide-tab-height: 36px;
|
|
162
|
+
--ide-header-height: 40px;
|
|
163
|
+
|
|
164
|
+
/* Agent Status Colors */
|
|
165
|
+
--ide-agent-online: var(--color-nocturnium-aurora-green);
|
|
166
|
+
--ide-agent-busy: var(--color-nocturnium-aurora-yellow);
|
|
167
|
+
--ide-agent-offline: var(--ide-text-muted);
|
|
168
|
+
--ide-agent-error: var(--ide-error);
|
|
169
|
+
--ide-agent-stalled: var(--color-nocturnium-aurora-pink);
|
|
170
|
+
|
|
171
|
+
/* Agent Type Colors */
|
|
172
|
+
--ide-agent-human: var(--color-nocturnium-aurora-blue);
|
|
173
|
+
--ide-agent-ai-primary: var(--color-nocturnium-ember);
|
|
174
|
+
--ide-agent-ai-secondary: var(--color-nocturnium-aurora-purple);
|
|
175
|
+
--ide-agent-system: var(--color-nocturnium-ocean);
|
|
176
|
+
|
|
177
|
+
/* Lock Status Colors */
|
|
178
|
+
--ide-lock-owned: var(--color-nocturnium-aurora-green);
|
|
179
|
+
--ide-lock-other: var(--color-nocturnium-aurora-yellow);
|
|
180
|
+
--ide-lock-pending: var(--color-nocturnium-aurora-blue);
|
|
181
|
+
--ide-lock-expired: var(--ide-text-muted);
|
|
182
|
+
--ide-lock-conflict: var(--ide-error);
|
|
183
|
+
|
|
184
|
+
/* Transaction Status Colors */
|
|
185
|
+
--ide-transaction-staged: var(--color-nocturnium-aurora-blue);
|
|
186
|
+
--ide-transaction-pending: var(--color-nocturnium-aurora-yellow);
|
|
187
|
+
--ide-transaction-committed: var(--color-nocturnium-aurora-green);
|
|
188
|
+
--ide-transaction-failed: var(--ide-error);
|
|
189
|
+
|
|
190
|
+
/* Progress Indicators */
|
|
191
|
+
--ide-progress-track: var(--ide-bg-tertiary);
|
|
192
|
+
--ide-progress-fill: var(--color-nocturnium-wave);
|
|
193
|
+
--ide-progress-stalled: var(--color-nocturnium-aurora-pink);
|
|
194
|
+
|
|
195
|
+
/* Agent Glow Effects */
|
|
196
|
+
--ide-agent-glow: 0 0 12px color-mix(in srgb, var(--ide-agent-ai-primary) 40%, transparent);
|
|
197
|
+
--ide-lock-glow: 0 0 8px color-mix(in srgb, var(--ide-lock-other) 30%, transparent);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/* Utility Classes */
|
|
201
|
+
.ide-font-mono {
|
|
202
|
+
font-family: var(--ide-font-mono);
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.ide-truncate {
|
|
206
|
+
overflow: hidden;
|
|
207
|
+
text-overflow: ellipsis;
|
|
208
|
+
white-space: nowrap;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.ide-visually-hidden {
|
|
212
|
+
position: absolute;
|
|
213
|
+
width: 1px;
|
|
214
|
+
height: 1px;
|
|
215
|
+
padding: 0;
|
|
216
|
+
margin: -1px;
|
|
217
|
+
overflow: hidden;
|
|
218
|
+
clip: rect(0, 0, 0, 0);
|
|
219
|
+
white-space: nowrap;
|
|
220
|
+
border: 0;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* Animation Keyframes */
|
|
224
|
+
@keyframes ide-spin {
|
|
225
|
+
from {
|
|
226
|
+
transform: rotate(0deg);
|
|
227
|
+
}
|
|
228
|
+
to {
|
|
229
|
+
transform: rotate(360deg);
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
@keyframes ide-pulse {
|
|
234
|
+
0%,
|
|
235
|
+
100% {
|
|
236
|
+
opacity: 1;
|
|
237
|
+
}
|
|
238
|
+
50% {
|
|
239
|
+
opacity: 0.5;
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
@keyframes ide-bounce {
|
|
244
|
+
0%,
|
|
245
|
+
100% {
|
|
246
|
+
transform: translateY(-5%);
|
|
247
|
+
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
248
|
+
}
|
|
249
|
+
50% {
|
|
250
|
+
transform: translateY(0);
|
|
251
|
+
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
@keyframes ide-fade-in {
|
|
256
|
+
from {
|
|
257
|
+
opacity: 0;
|
|
258
|
+
}
|
|
259
|
+
to {
|
|
260
|
+
opacity: 1;
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
@keyframes ide-slide-up {
|
|
265
|
+
from {
|
|
266
|
+
opacity: 0;
|
|
267
|
+
transform: translateY(10px);
|
|
268
|
+
}
|
|
269
|
+
to {
|
|
270
|
+
opacity: 1;
|
|
271
|
+
transform: translateY(0);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
@keyframes ide-slide-down {
|
|
276
|
+
from {
|
|
277
|
+
opacity: 0;
|
|
278
|
+
transform: translateY(-10px);
|
|
279
|
+
}
|
|
280
|
+
to {
|
|
281
|
+
opacity: 1;
|
|
282
|
+
transform: translateY(0);
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
@keyframes ide-thinking-dots {
|
|
287
|
+
0%,
|
|
288
|
+
20% {
|
|
289
|
+
opacity: 0.2;
|
|
290
|
+
}
|
|
291
|
+
40% {
|
|
292
|
+
opacity: 1;
|
|
293
|
+
}
|
|
294
|
+
100% {
|
|
295
|
+
opacity: 0.2;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/* CRDT Collaboration Cursor Styles */
|
|
300
|
+
.ide-collab-cursor {
|
|
301
|
+
position: absolute;
|
|
302
|
+
width: 2px;
|
|
303
|
+
pointer-events: none;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
.ide-collab-cursor::before {
|
|
307
|
+
content: attr(data-user);
|
|
308
|
+
position: absolute;
|
|
309
|
+
top: -1.4em;
|
|
310
|
+
left: 0;
|
|
311
|
+
padding: 2px 6px;
|
|
312
|
+
font-size: var(--ide-font-size-xs);
|
|
313
|
+
font-family: var(--ide-font-sans);
|
|
314
|
+
border-radius: var(--ide-radius-sm);
|
|
315
|
+
white-space: nowrap;
|
|
316
|
+
color: white;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.ide-collab-cursor[data-index='0'] {
|
|
320
|
+
background-color: var(--ide-collab-cursor-1);
|
|
321
|
+
}
|
|
322
|
+
.ide-collab-cursor[data-index='0']::before {
|
|
323
|
+
background-color: var(--ide-collab-cursor-1);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.ide-collab-cursor[data-index='1'] {
|
|
327
|
+
background-color: var(--ide-collab-cursor-2);
|
|
328
|
+
}
|
|
329
|
+
.ide-collab-cursor[data-index='1']::before {
|
|
330
|
+
background-color: var(--ide-collab-cursor-2);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.ide-collab-cursor[data-index='2'] {
|
|
334
|
+
background-color: var(--ide-collab-cursor-3);
|
|
335
|
+
}
|
|
336
|
+
.ide-collab-cursor[data-index='2']::before {
|
|
337
|
+
background-color: var(--ide-collab-cursor-3);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.ide-collab-cursor[data-ai='true'] {
|
|
341
|
+
background-color: var(--ide-collab-ai);
|
|
342
|
+
}
|
|
343
|
+
.ide-collab-cursor[data-ai='true']::before {
|
|
344
|
+
background-color: var(--ide-collab-ai);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/* Plugin Status Badge Styles */
|
|
348
|
+
.ide-plugin-status {
|
|
349
|
+
display: inline-flex;
|
|
350
|
+
align-items: center;
|
|
351
|
+
gap: var(--ide-spacing-xs);
|
|
352
|
+
padding: 2px 8px;
|
|
353
|
+
font-size: var(--ide-font-size-xs);
|
|
354
|
+
font-weight: 500;
|
|
355
|
+
border-radius: var(--ide-radius-full);
|
|
356
|
+
text-transform: uppercase;
|
|
357
|
+
letter-spacing: 0.05em;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.ide-plugin-status--draft {
|
|
361
|
+
background-color: color-mix(in srgb, var(--ide-plugin-draft) 20%, transparent);
|
|
362
|
+
color: var(--ide-plugin-draft);
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.ide-plugin-status--reviewing {
|
|
366
|
+
background-color: color-mix(in srgb, var(--ide-plugin-reviewing) 20%, transparent);
|
|
367
|
+
color: var(--ide-plugin-reviewing);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.ide-plugin-status--approved {
|
|
371
|
+
background-color: color-mix(in srgb, var(--ide-plugin-approved) 20%, transparent);
|
|
372
|
+
color: var(--ide-plugin-approved);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.ide-plugin-status--rejected {
|
|
376
|
+
background-color: color-mix(in srgb, var(--ide-plugin-rejected) 20%, transparent);
|
|
377
|
+
color: var(--ide-plugin-rejected);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.ide-plugin-status--deploying {
|
|
381
|
+
background-color: color-mix(in srgb, var(--ide-plugin-deploying) 20%, transparent);
|
|
382
|
+
color: var(--ide-plugin-deploying);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
.ide-plugin-status--deployed {
|
|
386
|
+
background-color: color-mix(in srgb, var(--ide-plugin-deployed) 20%, transparent);
|
|
387
|
+
color: var(--ide-plugin-deployed);
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
/* Agent Status Animations */
|
|
391
|
+
@keyframes ide-agent-pulse {
|
|
392
|
+
0%,
|
|
393
|
+
100% {
|
|
394
|
+
box-shadow: 0 0 0 0 var(--pulse-color);
|
|
395
|
+
}
|
|
396
|
+
50% {
|
|
397
|
+
box-shadow: 0 0 0 4px transparent;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
@keyframes ide-agent-ring-spin {
|
|
402
|
+
from {
|
|
403
|
+
transform: rotate(0deg);
|
|
404
|
+
}
|
|
405
|
+
to {
|
|
406
|
+
transform: rotate(360deg);
|
|
407
|
+
}
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
@keyframes ide-lock-warning {
|
|
411
|
+
0%,
|
|
412
|
+
100% {
|
|
413
|
+
border-color: var(--ide-lock-other);
|
|
414
|
+
}
|
|
415
|
+
50% {
|
|
416
|
+
border-color: var(--ide-warning);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
@keyframes ide-progress-fill {
|
|
421
|
+
0% {
|
|
422
|
+
stroke-dashoffset: 100;
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
@keyframes ide-conflict-flash {
|
|
427
|
+
0%,
|
|
428
|
+
100% {
|
|
429
|
+
background: transparent;
|
|
430
|
+
}
|
|
431
|
+
50% {
|
|
432
|
+
background: color-mix(in srgb, var(--ide-error) 20%, transparent);
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
@keyframes ide-cursor-appear {
|
|
437
|
+
from {
|
|
438
|
+
opacity: 0;
|
|
439
|
+
transform: scale(0.8);
|
|
440
|
+
}
|
|
441
|
+
to {
|
|
442
|
+
opacity: 1;
|
|
443
|
+
transform: scale(1);
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
@keyframes ide-typing-pulse {
|
|
448
|
+
0%,
|
|
449
|
+
100% {
|
|
450
|
+
transform: scale(0.8);
|
|
451
|
+
opacity: 0.5;
|
|
452
|
+
}
|
|
453
|
+
50% {
|
|
454
|
+
transform: scale(1.2);
|
|
455
|
+
opacity: 1;
|
|
456
|
+
}
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
/* Agent Presence Utilities */
|
|
460
|
+
.ide-agent-status-ring {
|
|
461
|
+
position: absolute;
|
|
462
|
+
inset: -2px;
|
|
463
|
+
border: 2px solid transparent;
|
|
464
|
+
border-radius: 50%;
|
|
465
|
+
animation: ide-agent-pulse 2s infinite;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.ide-agent-status-ring--online {
|
|
469
|
+
border-color: var(--ide-agent-online);
|
|
470
|
+
--pulse-color: var(--ide-agent-online);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.ide-agent-status-ring--busy {
|
|
474
|
+
border-color: var(--ide-agent-busy);
|
|
475
|
+
animation: ide-agent-ring-spin 3s linear infinite;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
.ide-agent-status-ring--stalled {
|
|
479
|
+
border-color: var(--ide-agent-stalled);
|
|
480
|
+
animation: ide-lock-warning 0.5s infinite;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
/* Lock Status Utilities */
|
|
484
|
+
.ide-lock-badge {
|
|
485
|
+
position: absolute;
|
|
486
|
+
bottom: -2px;
|
|
487
|
+
right: -2px;
|
|
488
|
+
width: 14px;
|
|
489
|
+
height: 14px;
|
|
490
|
+
border-radius: 50%;
|
|
491
|
+
display: flex;
|
|
492
|
+
align-items: center;
|
|
493
|
+
justify-content: center;
|
|
494
|
+
font-size: 8px;
|
|
495
|
+
background: var(--ide-bg-secondary);
|
|
496
|
+
border: 1px solid var(--ide-border);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.ide-lock-badge--owned {
|
|
500
|
+
color: var(--ide-lock-owned);
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.ide-lock-badge--other {
|
|
504
|
+
color: var(--ide-lock-other);
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.ide-lock-badge--pending {
|
|
508
|
+
color: var(--ide-lock-pending);
|
|
509
|
+
animation: ide-pulse 1s infinite;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.ide-lock-badge--conflict {
|
|
513
|
+
color: var(--ide-lock-conflict);
|
|
514
|
+
animation: ide-conflict-flash 0.5s infinite;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.ide-lock-overlay {
|
|
518
|
+
position: absolute;
|
|
519
|
+
inset: 0;
|
|
520
|
+
background: color-mix(in srgb, var(--ide-bg-primary) 80%, transparent);
|
|
521
|
+
display: flex;
|
|
522
|
+
align-items: center;
|
|
523
|
+
justify-content: center;
|
|
524
|
+
z-index: 50;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
/* Transaction Status Utilities */
|
|
528
|
+
.ide-transaction-indicator {
|
|
529
|
+
position: absolute;
|
|
530
|
+
left: 0;
|
|
531
|
+
top: 0;
|
|
532
|
+
bottom: 0;
|
|
533
|
+
width: 3px;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.ide-transaction-indicator--staged {
|
|
537
|
+
background: var(--ide-transaction-staged);
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.ide-transaction-indicator--pending {
|
|
541
|
+
background: var(--ide-transaction-pending);
|
|
542
|
+
animation: ide-pulse 1s infinite;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.ide-transaction-indicator--committed {
|
|
546
|
+
background: var(--ide-transaction-committed);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
/* Agent Cursor Styles */
|
|
550
|
+
.ide-agent-cursor {
|
|
551
|
+
position: absolute;
|
|
552
|
+
width: 2px;
|
|
553
|
+
pointer-events: none;
|
|
554
|
+
z-index: 50;
|
|
555
|
+
animation: ide-cursor-appear 0.2s ease-out;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.ide-agent-cursor--ai {
|
|
559
|
+
background: linear-gradient(180deg, var(--ide-agent-ai-primary) 0%, var(--color-nocturnium-flame) 100%);
|
|
560
|
+
box-shadow: var(--ide-agent-glow);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
.ide-agent-cursor::before {
|
|
564
|
+
content: '';
|
|
565
|
+
position: absolute;
|
|
566
|
+
top: -8px;
|
|
567
|
+
left: -1px;
|
|
568
|
+
width: 4px;
|
|
569
|
+
height: 8px;
|
|
570
|
+
background: inherit;
|
|
571
|
+
clip-path: polygon(0 0, 100% 50%, 0 100%);
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.ide-agent-cursor__label {
|
|
575
|
+
position: absolute;
|
|
576
|
+
top: -20px;
|
|
577
|
+
left: 0;
|
|
578
|
+
padding: 2px 6px 2px 20px;
|
|
579
|
+
font-size: var(--ide-font-size-xs);
|
|
580
|
+
border-radius: var(--ide-radius-sm);
|
|
581
|
+
white-space: nowrap;
|
|
582
|
+
display: flex;
|
|
583
|
+
align-items: center;
|
|
584
|
+
gap: 4px;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.ide-agent-cursor__label--ai {
|
|
588
|
+
background: linear-gradient(
|
|
589
|
+
90deg,
|
|
590
|
+
var(--ide-agent-ai-primary) 0%,
|
|
591
|
+
color-mix(in srgb, var(--ide-agent-ai-primary) 80%, var(--ide-bg-primary)) 100%
|
|
592
|
+
);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
.ide-agent-cursor--typing::after {
|
|
596
|
+
content: '';
|
|
597
|
+
position: absolute;
|
|
598
|
+
bottom: 0;
|
|
599
|
+
left: 4px;
|
|
600
|
+
width: 6px;
|
|
601
|
+
height: 6px;
|
|
602
|
+
background: currentColor;
|
|
603
|
+
border-radius: 50%;
|
|
604
|
+
animation: ide-typing-pulse 0.6s infinite;
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
.ide-agent-selection {
|
|
608
|
+
position: absolute;
|
|
609
|
+
pointer-events: none;
|
|
610
|
+
opacity: 0.2;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
.ide-agent-selection--ai {
|
|
614
|
+
background: var(--ide-agent-ai-primary);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
/* Force default cursor on editor gutter/line numbers */
|
|
618
|
+
[class*="gutter"],
|
|
619
|
+
[class*="line-number"],
|
|
620
|
+
[data-cursor-type="default"],
|
|
621
|
+
[data-cursor-type="default"] * {
|
|
622
|
+
cursor: default !important;
|
|
623
|
+
}
|