agkan 3.5.0 → 3.6.0
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/dist/board/BulkRunService.d.ts +33 -0
- package/dist/board/BulkRunService.d.ts.map +1 -0
- package/dist/board/BulkRunService.js +134 -0
- package/dist/board/BulkRunService.js.map +1 -0
- package/dist/board/boardRenderer.d.ts.map +1 -1
- package/dist/board/boardRenderer.js +13 -22
- package/dist/board/boardRenderer.js.map +1 -1
- package/dist/board/boardRoutes.d.ts +15 -2
- package/dist/board/boardRoutes.d.ts.map +1 -1
- package/dist/board/boardRoutes.js +220 -63
- package/dist/board/boardRoutes.js.map +1 -1
- package/dist/board/boardStyles.d.ts +1 -1
- package/dist/board/boardStyles.d.ts.map +1 -1
- package/dist/board/boardStyles.js +25 -0
- package/dist/board/boardStyles.js.map +1 -1
- package/dist/board/client/main.css +252 -0
- package/dist/board/client/main.js +12063 -0
- package/dist/board/server.d.ts +2 -2
- package/dist/board/server.d.ts.map +1 -1
- package/dist/board/server.js +44 -8
- package/dist/board/server.js.map +1 -1
- package/dist/cli/commands/init.d.ts.map +1 -1
- package/dist/cli/commands/init.js +7 -2
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/hooks/claudeHookSettings.d.ts +2 -0
- package/dist/hooks/claudeHookSettings.d.ts.map +1 -0
- package/dist/hooks/claudeHookSettings.js +54 -0
- package/dist/hooks/claudeHookSettings.js.map +1 -0
- package/dist/hooks/hook-attention.mjs +54 -0
- package/dist/hooks/hook-stop.mjs +111 -0
- package/dist/services/AttentionStateService.d.ts +16 -0
- package/dist/services/AttentionStateService.d.ts.map +1 -0
- package/dist/services/AttentionStateService.js +42 -0
- package/dist/services/AttentionStateService.js.map +1 -0
- package/dist/services/ClaudeProcessService.d.ts +7 -0
- package/dist/services/ClaudeProcessService.d.ts.map +1 -1
- package/dist/services/ClaudeProcessService.js +19 -6
- package/dist/services/ClaudeProcessService.js.map +1 -1
- package/dist/terminal/PtySessionService.d.ts +50 -0
- package/dist/terminal/PtySessionService.d.ts.map +1 -0
- package/dist/terminal/PtySessionService.js +310 -0
- package/dist/terminal/PtySessionService.js.map +1 -0
- package/dist/terminal/wsTerminalServer.d.ts +7 -0
- package/dist/terminal/wsTerminalServer.d.ts.map +1 -0
- package/dist/terminal/wsTerminalServer.js +81 -0
- package/dist/terminal/wsTerminalServer.js.map +1 -0
- package/dist/utils/hookToken.d.ts +3 -0
- package/dist/utils/hookToken.d.ts.map +1 -0
- package/dist/utils/hookToken.js +24 -0
- package/dist/utils/hookToken.js.map +1 -0
- package/package.json +11 -5
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const BOARD_STYLES = "\n :root {\n --bg-page: #f1f5f9;\n --bg-surface: #ffffff;\n --bg-surface-subtle: #f8fafc;\n --bg-surface-hover: #f1f5f9;\n --border-color: #e2e8f0;\n --border-color-subtle: #f1f5f9;\n --text-primary: #1e293b;\n --text-secondary: #64748b;\n --text-muted: #94a3b8;\n --header-bg: #1e293b;\n --tag-bg: #e0f2fe;\n --tag-color: #0369a1;\n --column-count-bg: #e2e8f0;\n --column-count-color: #64748b;\n --input-bg: #ffffff;\n --burger-dropdown-bg: #ffffff;\n --drag-over-bg: #eff6ff;\n }\n [data-theme=\"dark\"] {\n --bg-page: #0f172a;\n --bg-surface: #1e293b;\n --bg-surface-subtle: #1e293b;\n --bg-surface-hover: #334155;\n --border-color: #334155;\n --border-color-subtle: #1e293b;\n --text-primary: #f1f5f9;\n --text-secondary: #94a3b8;\n --text-muted: #64748b;\n --header-bg: #0f172a;\n --tag-bg: #0c4a6e;\n --tag-color: #7dd3fc;\n --column-count-bg: #334155;\n --column-count-color: #94a3b8;\n --input-bg: #1e293b;\n --burger-dropdown-bg: #1e293b;\n --drag-over-bg: #1e3a5f;\n }\n * { box-sizing: border-box; margin: 0; padding: 0; }\n body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg-page); color: var(--text-primary); }\n header { background: var(--header-bg); color: white; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }\n header h1 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }\n .board-title { font-size: 14px; font-weight: 400; opacity: 0.75; }\n .board-container { display: flex; width: 100%; height: calc(100vh - 92px); gap: 0; }\n .board { display: flex; gap: 12px; padding: 16px; overflow-x: auto; flex: 1; align-items: stretch; min-width: 0; }\n .board.with-panel { padding-right: 0; }\n .column { background: var(--bg-surface-subtle); border: 1px solid var(--border-color); border-radius: 8px; width: 240px; flex-shrink: 0; display: flex; flex-direction: column; border-top: 3px solid transparent; }\n .column-header { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }\n .column-title { font-size: 13px; font-weight: 700; }\n .column-header-right { display: flex; align-items: center; gap: 6px; }\n .column-count { background: var(--column-count-bg); color: var(--column-count-color); border-radius: 10px; font-size: 11px; font-weight: 600; padding: 2px 7px; }\n .add-btn { background: none; border: 1px solid var(--border-color); color: var(--text-secondary); border-radius: 4px; width: 22px; height: 22px; font-size: 14px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }\n .add-btn:hover { background: var(--border-color); color: var(--text-primary); }\n .column-body { padding: 8px; min-height: 60px; flex: 1; overflow-y: auto; overflow-x: hidden; min-height: 0; }\n .column.drag-over .column-body { background: var(--drag-over-bg); border-radius: 6px; }\n .card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; padding: 10px; margin-bottom: 6px; cursor: grab; transition: box-shadow 0.15s; }\n .card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }\n .card.active { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.25); background: #eff6ff; }\n [data-theme=\"dark\"] .card.active { border-color: #60a5fa; box-shadow: 0 0 0 2px rgba(96,165,250,0.25); background: #1e3a5f; }\n .card.dragging { opacity: 0.5; }\n .card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; gap: 4px; }\n .card-id { font-size: 11px; color: var(--text-muted); font-weight: 600; }\n .card-actions { margin-left: auto; flex-shrink: 0; }\n .claude-run-split { position: relative; display: inline-flex; }\n .claude-run-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px 0 0 10px; border: 1px solid #16a34a; border-right: none; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-run-btn:hover { background: #bbf7d0; }\n .claude-run-btn:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-run-toggle { font-size: 9px; font-weight: 600; padding: 2px 5px; border-radius: 0 10px 10px 0; border: 1px solid #16a34a; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-run-toggle:hover { background: #bbf7d0; }\n .claude-run-toggle:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-run-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 2px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 100; min-width: 160px; padding: 2px 0; }\n .claude-run-split.open .claude-run-menu { display: block; }\n .claude-run-menu-item { display: block; width: 100%; text-align: left; font-size: 11px; font-weight: 500; padding: 6px 12px; border: none; background: none; color: var(--text-primary); cursor: pointer; white-space: nowrap; }\n .claude-run-menu-item:hover { background: var(--bg-surface-hover); }\n .claude-run-menu-item:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-plan-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #2563eb; background: #dbeafe; color: #2563eb; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-plan-btn:hover { background: #bfdbfe; }\n .claude-detail-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #d97706; background: #fef3c7; color: #d97706; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-detail-btn:hover { background: #fde68a; }\n .card-title { font-size: 13px; font-weight: 500; line-height: 1.4; word-break: break-word; }\n .card-tags { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 4px; }\n .tag { background: var(--tag-bg); color: var(--tag-color); font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 10px; }\n .priority { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; text-transform: uppercase; }\n .priority-critical { background: #fee2e2; color: #dc2626; }\n .priority-high { background: #fee2e2; color: #dc2626; }\n .priority-medium { background: #fef9c3; color: #ca8a04; }\n .priority-low { background: #dcfce7; color: #16a34a; }\n .context-menu { position: fixed; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 4px 0; z-index: 1000; display: none; min-width: 140px; }\n .context-menu-item { padding: 8px 14px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }\n .context-menu-item:hover { background: var(--bg-surface-hover); }\n .context-menu-item.danger { color: #dc2626; }\n .context-menu-item.danger:hover { background: #fef2f2; }\n .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000; display: none; align-items: center; justify-content: center; }\n .modal-overlay.show { display: flex; }\n .modal { background: var(--bg-surface); border-radius: 8px; padding: 24px; width: 520px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--text-primary); }\n .modal h2 { font-size: 16px; margin-bottom: 14px; }\n .modal label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }\n .modal input, .modal textarea, .modal select { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 8px 10px; font-size: 13px; font-family: inherit; margin-bottom: 12px; background: var(--input-bg); color: var(--text-primary); }\n .modal textarea { resize: vertical; min-height: 60px; }\n .modal input:focus, .modal textarea:focus, .modal select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .modal-actions { display: flex; justify-content: flex-end; gap: 8px; }\n .modal-actions button { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }\n .modal-actions button:hover { background: var(--bg-surface-hover); }\n .modal-actions button.primary { background: #3b82f6; color: white; border-color: #3b82f6; }\n .modal-actions button.primary:hover { background: #2563eb; }\n .toast { position: fixed; bottom: 20px; right: 20px; z-index: 100; background: #ef4444; color: white; padding: 10px 16px; border-radius: 6px; font-size: 13px; opacity: 0; transition: opacity 0.3s; pointer-events: none; }\n .toast.show { opacity: 1; }\n .detail-panel { position: relative; z-index: 6; width: 0; height: calc(100vh - 92px); background: var(--bg-surface); box-shadow: none; border-left: 0 solid var(--border-color); display: flex; flex-direction: column; max-width: 800px; overflow: hidden; transition: width 0.25s ease; }\n .detail-panel-resize-handle { position: absolute; top: 0; left: 0; width: 6px; height: 100%; cursor: col-resize; z-index: 10; background: transparent; }\n .detail-panel-resize-handle:hover, .detail-panel-resize-handle.dragging { background: rgba(59,130,246,0.3); }\n .detail-panel.open { width: 400px; min-width: 280px; border-left-width: 1px; }\n .detail-panel-header { display: flex; align-items: center; gap: 4px; padding: 16px 20px; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }\n .detail-panel-header h2 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }\n .detail-panel-close { background: none; border: none; font-size: 20px; color: var(--text-secondary); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; margin-left: auto; }\n .detail-panel-close:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .detail-panel-copy-id { background: none; border: none; font-size: 20px; color: var(--text-secondary); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }\n .detail-panel-copy-id:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .detail-panel-body { flex: 1; overflow: hidden; min-width: 0; display: flex; flex-direction: column; }\n .detail-field { margin-bottom: 16px; word-wrap: break-word; }\n .description-field-wrapper { display: flex; flex-direction: column; margin-bottom: 16px; }\n .detail-field-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.05em; }\n .detail-field-value { font-size: 13px; color: var(--text-primary); line-height: 1.5; }\n .detail-field-value.empty { color: var(--text-muted); font-style: italic; }\n .detail-status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; color: white; }\n .detail-tags { display: flex; flex-wrap: wrap; gap: 4px; }\n .detail-meta-table { width: 100%; border-collapse: collapse; }\n .detail-meta-table td { padding: 4px 0; font-size: 12px; }\n .detail-meta-table td:first-child { color: var(--text-secondary); width: 100px; }\n .detail-meta-table td:last-child { color: var(--text-primary); }\n .detail-meta-table a { color: #2563eb; text-decoration: underline; }\n [data-theme=\"dark\"] .detail-meta-table a { color: #60a5fa; }\n .detail-panel-footer { padding: 12px 20px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }\n .detail-panel-footer button { padding: 7px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid #3b82f6; background: #3b82f6; color: white; }\n .detail-panel-footer button:hover { background: #2563eb; border-color: #2563eb; }\n .detail-edit-input { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .detail-edit-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .detail-edit-textarea { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; resize: none; min-height: 80px; background: var(--input-bg); color: var(--text-primary); overflow: hidden; }\n .detail-edit-textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .detail-edit-select { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .detail-edit-select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .tag-select-wrapper { position: relative; }\n .tag-select-control { border: 1px solid var(--border-color); border-radius: 6px; padding: 4px 8px; min-height: 36px; cursor: text; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; background: var(--input-bg); }\n .tag-select-control:focus-within { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .tag-pill { background: var(--tag-bg); color: var(--tag-color); font-size: 11px; font-weight: 600; padding: 2px 4px 2px 8px; border-radius: 10px; display: inline-flex; align-items: center; gap: 3px; }\n .tag-pill-remove { background: none; border: none; color: var(--tag-color); cursor: pointer; font-size: 13px; line-height: 1; padding: 0 2px; display: inline-flex; align-items: center; border-radius: 50%; }\n .tag-pill-remove:hover { color: #dc2626; background: rgba(220,38,38,0.1); }\n .tag-select-input { border: none; outline: none; font-size: 12px; font-family: inherit; min-width: 80px; flex: 1; background: transparent; padding: 2px 0; color: var(--text-primary); }\n .tag-select-input::placeholder { color: var(--text-muted); }\n .tag-select-dropdown { position: absolute; top: calc(100% + 2px); left: 0; right: 0; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 100; max-height: 180px; overflow-y: auto; display: none; }\n .tag-select-dropdown.open { display: block; }\n .tag-select-option { padding: 6px 10px; font-size: 12px; cursor: pointer; color: var(--text-primary); }\n .tag-select-option:hover, .tag-select-option.focused { background: #eff6ff; color: #0369a1; }\n .tag-select-no-options { padding: 6px 10px; font-size: 12px; color: var(--text-muted); font-style: italic; }\n .filter-bar { display: flex; align-items: center; gap: 16px; height: 44px; background: var(--bg-surface-subtle); border-bottom: 1px solid var(--border-color); padding: 0 16px; flex-shrink: 0; overflow-x: auto; }\n .filter-group { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }\n .filter-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; white-space: nowrap; }\n .filter-priority-btn { border: 1px solid var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 600; cursor: pointer; text-transform: uppercase; color: var(--text-secondary); }\n .filter-priority-btn:hover { background: var(--bg-surface-hover); }\n .filter-priority-btn.active[data-priority=\"critical\"] { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }\n .filter-priority-btn.active[data-priority=\"high\"] { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }\n .filter-priority-btn.active[data-priority=\"medium\"] { background: #fef9c3; color: #ca8a04; border-color: #fde047; }\n .filter-priority-btn.active[data-priority=\"low\"] { background: #dcfce7; color: #16a34a; border-color: #86efac; }\n .filter-search-input { border: 1px solid var(--border-color); border-radius: 4px; padding: 3px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); width: 160px; }\n .filter-search-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .filter-assignee-input { border: 1px solid var(--border-color); border-radius: 4px; padding: 3px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); width: 120px; }\n .filter-assignee-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .filter-tag-pill { background: var(--tag-bg); color: var(--tag-color); font-size: 11px; font-weight: 600; padding: 2px 4px 2px 8px; border-radius: 10px; display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0; }\n .filter-tag-pill-remove { background: none; border: none; color: var(--tag-color); cursor: pointer; font-size: 13px; line-height: 1; padding: 0 2px; display: inline-flex; align-items: center; border-radius: 50%; }\n .filter-tag-pill-remove:hover { color: #dc2626; background: rgba(220,38,38,0.1); }\n .filter-tag-dropdown-wrapper { flex-shrink: 0; }\n .filter-tag-add-btn { border: 1px dashed var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 8px; font-size: 11px; color: var(--text-secondary); cursor: pointer; white-space: nowrap; }\n .filter-tag-add-btn:hover { background: var(--bg-surface-hover); border-color: var(--text-muted); }\n .filter-tag-dropdown { position: fixed; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 200; max-height: 180px; overflow-y: auto; display: none; min-width: 140px; }\n .filter-tag-dropdown.open { display: block; }\n .filter-tag-dropdown-option { padding: 6px 10px; font-size: 12px; cursor: pointer; color: var(--text-primary); white-space: nowrap; }\n .filter-tag-dropdown-option:hover { background: #eff6ff; color: #0369a1; }\n .filter-tag-dropdown-empty { padding: 6px 10px; font-size: 12px; color: var(--text-muted); font-style: italic; }\n .filter-clear-btn { border: 1px solid var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 10px; font-size: 11px; font-weight: 600; cursor: pointer; color: var(--text-secondary); display: none; flex-shrink: 0; margin-left: auto; }\n .filter-clear-btn:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }\n .filter-clear-btn.visible { display: block; }\n .detail-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-color); flex-shrink: 0; padding: 0 20px; background: var(--bg-surface); }\n .detail-tab { padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; background: none; border-top: none; border-left: none; border-right: none; }\n .detail-tab:hover { color: var(--text-secondary); }\n .detail-tab.active { color: #3b82f6; border-bottom-color: #3b82f6; }\n .detail-tab-content { display: none; flex: 1; overflow-y: auto; min-height: 0; }\n .detail-tab-content.active { display: block; overflow-y: auto; }\n .detail-relations { font-size: 12px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border-color-subtle); margin-bottom: 12px; }\n .detail-relation-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }\n .detail-relation-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); width: 80px; flex-shrink: 0; letter-spacing: 0.05em; }\n .detail-relation-ids { display: flex; flex-wrap: wrap; gap: 4px; }\n .detail-relation-id { font-size: 11px; color: #3b82f6; background: #eff6ff; border-radius: 10px; padding: 1px 7px; font-weight: 600; }\n .detail-timestamp { font-size: 11px; color: var(--text-muted); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border-color-subtle); }\n .detail-footer-timestamp { font-size: 11px; color: var(--text-muted); }\n .comment-item { position: relative; padding: 6px 0 6px 10px; border-left: 2px solid var(--border-color); margin-bottom: 10px; }\n .comment-item:hover { border-left-color: #3b82f6; }\n .comment-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }\n .comment-author { font-size: 11px; font-weight: 600; color: var(--text-secondary); }\n .comment-date { font-size: 11px; color: var(--text-muted); }\n .comment-actions { display: none; margin-left: auto; gap: 4px; }\n .comment-item:hover .comment-actions { display: flex; }\n .comment-action-btn { background: none; border: none; padding: 1px 4px; cursor: pointer; color: var(--text-muted); font-size: 12px; border-radius: 3px; }\n .comment-action-btn:hover { color: var(--text-primary); background: var(--bg-surface-hover); }\n .comment-action-btn.danger:hover { color: #dc2626; background: #fef2f2; }\n .comment-content { font-size: 13px; color: var(--text-primary); line-height: 1.5; white-space: pre-wrap; }\n .comment-edit-area { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; resize: vertical; min-height: 60px; background: var(--input-bg); color: var(--text-primary); margin-top: 4px; }\n .comment-edit-area:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .comment-edit-actions { display: flex; gap: 6px; margin-top: 4px; }\n .comment-btn { background: none; border: 1px solid var(--border-color); border-radius: 4px; font-size: 11px; font-weight: 600; padding: 2px 8px; cursor: pointer; color: var(--text-secondary); }\n .comment-btn:hover { background: var(--bg-surface-hover); }\n .add-comment-trigger { background: none; border: 1px dashed var(--border-color); border-radius: 6px; padding: 8px 12px; font-size: 12px; color: var(--text-muted); cursor: pointer; width: 100%; text-align: left; margin-top: 4px; }\n .add-comment-trigger:hover { border-color: var(--text-muted); color: var(--text-secondary); background: var(--bg-surface-subtle); }\n .add-comment-form { margin-top: 4px; display: none; }\n .add-comment-form.open { display: block; }\n .add-comment-textarea { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; resize: vertical; min-height: 72px; background: var(--input-bg); color: var(--text-primary); }\n .add-comment-textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .add-comment-submit { margin-top: 6px; padding: 5px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid #3b82f6; background: #3b82f6; color: white; }\n .add-comment-submit:hover { background: #2563eb; border-color: #2563eb; }\n .add-comment-cancel { margin-top: 6px; margin-left: 6px; padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }\n .add-comment-cancel:hover { background: var(--bg-surface-hover); }\n @keyframes header-spin { to { transform: rotate(360deg); } }\n #header-running-indicator { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: header-spin 0.8s linear infinite; margin-left: 8px; flex-shrink: 0; }\n .burger-menu-wrapper { position: relative; }\n .burger-menu-btn { background: none; border: none; color: white; cursor: pointer; padding: 4px 6px; border-radius: 4px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; opacity: 0.8; }\n .burger-menu-btn:hover { opacity: 1; background: rgba(255,255,255,0.1); }\n .burger-menu-btn span { display: block; width: 18px; height: 2px; background: white; border-radius: 1px; }\n .burger-menu-dropdown { position: absolute; right: 0; top: calc(100% + 6px); background: var(--burger-dropdown-bg); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 4px 0; z-index: 1000; display: none; min-width: 180px; }\n .burger-menu-dropdown.open { display: block; }\n .burger-menu-item { padding: 8px 14px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text-primary); white-space: nowrap; }\n .burger-menu-item:hover { background: var(--bg-surface-hover); }\n .burger-menu-item.danger { color: #dc2626; }\n .burger-menu-item.danger:hover { background: #fef2f2; }\n .burger-menu-separator { height: 1px; background: var(--border-color); margin: 4px 0; }\n .add-metadata-row-btn { background: none; border: 1px dashed var(--border-color); border-radius: 6px; padding: 5px 10px; font-size: 12px; color: var(--text-secondary); cursor: pointer; width: 100%; text-align: left; margin-bottom: 12px; }\n .add-metadata-row-btn:hover { border-color: var(--text-muted); background: var(--bg-surface-subtle); }\n .metadata-row { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; }\n .metadata-row-key { flex: 1; border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .metadata-row-key:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .metadata-row-value { flex: 2; border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .metadata-row-value:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .metadata-row-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 16px; line-height: 1; padding: 2px 4px; border-radius: 4px; flex-shrink: 0; }\n .metadata-row-remove:hover { color: #dc2626; background: #fef2f2; }\n .dependency-toggle-btn { border: 1px solid var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 10px; font-size: 11px; font-weight: 600; cursor: pointer; color: var(--text-secondary); flex-shrink: 0; transition: all 0.2s ease; }\n .dependency-toggle-btn:hover { background: var(--bg-surface-hover); border-color: var(--text-muted); color: var(--text-primary); }\n .dependency-toggle-btn.active { background: #3b82f6; border-color: #3b82f6; color: white; }\n .dependency-toggle-btn.active:hover { background: #2563eb; border-color: #2563eb; }\n svg#dependency-svg { pointer-events: none; }\n .dependency-line { transition: stroke-width 0.1s ease; }\n .claude-stream-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }\n .claude-stream-modal-header h2 { font-size: 16px; font-weight: 700; margin: 0; }\n .claude-stream-modal-header button { background: none; border: none; font-size: 18px; color: var(--text-secondary); cursor: pointer; padding: 2px 6px; border-radius: 4px; line-height: 1; }\n .claude-stream-modal-header button:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .claude-stream-log { font-family: 'Courier New', Courier, monospace; background: #0d0d0d; color: #22c55e; overflow-y: auto; max-height: 400px; white-space: pre-wrap; padding: 10px 12px; border-radius: 6px; font-size: 12px; line-height: 1.5; margin-bottom: 12px; }\n .claude-stream-tool-use { background: var(--bg-header, #1e293b); color: #94a3b8; padding: 1px 4px; border-radius: 3px; }\n .claude-stream-modal-footer { display: flex; align-items: center; gap: 8px; }\n .claude-stream-status { color: var(--text-secondary); font-size: 11px; flex: 1; }\n .claude-stream-stop-btn { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid #dc2626; background: #dc2626; color: white; }\n .claude-stream-stop-btn:hover:not(:disabled) { background: #b91c1c; border-color: #b91c1c; }\n .claude-stream-stop-btn:disabled { opacity: 0.5; cursor: not-allowed; }\n #claude-stream-close-btn { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }\n #claude-stream-close-btn:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .run-log-list { padding: 12px 16px; }\n .run-log-item { border: 1px solid var(--border-color); border-radius: 6px; margin-bottom: 8px; overflow: hidden; }\n .run-log-header { display: flex; align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; background: var(--bg-surface-subtle, #f8fafc); user-select: none; }\n .run-log-header:hover { background: var(--bg-surface-hover); }\n .run-log-toggle { font-size: 10px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.15s ease; }\n .run-log-item.open .run-log-toggle { transform: rotate(90deg); }\n .run-log-date { font-size: 12px; color: var(--text-secondary); font-family: 'Courier New', Courier, monospace; }\n .run-log-exit { font-size: 11px; font-weight: 600; border-radius: 10px; padding: 1px 7px; flex-shrink: 0; }\n .run-log-exit.success { background: #dcfce7; color: #15803d; }\n .run-log-exit.failure { background: #fee2e2; color: #dc2626; }\n .run-log-body { display: none; font-family: 'Courier New', Courier, monospace; background: #0d0d0d; color: #22c55e; font-size: 11px; line-height: 1.5; padding: 8px 12px; white-space: pre-wrap; max-height: 300px; overflow-y: auto; }\n .run-log-item.open .run-log-body { display: block; }\n .run-log-tool-use { color: #94a3b8; }\n .run-log-empty { padding: 24px 16px; font-size: 12px; color: var(--text-muted); text-align: center; }";
|
|
1
|
+
export declare const BOARD_STYLES = "\n :root {\n --bg-page: #f1f5f9;\n --bg-surface: #ffffff;\n --bg-surface-subtle: #f8fafc;\n --bg-surface-hover: #f1f5f9;\n --border-color: #e2e8f0;\n --border-color-subtle: #f1f5f9;\n --text-primary: #1e293b;\n --text-secondary: #64748b;\n --text-muted: #94a3b8;\n --header-bg: #1e293b;\n --tag-bg: #e0f2fe;\n --tag-color: #0369a1;\n --column-count-bg: #e2e8f0;\n --column-count-color: #64748b;\n --input-bg: #ffffff;\n --burger-dropdown-bg: #ffffff;\n --drag-over-bg: #eff6ff;\n }\n [data-theme=\"dark\"] {\n --bg-page: #0f172a;\n --bg-surface: #1e293b;\n --bg-surface-subtle: #1e293b;\n --bg-surface-hover: #334155;\n --border-color: #334155;\n --border-color-subtle: #1e293b;\n --text-primary: #f1f5f9;\n --text-secondary: #94a3b8;\n --text-muted: #64748b;\n --header-bg: #0f172a;\n --tag-bg: #0c4a6e;\n --tag-color: #7dd3fc;\n --column-count-bg: #334155;\n --column-count-color: #94a3b8;\n --input-bg: #1e293b;\n --burger-dropdown-bg: #1e293b;\n --drag-over-bg: #1e3a5f;\n }\n * { box-sizing: border-box; margin: 0; padding: 0; }\n body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg-page); color: var(--text-primary); }\n header { background: var(--header-bg); color: white; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }\n header h1 { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }\n .board-title { font-size: 14px; font-weight: 400; opacity: 0.75; }\n .board-container { display: flex; width: 100%; height: calc(100vh - 92px); gap: 0; }\n .board { display: flex; gap: 12px; padding: 16px; overflow-x: auto; flex: 1; align-items: stretch; min-width: 0; }\n .board.with-panel { padding-right: 0; }\n .column { background: var(--bg-surface-subtle); border: 1px solid var(--border-color); border-radius: 8px; width: 240px; flex-shrink: 0; display: flex; flex-direction: column; border-top: 3px solid transparent; }\n .column-header { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }\n .column-title { font-size: 13px; font-weight: 700; }\n .column-header-right { display: flex; align-items: center; gap: 6px; }\n .column-count { background: var(--column-count-bg); color: var(--column-count-color); border-radius: 10px; font-size: 11px; font-weight: 600; padding: 2px 7px; }\n .add-btn { background: none; border: 1px solid var(--border-color); color: var(--text-secondary); border-radius: 4px; width: 22px; height: 22px; font-size: 14px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }\n .add-btn:hover { background: var(--border-color); color: var(--text-primary); }\n .column-body { padding: 8px; min-height: 60px; flex: 1; overflow-y: auto; overflow-x: hidden; min-height: 0; }\n .column.drag-over .column-body { background: var(--drag-over-bg); border-radius: 6px; }\n .card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; padding: 10px; margin-bottom: 6px; cursor: grab; transition: box-shadow 0.15s; }\n .card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }\n .card.active { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.25); background: #eff6ff; }\n [data-theme=\"dark\"] .card.active { border-color: #60a5fa; box-shadow: 0 0 0 2px rgba(96,165,250,0.25); background: #1e3a5f; }\n .card.dragging { opacity: 0.5; }\n .card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; gap: 4px; }\n .card-id { font-size: 11px; color: var(--text-muted); font-weight: 600; }\n .card-actions { margin-left: auto; flex-shrink: 0; }\n .claude-run-split { position: relative; display: inline-flex; }\n .claude-run-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px 0 0 10px; border: 1px solid #16a34a; border-right: none; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-run-btn:hover { background: #bbf7d0; }\n .claude-run-btn:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-run-toggle { font-size: 9px; font-weight: 600; padding: 2px 5px; border-radius: 0 10px 10px 0; border: 1px solid #16a34a; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-run-toggle:hover { background: #bbf7d0; }\n .claude-run-toggle:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-run-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 2px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 100; min-width: 160px; padding: 2px 0; }\n .claude-run-split.open .claude-run-menu { display: block; }\n .claude-run-menu-item { display: block; width: 100%; text-align: left; font-size: 11px; font-weight: 500; padding: 6px 12px; border: none; background: none; color: var(--text-primary); cursor: pointer; white-space: nowrap; }\n .claude-run-menu-item:hover { background: var(--bg-surface-hover); }\n .claude-run-menu-item:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-running-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #9ca3af; background: #f3f4f6; color: #6b7280; cursor: default; line-height: 1.4; display: inline-flex; align-items: center; gap: 4px; }\n .running-btn-spinner { display: inline-block; width: 10px; height: 10px; border: 1.5px solid rgba(107,114,128,0.3); border-top-color: #6b7280; border-radius: 50%; animation: header-spin 0.8s linear infinite; flex-shrink: 0; }\n .bulk-run-split { position: relative; display: inline-flex; }\n .bulk-run-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px 0 0 10px; border: 1px solid #16a34a; border-right: none; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; white-space: nowrap; }\n .bulk-run-btn:hover { background: #bbf7d0; }\n .bulk-run-btn.bulk-run-btn-stop { border-color: #dc2626; background: #fee2e2; color: #dc2626; border-radius: 10px; border-right: 1px solid #dc2626; }\n .bulk-run-btn.bulk-run-btn-stop:hover { background: #fecaca; }\n .bulk-run-toggle { font-size: 9px; font-weight: 600; padding: 2px 5px; border-radius: 0 10px 10px 0; border: 1px solid #16a34a; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .bulk-run-toggle:hover { background: #bbf7d0; }\n .bulk-run-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 2px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 100; min-width: 180px; padding: 2px 0; }\n .bulk-run-split.open .bulk-run-menu { display: block; }\n .bulk-run-menu-item { display: block; width: 100%; text-align: left; font-size: 11px; font-weight: 500; padding: 6px 12px; border: none; background: none; color: var(--text-primary); cursor: pointer; white-space: nowrap; }\n .bulk-run-menu-item:hover { background: var(--bg-surface-hover); }\n .bulk-run-menu-item:disabled { opacity: 0.45; cursor: not-allowed; }\n .claude-plan-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #2563eb; background: #dbeafe; color: #2563eb; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-plan-btn:hover { background: #bfdbfe; }\n .claude-detail-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #d97706; background: #fef3c7; color: #d97706; cursor: pointer; line-height: 1.4; transition: background 0.15s; }\n .claude-detail-btn:hover { background: #fde68a; }\n .card-title { font-size: 13px; font-weight: 500; line-height: 1.4; word-break: break-word; }\n .card-tags { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 4px; }\n .tag { background: var(--tag-bg); color: var(--tag-color); font-size: 10px; font-weight: 600; padding: 2px 6px; border-radius: 10px; }\n .priority { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; text-transform: uppercase; }\n .priority-critical { background: #fee2e2; color: #dc2626; }\n .priority-high { background: #fee2e2; color: #dc2626; }\n .priority-medium { background: #fef9c3; color: #ca8a04; }\n .priority-low { background: #dcfce7; color: #16a34a; }\n .attention-indicator { display: inline-flex; align-items: center; margin-left: 4px; min-width: 14px; height: 14px; }\n .attention-indicator.is-active .icon-question { color: var(--color-warning, #f59e0b); animation: attention-pulse 1.5s ease-in-out infinite; }\n @keyframes attention-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }\n .context-menu { position: fixed; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 4px 0; z-index: 1000; display: none; min-width: 140px; }\n .context-menu-item { padding: 8px 14px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }\n .context-menu-item:hover { background: var(--bg-surface-hover); }\n .context-menu-item.danger { color: #dc2626; }\n .context-menu-item.danger:hover { background: #fef2f2; }\n .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 2000; display: none; align-items: center; justify-content: center; }\n .modal-overlay.show { display: flex; }\n .modal { background: var(--bg-surface); border-radius: 8px; padding: 24px; width: 520px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--text-primary); }\n .modal h2 { font-size: 16px; margin-bottom: 14px; }\n .modal-title-with-icon { display: flex; align-items: center; gap: 6px; }\n .modal-title-icon { flex-shrink: 0; color: var(--text-secondary); }\n .modal label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }\n .modal input, .modal textarea, .modal select { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 8px 10px; font-size: 13px; font-family: inherit; margin-bottom: 12px; background: var(--input-bg); color: var(--text-primary); }\n .modal textarea { resize: vertical; min-height: 60px; }\n .modal input:focus, .modal textarea:focus, .modal select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .modal-actions { display: flex; justify-content: flex-end; gap: 8px; }\n .modal-actions button { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }\n .modal-actions button:hover { background: var(--bg-surface-hover); }\n .modal-actions button.primary { background: #3b82f6; color: white; border-color: #3b82f6; }\n .modal-actions button.primary:hover { background: #2563eb; }\n .toast { position: fixed; bottom: 20px; right: 20px; z-index: 100; background: #ef4444; color: white; padding: 10px 16px; border-radius: 6px; font-size: 13px; opacity: 0; transition: opacity 0.3s; pointer-events: none; }\n .toast.show { opacity: 1; }\n .detail-panel { position: relative; z-index: 6; width: 0; height: calc(100vh - 92px); background: var(--bg-surface); box-shadow: none; border-left: 0 solid var(--border-color); display: flex; flex-direction: column; max-width: 800px; overflow: hidden; transition: width 0.25s ease; }\n .detail-panel-resize-handle { position: absolute; top: 0; left: 0; width: 6px; height: 100%; cursor: col-resize; z-index: 10; background: transparent; }\n .detail-panel-resize-handle:hover, .detail-panel-resize-handle.dragging { background: rgba(59,130,246,0.3); }\n .detail-panel.open { width: 400px; min-width: 280px; border-left-width: 1px; }\n .detail-panel-header { display: flex; align-items: center; gap: 4px; padding: 16px 20px; border-bottom: 1px solid var(--border-color); flex-shrink: 0; }\n .detail-panel-header h2 { font-size: 16px; font-weight: 700; color: var(--text-primary); margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }\n .detail-panel-close { background: none; border: none; font-size: 20px; color: var(--text-secondary); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; margin-left: auto; }\n .detail-panel-close:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .detail-panel-copy-id { background: none; border: none; font-size: 20px; color: var(--text-secondary); cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 4px; flex-shrink: 0; }\n .detail-panel-copy-id:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .detail-panel-body { flex: 1; overflow: hidden; min-width: 0; display: flex; flex-direction: column; }\n .detail-field { margin-bottom: 16px; word-wrap: break-word; }\n .description-field-wrapper { display: flex; flex-direction: column; margin-bottom: 16px; }\n .detail-field-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.05em; }\n .detail-field-value { font-size: 13px; color: var(--text-primary); line-height: 1.5; }\n .detail-field-value.empty { color: var(--text-muted); font-style: italic; }\n .detail-status-badge { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; color: white; }\n .detail-tags { display: flex; flex-wrap: wrap; gap: 4px; }\n .detail-meta-table { width: 100%; border-collapse: collapse; }\n .detail-meta-table td { padding: 4px 0; font-size: 12px; }\n .detail-meta-table td:first-child { color: var(--text-secondary); width: 100px; }\n .detail-meta-table td:last-child { color: var(--text-primary); }\n .detail-meta-table a { color: #2563eb; text-decoration: underline; }\n [data-theme=\"dark\"] .detail-meta-table a { color: #60a5fa; }\n .detail-panel-footer { padding: 12px 20px; border-top: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; flex-shrink: 0; }\n .detail-panel-footer button { padding: 7px 18px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid #3b82f6; background: #3b82f6; color: white; }\n .detail-panel-footer button:hover { background: #2563eb; border-color: #2563eb; }\n .detail-edit-input { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .detail-edit-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .detail-edit-textarea { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; resize: none; min-height: 80px; background: var(--input-bg); color: var(--text-primary); overflow: hidden; }\n .detail-edit-textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .detail-edit-select { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .detail-edit-select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .tag-select-wrapper { position: relative; }\n .tag-select-control { border: 1px solid var(--border-color); border-radius: 6px; padding: 4px 8px; min-height: 36px; cursor: text; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; background: var(--input-bg); }\n .tag-select-control:focus-within { border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .tag-pill { background: var(--tag-bg); color: var(--tag-color); font-size: 11px; font-weight: 600; padding: 2px 4px 2px 8px; border-radius: 10px; display: inline-flex; align-items: center; gap: 3px; }\n .tag-pill-remove { background: none; border: none; color: var(--tag-color); cursor: pointer; font-size: 13px; line-height: 1; padding: 0 2px; display: inline-flex; align-items: center; border-radius: 50%; }\n .tag-pill-remove:hover { color: #dc2626; background: rgba(220,38,38,0.1); }\n .tag-select-input { border: none; outline: none; font-size: 12px; font-family: inherit; min-width: 80px; flex: 1; background: transparent; padding: 2px 0; color: var(--text-primary); }\n .tag-select-input::placeholder { color: var(--text-muted); }\n .tag-select-dropdown { position: absolute; top: calc(100% + 2px); left: 0; right: 0; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 100; max-height: 180px; overflow-y: auto; display: none; }\n .tag-select-dropdown.open { display: block; }\n .tag-select-option { padding: 6px 10px; font-size: 12px; cursor: pointer; color: var(--text-primary); }\n .tag-select-option:hover, .tag-select-option.focused { background: #eff6ff; color: #0369a1; }\n .tag-select-no-options { padding: 6px 10px; font-size: 12px; color: var(--text-muted); font-style: italic; }\n .filter-bar { display: flex; align-items: center; gap: 16px; height: 44px; background: var(--bg-surface-subtle); border-bottom: 1px solid var(--border-color); padding: 0 16px; flex-shrink: 0; overflow-x: auto; }\n .filter-group { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }\n .filter-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.05em; white-space: nowrap; }\n .filter-priority-btn { border: 1px solid var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 8px; font-size: 11px; font-weight: 600; cursor: pointer; text-transform: uppercase; color: var(--text-secondary); }\n .filter-priority-btn:hover { background: var(--bg-surface-hover); }\n .filter-priority-btn.active[data-priority=\"critical\"] { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }\n .filter-priority-btn.active[data-priority=\"high\"] { background: #fee2e2; color: #dc2626; border-color: #fca5a5; }\n .filter-priority-btn.active[data-priority=\"medium\"] { background: #fef9c3; color: #ca8a04; border-color: #fde047; }\n .filter-priority-btn.active[data-priority=\"low\"] { background: #dcfce7; color: #16a34a; border-color: #86efac; }\n .filter-search-input { border: 1px solid var(--border-color); border-radius: 4px; padding: 3px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); width: 160px; }\n .filter-search-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .filter-assignee-input { border: 1px solid var(--border-color); border-radius: 4px; padding: 3px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); width: 120px; }\n .filter-assignee-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .filter-tag-pill { background: var(--tag-bg); color: var(--tag-color); font-size: 11px; font-weight: 600; padding: 2px 4px 2px 8px; border-radius: 10px; display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0; }\n .filter-tag-pill-remove { background: none; border: none; color: var(--tag-color); cursor: pointer; font-size: 13px; line-height: 1; padding: 0 2px; display: inline-flex; align-items: center; border-radius: 50%; }\n .filter-tag-pill-remove:hover { color: #dc2626; background: rgba(220,38,38,0.1); }\n .filter-tag-dropdown-wrapper { flex-shrink: 0; }\n .filter-tag-add-btn { border: 1px dashed var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 8px; font-size: 11px; color: var(--text-secondary); cursor: pointer; white-space: nowrap; }\n .filter-tag-add-btn:hover { background: var(--bg-surface-hover); border-color: var(--text-muted); }\n .filter-tag-dropdown { position: fixed; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 200; max-height: 180px; overflow-y: auto; display: none; min-width: 140px; }\n .filter-tag-dropdown.open { display: block; }\n .filter-tag-dropdown-option { padding: 6px 10px; font-size: 12px; cursor: pointer; color: var(--text-primary); white-space: nowrap; }\n .filter-tag-dropdown-option:hover { background: #eff6ff; color: #0369a1; }\n .filter-tag-dropdown-empty { padding: 6px 10px; font-size: 12px; color: var(--text-muted); font-style: italic; }\n .filter-clear-btn { border: 1px solid var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 10px; font-size: 11px; font-weight: 600; cursor: pointer; color: var(--text-secondary); display: none; flex-shrink: 0; margin-left: auto; }\n .filter-clear-btn:hover { background: #fee2e2; border-color: #fca5a5; color: #dc2626; }\n .filter-clear-btn.visible { display: block; }\n .detail-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border-color); flex-shrink: 0; padding: 0 20px; background: var(--bg-surface); }\n .detail-tab { padding: 8px 14px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; background: none; border-top: none; border-left: none; border-right: none; }\n .detail-tab:hover { color: var(--text-secondary); }\n .detail-tab.active { color: #3b82f6; border-bottom-color: #3b82f6; }\n .detail-tab-content { display: none; flex: 1; overflow-y: auto; min-height: 0; }\n .detail-tab-content.active { display: block; overflow-y: auto; }\n .detail-relations { font-size: 12px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border-color-subtle); margin-bottom: 12px; }\n .detail-relation-row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }\n .detail-relation-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-muted); width: 80px; flex-shrink: 0; letter-spacing: 0.05em; }\n .detail-relation-ids { display: flex; flex-wrap: wrap; gap: 4px; }\n .detail-relation-id { font-size: 11px; color: #3b82f6; background: #eff6ff; border-radius: 10px; padding: 1px 7px; font-weight: 600; }\n .detail-timestamp { font-size: 11px; color: var(--text-muted); margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--border-color-subtle); }\n .detail-footer-timestamp { font-size: 11px; color: var(--text-muted); }\n .comment-item { position: relative; padding: 6px 0 6px 10px; border-left: 2px solid var(--border-color); margin-bottom: 10px; }\n .comment-item:hover { border-left-color: #3b82f6; }\n .comment-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }\n .comment-author { font-size: 11px; font-weight: 600; color: var(--text-secondary); }\n .comment-date { font-size: 11px; color: var(--text-muted); }\n .comment-actions { display: none; margin-left: auto; gap: 4px; }\n .comment-item:hover .comment-actions { display: flex; }\n .comment-action-btn { background: none; border: none; padding: 1px 4px; cursor: pointer; color: var(--text-muted); font-size: 12px; border-radius: 3px; }\n .comment-action-btn:hover { color: var(--text-primary); background: var(--bg-surface-hover); }\n .comment-action-btn.danger:hover { color: #dc2626; background: #fef2f2; }\n .comment-content { font-size: 13px; color: var(--text-primary); line-height: 1.5; white-space: pre-wrap; }\n .comment-edit-area { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; resize: vertical; min-height: 60px; background: var(--input-bg); color: var(--text-primary); margin-top: 4px; }\n .comment-edit-area:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .comment-edit-actions { display: flex; gap: 6px; margin-top: 4px; }\n .comment-btn { background: none; border: 1px solid var(--border-color); border-radius: 4px; font-size: 11px; font-weight: 600; padding: 2px 8px; cursor: pointer; color: var(--text-secondary); }\n .comment-btn:hover { background: var(--bg-surface-hover); }\n .add-comment-trigger { background: none; border: 1px dashed var(--border-color); border-radius: 6px; padding: 8px 12px; font-size: 12px; color: var(--text-muted); cursor: pointer; width: 100%; text-align: left; margin-top: 4px; }\n .add-comment-trigger:hover { border-color: var(--text-muted); color: var(--text-secondary); background: var(--bg-surface-subtle); }\n .add-comment-form { margin-top: 4px; display: none; }\n .add-comment-form.open { display: block; }\n .add-comment-textarea { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 7px 10px; font-size: 13px; font-family: inherit; resize: vertical; min-height: 72px; background: var(--input-bg); color: var(--text-primary); }\n .add-comment-textarea:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .add-comment-submit { margin-top: 6px; padding: 5px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid #3b82f6; background: #3b82f6; color: white; }\n .add-comment-submit:hover { background: #2563eb; border-color: #2563eb; }\n .add-comment-cancel { margin-top: 6px; margin-left: 6px; padding: 5px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }\n .add-comment-cancel:hover { background: var(--bg-surface-hover); }\n @keyframes header-spin { to { transform: rotate(360deg); } }\n #header-running-indicator { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: white; border-radius: 50%; animation: header-spin 0.8s linear infinite; margin-left: 8px; flex-shrink: 0; }\n .burger-menu-wrapper { position: relative; }\n .burger-menu-btn { background: none; border: none; color: white; cursor: pointer; padding: 4px 6px; border-radius: 4px; display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; opacity: 0.8; }\n .burger-menu-btn:hover { opacity: 1; background: rgba(255,255,255,0.1); }\n .burger-menu-btn span { display: block; width: 18px; height: 2px; background: white; border-radius: 1px; }\n .burger-menu-dropdown { position: absolute; right: 0; top: calc(100% + 6px); background: var(--burger-dropdown-bg); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 4px 0; z-index: 1000; display: none; min-width: 180px; }\n .burger-menu-dropdown.open { display: block; }\n .burger-menu-item { padding: 8px 14px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text-primary); white-space: nowrap; }\n .burger-menu-item:hover { background: var(--bg-surface-hover); }\n .burger-menu-item.danger { color: #dc2626; }\n .burger-menu-item.danger:hover { background: #fef2f2; }\n .burger-menu-separator { height: 1px; background: var(--border-color); margin: 4px 0; }\n .add-metadata-row-btn { background: none; border: 1px dashed var(--border-color); border-radius: 6px; padding: 5px 10px; font-size: 12px; color: var(--text-secondary); cursor: pointer; width: 100%; text-align: left; margin-bottom: 12px; }\n .add-metadata-row-btn:hover { border-color: var(--text-muted); background: var(--bg-surface-subtle); }\n .metadata-row { display: flex; gap: 6px; align-items: center; margin-bottom: 6px; }\n .metadata-row-key { flex: 1; border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .metadata-row-key:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .metadata-row-value { flex: 2; border: 1px solid var(--border-color); border-radius: 6px; padding: 6px 8px; font-size: 12px; font-family: inherit; background: var(--input-bg); color: var(--text-primary); }\n .metadata-row-value:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 2px rgba(59,130,246,0.2); }\n .metadata-row-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 16px; line-height: 1; padding: 2px 4px; border-radius: 4px; flex-shrink: 0; }\n .metadata-row-remove:hover { color: #dc2626; background: #fef2f2; }\n .dependency-toggle-btn { border: 1px solid var(--border-color); background: var(--bg-surface); border-radius: 4px; padding: 2px 10px; font-size: 11px; font-weight: 600; cursor: pointer; color: var(--text-secondary); flex-shrink: 0; transition: all 0.2s ease; }\n .dependency-toggle-btn:hover { background: var(--bg-surface-hover); border-color: var(--text-muted); color: var(--text-primary); }\n .dependency-toggle-btn.active { background: #3b82f6; border-color: #3b82f6; color: white; }\n .dependency-toggle-btn.active:hover { background: #2563eb; border-color: #2563eb; }\n svg#dependency-svg { pointer-events: none; }\n .dependency-line { transition: stroke-width 0.1s ease; }\n .claude-stream-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }\n .claude-stream-modal-header h2 { font-size: 16px; font-weight: 700; margin: 0; }\n .claude-stream-modal-header button { background: none; border: none; font-size: 18px; color: var(--text-secondary); cursor: pointer; padding: 2px 6px; border-radius: 4px; line-height: 1; }\n .claude-stream-modal-header button:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .claude-stream-log { font-family: 'Courier New', Courier, monospace; background: #0d0d0d; color: #22c55e; overflow-y: auto; max-height: 400px; white-space: pre-wrap; padding: 10px 12px; border-radius: 6px; font-size: 12px; line-height: 1.5; margin-bottom: 12px; }\n .claude-stream-tool-use { background: var(--bg-header, #1e293b); color: #94a3b8; padding: 1px 4px; border-radius: 3px; }\n .claude-stream-modal-footer { display: flex; align-items: center; gap: 8px; }\n .claude-stream-status { color: var(--text-secondary); font-size: 11px; flex: 1; }\n .claude-stream-stop-btn { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid #dc2626; background: #dc2626; color: white; }\n .claude-stream-stop-btn:hover:not(:disabled) { background: #b91c1c; border-color: #b91c1c; }\n .claude-stream-stop-btn:disabled { opacity: 0.5; cursor: not-allowed; }\n #claude-stream-close-btn { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }\n #claude-stream-close-btn:hover { background: var(--bg-surface-hover); color: var(--text-primary); }\n .detail-tab-content.detail-terminal-pane { padding: 0; flex-direction: column; }\n .detail-tab-content.detail-terminal-pane.active { display: flex; overflow: hidden; }\n .detail-terminal-toolbar { display: flex; justify-content: flex-end; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border-color); background: var(--bg-surface-subtle, #f8fafc); flex-shrink: 0; }\n .detail-terminal-host { flex: 1; min-height: 0; position: relative; background: #0d1117; }\n .detail-terminal-host .xterm { height: 100%; }\n .detail-terminal-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 12px; background: #0d1117; z-index: 1; }\n .run-log-list { padding: 12px 16px; }\n .run-log-item { border: 1px solid var(--border-color); border-radius: 6px; margin-bottom: 8px; overflow: hidden; }\n .run-log-header { display: flex; align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; background: var(--bg-surface-subtle, #f8fafc); user-select: none; }\n .run-log-header:hover { background: var(--bg-surface-hover); }\n .run-log-toggle { font-size: 10px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.15s ease; }\n .run-log-item.open .run-log-toggle { transform: rotate(90deg); }\n .run-log-date { font-size: 12px; color: var(--text-secondary); font-family: 'Courier New', Courier, monospace; }\n .run-log-exit { font-size: 11px; font-weight: 600; border-radius: 10px; padding: 1px 7px; flex-shrink: 0; }\n .run-log-exit.success { background: #dcfce7; color: #15803d; }\n .run-log-exit.failure { background: #fee2e2; color: #dc2626; }\n .run-log-body { display: none; font-family: 'Courier New', Courier, monospace; background: #0d0d0d; color: #22c55e; font-size: 11px; line-height: 1.5; padding: 8px 12px; white-space: pre-wrap; max-height: 300px; overflow-y: auto; }\n .run-log-item.open .run-log-body { display: block; }\n .run-log-tool-use { color: #94a3b8; }\n .run-log-empty { padding: 24px 16px; font-size: 12px; color: var(--text-muted); text-align: center; }";
|
|
2
2
|
//# sourceMappingURL=boardStyles.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boardStyles.d.ts","sourceRoot":"","sources":["../../src/board/boardStyles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"boardStyles.d.ts","sourceRoot":"","sources":["../../src/board/boardStyles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,47iCA2SiF,CAAC"}
|
|
@@ -77,6 +77,20 @@ exports.BOARD_STYLES = `
|
|
|
77
77
|
.claude-run-menu-item { display: block; width: 100%; text-align: left; font-size: 11px; font-weight: 500; padding: 6px 12px; border: none; background: none; color: var(--text-primary); cursor: pointer; white-space: nowrap; }
|
|
78
78
|
.claude-run-menu-item:hover { background: var(--bg-surface-hover); }
|
|
79
79
|
.claude-run-menu-item:disabled { opacity: 0.45; cursor: not-allowed; }
|
|
80
|
+
.claude-running-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #9ca3af; background: #f3f4f6; color: #6b7280; cursor: default; line-height: 1.4; display: inline-flex; align-items: center; gap: 4px; }
|
|
81
|
+
.running-btn-spinner { display: inline-block; width: 10px; height: 10px; border: 1.5px solid rgba(107,114,128,0.3); border-top-color: #6b7280; border-radius: 50%; animation: header-spin 0.8s linear infinite; flex-shrink: 0; }
|
|
82
|
+
.bulk-run-split { position: relative; display: inline-flex; }
|
|
83
|
+
.bulk-run-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px 0 0 10px; border: 1px solid #16a34a; border-right: none; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; white-space: nowrap; }
|
|
84
|
+
.bulk-run-btn:hover { background: #bbf7d0; }
|
|
85
|
+
.bulk-run-btn.bulk-run-btn-stop { border-color: #dc2626; background: #fee2e2; color: #dc2626; border-radius: 10px; border-right: 1px solid #dc2626; }
|
|
86
|
+
.bulk-run-btn.bulk-run-btn-stop:hover { background: #fecaca; }
|
|
87
|
+
.bulk-run-toggle { font-size: 9px; font-weight: 600; padding: 2px 5px; border-radius: 0 10px 10px 0; border: 1px solid #16a34a; background: #dcfce7; color: #16a34a; cursor: pointer; line-height: 1.4; transition: background 0.15s; }
|
|
88
|
+
.bulk-run-toggle:hover { background: #bbf7d0; }
|
|
89
|
+
.bulk-run-menu { display: none; position: absolute; top: 100%; right: 0; margin-top: 2px; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 100; min-width: 180px; padding: 2px 0; }
|
|
90
|
+
.bulk-run-split.open .bulk-run-menu { display: block; }
|
|
91
|
+
.bulk-run-menu-item { display: block; width: 100%; text-align: left; font-size: 11px; font-weight: 500; padding: 6px 12px; border: none; background: none; color: var(--text-primary); cursor: pointer; white-space: nowrap; }
|
|
92
|
+
.bulk-run-menu-item:hover { background: var(--bg-surface-hover); }
|
|
93
|
+
.bulk-run-menu-item:disabled { opacity: 0.45; cursor: not-allowed; }
|
|
80
94
|
.claude-plan-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #2563eb; background: #dbeafe; color: #2563eb; cursor: pointer; line-height: 1.4; transition: background 0.15s; }
|
|
81
95
|
.claude-plan-btn:hover { background: #bfdbfe; }
|
|
82
96
|
.claude-detail-btn { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 10px; border: 1px solid #d97706; background: #fef3c7; color: #d97706; cursor: pointer; line-height: 1.4; transition: background 0.15s; }
|
|
@@ -89,6 +103,9 @@ exports.BOARD_STYLES = `
|
|
|
89
103
|
.priority-high { background: #fee2e2; color: #dc2626; }
|
|
90
104
|
.priority-medium { background: #fef9c3; color: #ca8a04; }
|
|
91
105
|
.priority-low { background: #dcfce7; color: #16a34a; }
|
|
106
|
+
.attention-indicator { display: inline-flex; align-items: center; margin-left: 4px; min-width: 14px; height: 14px; }
|
|
107
|
+
.attention-indicator.is-active .icon-question { color: var(--color-warning, #f59e0b); animation: attention-pulse 1.5s ease-in-out infinite; }
|
|
108
|
+
@keyframes attention-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
|
|
92
109
|
.context-menu { position: fixed; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 6px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 4px 0; z-index: 1000; display: none; min-width: 140px; }
|
|
93
110
|
.context-menu-item { padding: 8px 14px; font-size: 13px; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text-primary); }
|
|
94
111
|
.context-menu-item:hover { background: var(--bg-surface-hover); }
|
|
@@ -98,6 +115,8 @@ exports.BOARD_STYLES = `
|
|
|
98
115
|
.modal-overlay.show { display: flex; }
|
|
99
116
|
.modal { background: var(--bg-surface); border-radius: 8px; padding: 24px; width: 520px; box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: var(--text-primary); }
|
|
100
117
|
.modal h2 { font-size: 16px; margin-bottom: 14px; }
|
|
118
|
+
.modal-title-with-icon { display: flex; align-items: center; gap: 6px; }
|
|
119
|
+
.modal-title-icon { flex-shrink: 0; color: var(--text-secondary); }
|
|
101
120
|
.modal label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
|
|
102
121
|
.modal input, .modal textarea, .modal select { width: 100%; border: 1px solid var(--border-color); border-radius: 6px; padding: 8px 10px; font-size: 13px; font-family: inherit; margin-bottom: 12px; background: var(--input-bg); color: var(--text-primary); }
|
|
103
122
|
.modal textarea { resize: vertical; min-height: 60px; }
|
|
@@ -262,6 +281,12 @@ exports.BOARD_STYLES = `
|
|
|
262
281
|
.claude-stream-stop-btn:disabled { opacity: 0.5; cursor: not-allowed; }
|
|
263
282
|
#claude-stream-close-btn { padding: 6px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; cursor: pointer; border: 1px solid var(--border-color); background: var(--bg-surface); color: var(--text-secondary); }
|
|
264
283
|
#claude-stream-close-btn:hover { background: var(--bg-surface-hover); color: var(--text-primary); }
|
|
284
|
+
.detail-tab-content.detail-terminal-pane { padding: 0; flex-direction: column; }
|
|
285
|
+
.detail-tab-content.detail-terminal-pane.active { display: flex; overflow: hidden; }
|
|
286
|
+
.detail-terminal-toolbar { display: flex; justify-content: flex-end; gap: 8px; padding: 8px 12px; border-bottom: 1px solid var(--border-color); background: var(--bg-surface-subtle, #f8fafc); flex-shrink: 0; }
|
|
287
|
+
.detail-terminal-host { flex: 1; min-height: 0; position: relative; background: #0d1117; }
|
|
288
|
+
.detail-terminal-host .xterm { height: 100%; }
|
|
289
|
+
.detail-terminal-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #94a3b8; font-size: 12px; background: #0d1117; z-index: 1; }
|
|
265
290
|
.run-log-list { padding: 12px 16px; }
|
|
266
291
|
.run-log-item { border: 1px solid var(--border-color); border-radius: 6px; margin-bottom: 8px; overflow: hidden; }
|
|
267
292
|
.run-log-header { display: flex; align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; background: var(--bg-surface-subtle, #f8fafc); user-select: none; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"boardStyles.js","sourceRoot":"","sources":["../../src/board/boardStyles.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAG
|
|
1
|
+
{"version":3,"file":"boardStyles.js","sourceRoot":"","sources":["../../src/board/boardStyles.ts"],"names":[],"mappings":";;;AAAa,QAAA,YAAY,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0GA2S8E,CAAC"}
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
/* node_modules/.pnpm/@xterm+xterm@6.0.0/node_modules/@xterm/xterm/css/xterm.css */
|
|
2
|
+
.xterm {
|
|
3
|
+
cursor: text;
|
|
4
|
+
position: relative;
|
|
5
|
+
user-select: none;
|
|
6
|
+
-ms-user-select: none;
|
|
7
|
+
-webkit-user-select: none;
|
|
8
|
+
}
|
|
9
|
+
.xterm.focus,
|
|
10
|
+
.xterm:focus {
|
|
11
|
+
outline: none;
|
|
12
|
+
}
|
|
13
|
+
.xterm .xterm-helpers {
|
|
14
|
+
position: absolute;
|
|
15
|
+
top: 0;
|
|
16
|
+
z-index: 5;
|
|
17
|
+
}
|
|
18
|
+
.xterm .xterm-helper-textarea {
|
|
19
|
+
padding: 0;
|
|
20
|
+
border: 0;
|
|
21
|
+
margin: 0;
|
|
22
|
+
position: absolute;
|
|
23
|
+
opacity: 0;
|
|
24
|
+
left: -9999em;
|
|
25
|
+
top: 0;
|
|
26
|
+
width: 0;
|
|
27
|
+
height: 0;
|
|
28
|
+
z-index: -5;
|
|
29
|
+
white-space: nowrap;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
resize: none;
|
|
32
|
+
}
|
|
33
|
+
.xterm .composition-view {
|
|
34
|
+
background: #000;
|
|
35
|
+
color: #FFF;
|
|
36
|
+
display: none;
|
|
37
|
+
position: absolute;
|
|
38
|
+
white-space: nowrap;
|
|
39
|
+
z-index: 1;
|
|
40
|
+
}
|
|
41
|
+
.xterm .composition-view.active {
|
|
42
|
+
display: block;
|
|
43
|
+
}
|
|
44
|
+
.xterm .xterm-viewport {
|
|
45
|
+
background-color: #000;
|
|
46
|
+
overflow-y: scroll;
|
|
47
|
+
cursor: default;
|
|
48
|
+
position: absolute;
|
|
49
|
+
right: 0;
|
|
50
|
+
left: 0;
|
|
51
|
+
top: 0;
|
|
52
|
+
bottom: 0;
|
|
53
|
+
}
|
|
54
|
+
.xterm .xterm-screen {
|
|
55
|
+
position: relative;
|
|
56
|
+
}
|
|
57
|
+
.xterm .xterm-screen canvas {
|
|
58
|
+
position: absolute;
|
|
59
|
+
left: 0;
|
|
60
|
+
top: 0;
|
|
61
|
+
}
|
|
62
|
+
.xterm-char-measure-element {
|
|
63
|
+
display: inline-block;
|
|
64
|
+
visibility: hidden;
|
|
65
|
+
position: absolute;
|
|
66
|
+
top: 0;
|
|
67
|
+
left: -9999em;
|
|
68
|
+
line-height: normal;
|
|
69
|
+
}
|
|
70
|
+
.xterm.enable-mouse-events {
|
|
71
|
+
cursor: default;
|
|
72
|
+
}
|
|
73
|
+
.xterm.xterm-cursor-pointer,
|
|
74
|
+
.xterm .xterm-cursor-pointer {
|
|
75
|
+
cursor: pointer;
|
|
76
|
+
}
|
|
77
|
+
.xterm.column-select.focus {
|
|
78
|
+
cursor: crosshair;
|
|
79
|
+
}
|
|
80
|
+
.xterm .xterm-accessibility:not(.debug),
|
|
81
|
+
.xterm .xterm-message {
|
|
82
|
+
position: absolute;
|
|
83
|
+
left: 0;
|
|
84
|
+
top: 0;
|
|
85
|
+
bottom: 0;
|
|
86
|
+
right: 0;
|
|
87
|
+
z-index: 10;
|
|
88
|
+
color: transparent;
|
|
89
|
+
pointer-events: none;
|
|
90
|
+
}
|
|
91
|
+
.xterm .xterm-accessibility-tree:not(.debug) *::selection {
|
|
92
|
+
color: transparent;
|
|
93
|
+
}
|
|
94
|
+
.xterm .xterm-accessibility-tree {
|
|
95
|
+
font-family: monospace;
|
|
96
|
+
user-select: text;
|
|
97
|
+
white-space: pre;
|
|
98
|
+
}
|
|
99
|
+
.xterm .xterm-accessibility-tree > div {
|
|
100
|
+
transform-origin: left;
|
|
101
|
+
width: fit-content;
|
|
102
|
+
}
|
|
103
|
+
.xterm .live-region {
|
|
104
|
+
position: absolute;
|
|
105
|
+
left: -9999px;
|
|
106
|
+
width: 1px;
|
|
107
|
+
height: 1px;
|
|
108
|
+
overflow: hidden;
|
|
109
|
+
}
|
|
110
|
+
.xterm-dim {
|
|
111
|
+
opacity: 1 !important;
|
|
112
|
+
}
|
|
113
|
+
.xterm-underline-1 {
|
|
114
|
+
text-decoration: underline;
|
|
115
|
+
}
|
|
116
|
+
.xterm-underline-2 {
|
|
117
|
+
text-decoration: double underline;
|
|
118
|
+
}
|
|
119
|
+
.xterm-underline-3 {
|
|
120
|
+
text-decoration: wavy underline;
|
|
121
|
+
}
|
|
122
|
+
.xterm-underline-4 {
|
|
123
|
+
text-decoration: dotted underline;
|
|
124
|
+
}
|
|
125
|
+
.xterm-underline-5 {
|
|
126
|
+
text-decoration: dashed underline;
|
|
127
|
+
}
|
|
128
|
+
.xterm-overline {
|
|
129
|
+
text-decoration: overline;
|
|
130
|
+
}
|
|
131
|
+
.xterm-overline.xterm-underline-1 {
|
|
132
|
+
text-decoration: overline underline;
|
|
133
|
+
}
|
|
134
|
+
.xterm-overline.xterm-underline-2 {
|
|
135
|
+
text-decoration: overline double underline;
|
|
136
|
+
}
|
|
137
|
+
.xterm-overline.xterm-underline-3 {
|
|
138
|
+
text-decoration: overline wavy underline;
|
|
139
|
+
}
|
|
140
|
+
.xterm-overline.xterm-underline-4 {
|
|
141
|
+
text-decoration: overline dotted underline;
|
|
142
|
+
}
|
|
143
|
+
.xterm-overline.xterm-underline-5 {
|
|
144
|
+
text-decoration: overline dashed underline;
|
|
145
|
+
}
|
|
146
|
+
.xterm-strikethrough {
|
|
147
|
+
text-decoration: line-through;
|
|
148
|
+
}
|
|
149
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration {
|
|
150
|
+
z-index: 6;
|
|
151
|
+
position: absolute;
|
|
152
|
+
}
|
|
153
|
+
.xterm-screen .xterm-decoration-container .xterm-decoration.xterm-decoration-top-layer {
|
|
154
|
+
z-index: 7;
|
|
155
|
+
}
|
|
156
|
+
.xterm-decoration-overview-ruler {
|
|
157
|
+
z-index: 8;
|
|
158
|
+
position: absolute;
|
|
159
|
+
top: 0;
|
|
160
|
+
right: 0;
|
|
161
|
+
pointer-events: none;
|
|
162
|
+
}
|
|
163
|
+
.xterm-decoration-top {
|
|
164
|
+
z-index: 2;
|
|
165
|
+
position: relative;
|
|
166
|
+
}
|
|
167
|
+
.xterm .xterm-scrollable-element > .scrollbar {
|
|
168
|
+
cursor: default;
|
|
169
|
+
}
|
|
170
|
+
.xterm .xterm-scrollable-element > .scrollbar > .scra {
|
|
171
|
+
cursor: pointer;
|
|
172
|
+
font-size: 11px !important;
|
|
173
|
+
}
|
|
174
|
+
.xterm .xterm-scrollable-element > .visible {
|
|
175
|
+
opacity: 1;
|
|
176
|
+
background: rgba(0, 0, 0, 0);
|
|
177
|
+
transition: opacity 100ms linear;
|
|
178
|
+
z-index: 11;
|
|
179
|
+
}
|
|
180
|
+
.xterm .xterm-scrollable-element > .invisible {
|
|
181
|
+
opacity: 0;
|
|
182
|
+
pointer-events: none;
|
|
183
|
+
}
|
|
184
|
+
.xterm .xterm-scrollable-element > .invisible.fade {
|
|
185
|
+
transition: opacity 800ms linear;
|
|
186
|
+
}
|
|
187
|
+
.xterm .xterm-scrollable-element > .shadow {
|
|
188
|
+
position: absolute;
|
|
189
|
+
display: none;
|
|
190
|
+
}
|
|
191
|
+
.xterm .xterm-scrollable-element > .shadow.top {
|
|
192
|
+
display: block;
|
|
193
|
+
top: 0;
|
|
194
|
+
left: 3px;
|
|
195
|
+
height: 3px;
|
|
196
|
+
width: 100%;
|
|
197
|
+
box-shadow: var(--vscode-scrollbar-shadow, #000) 0 6px 6px -6px inset;
|
|
198
|
+
}
|
|
199
|
+
.xterm .xterm-scrollable-element > .shadow.left {
|
|
200
|
+
display: block;
|
|
201
|
+
top: 3px;
|
|
202
|
+
left: 0;
|
|
203
|
+
height: 100%;
|
|
204
|
+
width: 3px;
|
|
205
|
+
box-shadow: var(--vscode-scrollbar-shadow, #000) 6px 0 6px -6px inset;
|
|
206
|
+
}
|
|
207
|
+
.xterm .xterm-scrollable-element > .shadow.top-left-corner {
|
|
208
|
+
display: block;
|
|
209
|
+
top: 0;
|
|
210
|
+
left: 0;
|
|
211
|
+
height: 3px;
|
|
212
|
+
width: 3px;
|
|
213
|
+
}
|
|
214
|
+
.xterm .xterm-scrollable-element > .shadow.top.left {
|
|
215
|
+
box-shadow: var(--vscode-scrollbar-shadow, #000) 6px 0 6px -6px inset;
|
|
216
|
+
}
|
|
217
|
+
/*! Bundled license information:
|
|
218
|
+
|
|
219
|
+
@xterm/xterm/css/xterm.css:
|
|
220
|
+
(**
|
|
221
|
+
* Copyright (c) 2014 The xterm.js authors. All rights reserved.
|
|
222
|
+
* Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
|
|
223
|
+
* https://github.com/chjj/term.js
|
|
224
|
+
* @license MIT
|
|
225
|
+
*
|
|
226
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
227
|
+
* of this software and associated documentation files (the "Software"), to deal
|
|
228
|
+
* in the Software without restriction, including without limitation the rights
|
|
229
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
230
|
+
* copies of the Software, and to permit persons to whom the Software is
|
|
231
|
+
* furnished to do so, subject to the following conditions:
|
|
232
|
+
*
|
|
233
|
+
* The above copyright notice and this permission notice shall be included in
|
|
234
|
+
* all copies or substantial portions of the Software.
|
|
235
|
+
*
|
|
236
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
237
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
238
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
239
|
+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
240
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
241
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
242
|
+
* THE SOFTWARE.
|
|
243
|
+
*
|
|
244
|
+
* Originally forked from (with the author's permission):
|
|
245
|
+
* Fabrice Bellard's javascript vt100 for jslinux:
|
|
246
|
+
* http://bellard.org/jslinux/
|
|
247
|
+
* Copyright (c) 2011 Fabrice Bellard
|
|
248
|
+
* The original design remains. The terminal itself
|
|
249
|
+
* has been extended to include xterm CSI codes, among
|
|
250
|
+
* other features.
|
|
251
|
+
*)
|
|
252
|
+
*/
|