glad-web 1.0.46 → 2.0.2
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/README.md +4 -192
- package/THIRD_PARTY_NOTICES.md +27 -0
- package/bin/glad.cjs +56 -0
- package/package.json +19 -61
- package/README.zh-CN.md +0 -198
- package/assets/logo.svg +0 -43
- package/bin/cli.js +0 -65
- package/lib/ai-tools/demo/enhanced-demo.js +0 -625
- package/lib/ai-tools/demo/index.js +0 -24
- package/lib/ai-tools/demo/responses.js +0 -88
- package/lib/ai-tools/detector.js +0 -76
- package/lib/ai-tools/registry.js +0 -300
- package/lib/claude/cli-usage.js +0 -95
- package/lib/claude/config.js +0 -82
- package/lib/claude/structured-session.js +0 -884
- package/lib/claude/transcript-repository.js +0 -216
- package/lib/codex/image-store.js +0 -174
- package/lib/codex/structured-session.js +0 -1590
- package/lib/commands/config.js +0 -78
- package/lib/commands/tools.js +0 -128
- package/lib/commands/web.js +0 -605
- package/lib/config/constants.js +0 -17
- package/lib/config/manager.js +0 -108
- package/lib/git/service.js +0 -83
- package/lib/notifications/message-formatter.js +0 -94
- package/lib/notifications/notification-service.js +0 -143
- package/lib/notifications/serverchan-client.js +0 -58
- package/lib/notifications/serverchan-settings-store.js +0 -115
- package/lib/schedule/job-runner.js +0 -162
- package/lib/schedule/job-store.js +0 -167
- package/lib/schedule/key-sequences.js +0 -49
- package/lib/schedule/scheduler-service.js +0 -39
- package/lib/server/routes/notifications.js +0 -52
- package/lib/server/routes/providers.js +0 -114
- package/lib/server/routes/schedules.js +0 -54
- package/lib/server/routes/skillhub.js +0 -104
- package/lib/server/routes/usage.js +0 -23
- package/lib/server/routes/workspace.js +0 -77
- package/lib/session/buffer.js +0 -102
- package/lib/session/file-attachment-store.js +0 -168
- package/lib/session/pty-manager.js +0 -255
- package/lib/session/rendered-history.js +0 -225
- package/lib/session/session-manager.js +0 -1032
- package/lib/session/text-history.js +0 -274
- package/lib/skillhub/client.js +0 -121
- package/lib/skillhub/settings-store.js +0 -168
- package/lib/skillhub/skill-installer.js +0 -320
- package/lib/usage/ccusage-runner.js +0 -128
- package/lib/usage/source-catalog.js +0 -26
- package/lib/usage/usage-service.js +0 -226
- package/lib/utils/logger.js +0 -74
- package/lib/utils/pid.js +0 -67
- package/lib/utils/validation.js +0 -53
- package/lib/web/bootstrap.js +0 -34
- package/lib/web/claude.js +0 -1150
- package/lib/web/codex.js +0 -1045
- package/lib/web/composer.js +0 -493
- package/lib/web/core.js +0 -385
- package/lib/web/git.js +0 -535
- package/lib/web/gitgraph.js +0 -293
- package/lib/web/index.html +0 -547
- package/lib/web/layout.js +0 -69
- package/lib/web/notifications.js +0 -164
- package/lib/web/schedules.js +0 -245
- package/lib/web/session.js +0 -361
- package/lib/web/shell.js +0 -74
- package/lib/web/skillhub.js +0 -197
- package/lib/web/styles.css +0 -932
- package/lib/web/terminal-scroll.js +0 -81
- package/lib/web/theme.js +0 -60
- package/lib/web/timed-inputs.js +0 -216
- package/lib/web/usage.js +0 -323
- package/lib/workspace/service.js +0 -77
- package/scripts/check-syntax.js +0 -26
package/lib/web/styles.css
DELETED
|
@@ -1,932 +0,0 @@
|
|
|
1
|
-
:root { --primary: #007aff; --bg: #000; --card-bg: #1c1c1e; --text: #fff; --text-dim: #8e8e93; --terminal-controls-rest-height: 108px; --chat-content-max: 900px; --control-content-max: 1100px; }
|
|
2
|
-
body, html { margin: 0; padding: 0; height: 100dvh; width: 100vw; background: var(--bg); color: var(--text); overflow: hidden; overflow-anchor: none; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
|
|
3
|
-
.view { display: none; height: 100%; width: 100%; flex-direction: column; }
|
|
4
|
-
.view.active { display: flex; }
|
|
5
|
-
#lobby { overflow-y: auto; padding: 20px; padding-top: env(safe-area-inset-top); box-sizing: border-box; }
|
|
6
|
-
.header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
|
|
7
|
-
.header-actions { display: flex; align-items: center; gap: 5px; margin-left: auto; }
|
|
8
|
-
.skill-hall-entry-btn { height: 36px; padding: 0 11px; border: 1px solid rgba(0,122,255,.38); border-radius: 10px; background: rgba(0,122,255,.12); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; gap: 5px; font-size: 13px; font-weight: 800; cursor: pointer; flex-shrink: 0; }
|
|
9
|
-
.skill-hall-entry-btn:active { background: rgba(0,122,255,.22); transform: scale(.97); }
|
|
10
|
-
.skill-hall-entry-btn:disabled { border-color: rgba(142,142,147,.25); background: rgba(142,142,147,.1); color: var(--text-dim); cursor: not-allowed; transform: none; }
|
|
11
|
-
.header-action-btn { height: 36px; min-width: 36px; padding: 0 10px; border: 0; border-radius: 10px; background: var(--primary); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 3px; font-size: 13px; font-weight: 750; line-height: 1; white-space: nowrap; cursor: pointer; flex-shrink: 0; }
|
|
12
|
-
.header-action-btn.icon-only { width: 36px; padding: 0; }
|
|
13
|
-
.header-action-btn:active { background: #0062cc; transform: scale(.97); }
|
|
14
|
-
.btn-retry { background: #333; color: #fff; border: none; padding: 8px 16px; border-radius: 20px; margin-top: 10px; cursor: pointer; }
|
|
15
|
-
.session-card { background: var(--card-bg); border-radius: 12px; padding: 12px 16px 8px; margin-bottom: 12px; display: grid; grid-template-columns: minmax(0, 1fr) auto; column-gap: 10px; row-gap: 0; align-items: center; position: relative; }
|
|
16
|
-
.active-session-dot { display: none; }
|
|
17
|
-
.completion-dot { width: 9px; height: 9px; border-radius: 50%; background: #ff3b30; flex-shrink: 0; }
|
|
18
|
-
.session-info { flex: 1; min-width: 0; }
|
|
19
|
-
.session-info h3 { min-width: 0; margin: 0 0 4px 0; font-size: 17px; display: flex; align-items: center; gap: 8px; }
|
|
20
|
-
.session-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
21
|
-
.session-info p { margin: 0; font-size: 13px; color: var(--text-dim); }
|
|
22
|
-
.timer-count-badge { display: inline-flex; align-items: center; gap: 3px; color: #fff; background: rgba(0,122,255,0.22); border: 1px solid rgba(0,122,255,0.34); border-radius: 999px; padding: 2px 7px; font-size: 11px; font-weight: 800; flex-shrink: 0; }
|
|
23
|
-
.session-dir-row { grid-column: 1 / -1; display: flex; align-items: center; gap: 6px; width: 100%; min-width: 0; }
|
|
24
|
-
.session-dir-row p { flex: 1; min-width: 0; font-family: monospace; overflow-wrap: anywhere; }
|
|
25
|
-
.copy-dir-btn { color: var(--text-dim); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; width: 28px; height: 28px; padding: 0; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
|
|
26
|
-
.copy-dir-btn:active { color: #fff; background: rgba(255,255,255,0.12); }
|
|
27
|
-
.session-actions { display: flex; gap: 12px; align-items: center; }
|
|
28
|
-
.serverchan-toggle { width: 34px; height: 34px; padding: 0; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; background: rgba(255,255,255,0.05); color: var(--text-dim); cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
|
|
29
|
-
.serverchan-toggle.active { color: #34c759; background: rgba(52,199,89,0.13); }
|
|
30
|
-
.serverchan-toggle:active { color: #fff; background: rgba(255,255,255,0.12); }
|
|
31
|
-
.btn-join { background: rgba(255,255,255,0.1); border: none; color: var(--primary); padding: 8px 14px; border-radius: 18px; font-weight: 600; font-size: 14px; cursor: pointer; }
|
|
32
|
-
.icon-btn { color: var(--text-dim); background: none; border: none; padding: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
|
|
33
|
-
.icon-btn:active { color: var(--text); }
|
|
34
|
-
.session-edit-btn, .session-delete-btn { position: relative; }
|
|
35
|
-
.session-edit-btn::before, .session-delete-btn::before { content: ""; position: absolute; }
|
|
36
|
-
.session-edit-btn::before { inset: -9px; }
|
|
37
|
-
.session-delete-btn::before { inset: -8px; }
|
|
38
|
-
.session-edit-btn svg, .session-delete-btn svg { pointer-events: none; }
|
|
39
|
-
.btn-delete { color: #ff3b30; }
|
|
40
|
-
#modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; }
|
|
41
|
-
#tool-modal { background: var(--card-bg); width: 100%; max-width: 400px; border-radius: 16px; padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
|
|
42
|
-
#settings-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 10020; display: none; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; }
|
|
43
|
-
#settings-modal { background: var(--card-bg); width: 100%; max-width: 450px; max-height: calc(100vh - 40px); overflow-y: auto; border-radius: 16px; padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); box-sizing: border-box; }
|
|
44
|
-
.settings-modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 20px; }
|
|
45
|
-
.settings-modal-header h2 { margin: 0; font-size: 20px; }
|
|
46
|
-
.settings-modal-header p { margin: 5px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.45; }
|
|
47
|
-
.settings-close { font-size: 25px; line-height: 1; }
|
|
48
|
-
.settings-section { padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.09); }
|
|
49
|
-
.settings-section-label { margin-bottom: 12px; color: var(--text-dim); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
|
|
50
|
-
.settings-provider-header { margin-bottom: 16px; }
|
|
51
|
-
.settings-provider-header h3 { margin: 0; font-size: 16px; }
|
|
52
|
-
.settings-provider-header p { margin: 5px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.45; }
|
|
53
|
-
#settings-modal .form-field { margin-bottom: 14px; }
|
|
54
|
-
#settings-modal .form-field label { display: block; margin-bottom: 7px; color: #f5f5f7; font-size: 13px; font-weight: 650; }
|
|
55
|
-
#settings-modal input, #settings-modal select { width: 100%; min-height: 42px; padding: 9px 10px; box-sizing: border-box; border: 1px solid rgba(255,255,255,0.12); border-radius: 9px; background: rgba(255,255,255,0.08); color: #fff; font-size: 14px; outline: none; }
|
|
56
|
-
#settings-modal input:focus, #settings-modal select:focus { border-color: rgba(0,122,255,0.6); }
|
|
57
|
-
.serverchan-help { margin-top: 6px; color: var(--text-dim); font-size: 11px; line-height: 1.4; }
|
|
58
|
-
.serverchan-settings-status { min-height: 20px; margin: 4px 0 10px; color: var(--text-dim); font-size: 12px; }
|
|
59
|
-
.serverchan-settings-status.success { color: #34c759; }
|
|
60
|
-
.serverchan-settings-status.error { color: #ff6b61; }
|
|
61
|
-
.serverchan-modal-actions { display: flex; align-items: center; gap: 8px; }
|
|
62
|
-
.serverchan-action-spacer { flex: 1; }
|
|
63
|
-
#serverchan-remove-btn { display: none; }
|
|
64
|
-
#skillhub-remove-btn { display: none; }
|
|
65
|
-
.tool-modal-skill { min-height: 16px; margin: 4px 0 0; color: var(--text-dim); font-size: 12px; }
|
|
66
|
-
#skill-hall-overlay { position: fixed; inset: 0; z-index: 10010; display: none; align-items: center; justify-content: center; padding: 18px; box-sizing: border-box; background: rgba(0,0,0,0.8); }
|
|
67
|
-
#skill-hall-modal { display: flex; flex-direction: column; width: min(820px, 100%); max-height: min(760px, calc(100vh - 36px)); padding: 20px; box-sizing: border-box; border-radius: 16px; background: var(--card-bg); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
|
|
68
|
-
.skill-hall-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
|
|
69
|
-
.skill-hall-header h2 { margin: 0; font-size: 21px; }
|
|
70
|
-
.skill-hall-header p { margin: 5px 0 0; color: var(--text-dim); font-size: 12px; }
|
|
71
|
-
.skill-hall-search { width: 100%; min-height: 42px; margin-top: 16px; padding: 9px 11px; box-sizing: border-box; border: 1px solid rgba(255,255,255,0.12); border-radius: 9px; background: rgba(255,255,255,0.08); color: var(--text); font-size: 14px; outline: none; }
|
|
72
|
-
.skill-hall-search:focus { border-color: rgba(0,122,255,0.65); }
|
|
73
|
-
.skill-hall-status { min-height: 20px; padding: 10px 1px 7px; color: var(--text-dim); font-size: 12px; }
|
|
74
|
-
.skill-hall-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; overflow-y: auto; padding: 1px; }
|
|
75
|
-
.skill-hall-card { display: flex; min-height: 126px; flex-direction: column; align-items: stretch; gap: 8px; padding: 14px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: rgba(255,255,255,0.045); color: var(--text); text-align: left; cursor: pointer; }
|
|
76
|
-
.skill-hall-card:hover { border-color: rgba(0,122,255,0.55); background: rgba(0,122,255,0.09); }
|
|
77
|
-
.skill-hall-card-name { font-size: 15px; font-weight: 700; overflow-wrap: anywhere; }
|
|
78
|
-
.skill-hall-card-description { display: -webkit-box; overflow: hidden; color: var(--text-dim); font-size: 12px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
|
|
79
|
-
.skill-hall-card-meta { margin-top: auto; color: var(--primary); font-size: 11px; }
|
|
80
|
-
#app-toast { position: fixed; left: 50%; bottom: max(24px, env(safe-area-inset-bottom)); z-index: 10100; max-width: calc(100vw - 32px); transform: translate(-50%, 18px); opacity: 0; pointer-events: none; padding: 9px 14px; border-radius: 999px; background: rgba(44,44,46,0.96); border: 1px solid rgba(255,255,255,0.12); color: #fff; font-size: 13px; box-shadow: 0 10px 28px rgba(0,0,0,0.35); transition: opacity .18s ease, transform .18s ease; }
|
|
81
|
-
#app-toast.visible { opacity: 1; transform: translate(-50%, 0); }
|
|
82
|
-
.tool-item { padding: 12px; border-bottom: 1px solid #333; cursor: pointer; display: flex; align-items: center; border-radius: 8px; margin-top: 4px; }
|
|
83
|
-
.tool-item:hover { background: rgba(255,255,255,0.05); }
|
|
84
|
-
.tool-icon { width: 32px; height: 32px; background: #333; border-radius: 8px; margin-right: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
|
|
85
|
-
#usage-source-overlay { position: fixed; inset: 0; z-index: 10030; display: none; align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; background: rgba(0,0,0,0.82); }
|
|
86
|
-
#usage-source-modal { width: 100%; max-width: 420px; max-height: min(680px, 90dvh); overflow-y: auto; padding: 20px; box-sizing: border-box; border-radius: 16px; background: var(--card-bg); box-shadow: 0 20px 40px rgba(0,0,0,0.45); }
|
|
87
|
-
.usage-source-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
|
|
88
|
-
.usage-source-header h2 { margin: 0; font-size: 20px; }
|
|
89
|
-
.usage-source-header p { margin: 5px 0 0; color: var(--text-dim); font-size: 12px; }
|
|
90
|
-
.usage-source-header .icon-btn { font-size: 25px; line-height: 1; }
|
|
91
|
-
.usage-source-item { width: 100%; display: flex; align-items: center; gap: 12px; padding: 12px; margin-top: 5px; box-sizing: border-box; border: 0; border-radius: 10px; background: transparent; color: #fff; text-align: left; cursor: pointer; }
|
|
92
|
-
.usage-source-item:hover, .usage-source-item:active { background: rgba(255,255,255,0.07); }
|
|
93
|
-
.usage-source-badge { width: 38px; height: 38px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(0,122,255,0.18); color: #78b7ff; font-size: 12px; font-weight: 850; letter-spacing: .03em; }
|
|
94
|
-
.usage-source-copy { min-width: 0; flex: 1; }
|
|
95
|
-
.usage-source-copy strong { display: block; font-size: 15px; }
|
|
96
|
-
.usage-source-copy span { display: block; margin-top: 3px; color: var(--text-dim); font-size: 11px; }
|
|
97
|
-
.usage-source-arrow { color: var(--text-dim); font-size: 20px; }
|
|
98
|
-
.usage-modal-state { padding: 26px 8px; color: var(--text-dim); text-align: center; font-size: 13px; line-height: 1.5; }
|
|
99
|
-
|
|
100
|
-
#usage-view { background: #09090a; }
|
|
101
|
-
.usage-nav { min-height: 54px; flex: 0 0 auto; display: grid; grid-template-columns: minmax(90px, 1fr) minmax(0, 2fr) minmax(90px, 1fr); align-items: center; gap: 8px; padding: env(safe-area-inset-top) 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); background: rgba(18,18,18,0.96); box-sizing: content-box; }
|
|
102
|
-
.usage-nav-button { display: inline-flex; align-items: center; justify-self: start; gap: 4px; padding: 8px 0; border: 0; background: none; color: var(--primary); font-size: 15px; font-weight: 600; cursor: pointer; }
|
|
103
|
-
.usage-nav-title { min-width: 0; text-align: center; }
|
|
104
|
-
.usage-nav-title strong { display: block; overflow: hidden; color: #fff; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
|
|
105
|
-
.usage-nav-title span { display: block; min-height: 13px; margin-top: 2px; overflow: hidden; color: var(--text-dim); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
|
|
106
|
-
.usage-nav-actions { display: flex; justify-self: end; gap: 8px; }
|
|
107
|
-
.usage-nav-icon { width: 34px; height: 34px; padding: 0; border-radius: 50%; background: rgba(255,255,255,0.06); color: var(--primary); }
|
|
108
|
-
.usage-nav-icon.loading svg { animation: usage-spin .8s linear infinite; }
|
|
109
|
-
@keyframes usage-spin { to { transform: rotate(360deg); } }
|
|
110
|
-
.usage-content { flex: 1; overflow-y: auto; padding: 18px max(16px, calc((100vw - 1120px) / 2)) calc(28px + env(safe-area-inset-bottom)); box-sizing: border-box; }
|
|
111
|
-
.usage-filter-bar { width: min(100%, 680px); display: grid; grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr); align-items: end; gap: 12px; margin: 0 auto 18px; }
|
|
112
|
-
.usage-period-toggle { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 4px; border-radius: 10px; background: var(--card-bg); }
|
|
113
|
-
.usage-period-toggle button { min-height: 34px; border: 0; border-radius: 7px; background: transparent; color: var(--text-dim); font-size: 13px; font-weight: 750; cursor: pointer; }
|
|
114
|
-
.usage-period-toggle button.active { background: var(--primary); color: #fff; }
|
|
115
|
-
.usage-period-picker span { display: block; margin: 0 0 5px 2px; color: var(--text-dim); font-size: 10px; font-weight: 750; text-transform: uppercase; }
|
|
116
|
-
.usage-period-picker select { width: 100%; min-height: 42px; padding: 8px 34px 8px 11px; box-sizing: border-box; border: 1px solid rgba(255,255,255,0.09); border-radius: 10px; background: var(--card-bg); color: #fff; font-size: 13px; font-weight: 650; outline: none; }
|
|
117
|
-
.usage-state { padding: 70px 16px; color: var(--text-dim); text-align: center; font-size: 14px; line-height: 1.6; }
|
|
118
|
-
.usage-state.error { color: #ff6b61; }
|
|
119
|
-
.usage-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 12px; }
|
|
120
|
-
.usage-summary.usage-summary-totals { grid-template-columns: repeat(2, minmax(0, 1fr)); }
|
|
121
|
-
.usage-summary.usage-summary-totals .usage-summary-card:only-child { grid-column: 1 / -1; }
|
|
122
|
-
.usage-summary-card { min-width: 0; padding: 16px; border: 1px solid rgba(255,255,255,0.07); border-radius: 13px; background: var(--card-bg); }
|
|
123
|
-
.usage-summary-card .label { display: flex; align-items: center; gap: 7px; color: var(--text-dim); font-size: 12px; font-weight: 650; }
|
|
124
|
-
.usage-summary-card .dot { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; }
|
|
125
|
-
.usage-summary-card .value { display: block; margin-top: 9px; overflow: hidden; color: #fff; font-size: clamp(20px, 3vw, 29px); font-weight: 760; letter-spacing: -.03em; text-overflow: ellipsis; white-space: nowrap; }
|
|
126
|
-
.usage-summary-card .exact { display: block; margin-top: 5px; overflow: hidden; color: #66666b; font: 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-overflow: ellipsis; white-space: nowrap; }
|
|
127
|
-
.usage-panel { margin-top: 12px; padding: 17px; border: 1px solid rgba(255,255,255,0.07); border-radius: 13px; background: var(--card-bg); }
|
|
128
|
-
.usage-panel-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
|
|
129
|
-
.usage-panel-heading h2 { margin: 0; font-size: 16px; }
|
|
130
|
-
.usage-panel-heading p { margin: 5px 0 0; color: var(--text-dim); font-size: 11px; }
|
|
131
|
-
.usage-legend { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; color: var(--text-dim); font-size: 10px; }
|
|
132
|
-
.usage-legend span { display: inline-flex; align-items: center; gap: 4px; }
|
|
133
|
-
.usage-legend i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; }
|
|
134
|
-
.usage-summary-card .dot.tokens { background: #0a84ff; }
|
|
135
|
-
.usage-summary-card .dot.cost { background: #ff9f0a; }
|
|
136
|
-
.usage-chart { display: flex; flex-direction: column; gap: 9px; }
|
|
137
|
-
.usage-chart-row { display: grid; grid-template-columns: 82px minmax(80px, 1fr) 82px; align-items: center; gap: 10px; min-height: 18px; }
|
|
138
|
-
.usage-chart-label { overflow: hidden; color: #b5b5ba; font: 10px ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-overflow: ellipsis; white-space: nowrap; }
|
|
139
|
-
.usage-chart-track { height: 10px; display: flex; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.06); }
|
|
140
|
-
.usage-chart-track span { display: block; height: 100%; min-width: 0; }
|
|
141
|
-
.usage-chart-total { color: #77777c; font-size: 10px; text-align: right; white-space: nowrap; }
|
|
142
|
-
.usage-table-wrap { overflow-x: auto; }
|
|
143
|
-
.usage-table { width: 100%; border-collapse: collapse; font-size: 12px; }
|
|
144
|
-
.usage-table th { padding: 8px 10px; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--text-dim); font-size: 10px; font-weight: 750; text-align: right; white-space: nowrap; }
|
|
145
|
-
.usage-table th:first-child, .usage-table td:first-child { padding-left: 0; text-align: left; }
|
|
146
|
-
.usage-table th:last-child, .usage-table td:last-child { padding-right: 0; }
|
|
147
|
-
.usage-table td { padding: 11px 10px; border-bottom: 1px solid rgba(255,255,255,0.055); color: #d8d8dc; text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
|
|
148
|
-
.usage-table tr:last-child td { border-bottom: 0; }
|
|
149
|
-
.usage-table tfoot td { border-top: 1px solid rgba(255,255,255,0.12); border-bottom: 0; color: #fff; font-weight: 750; }
|
|
150
|
-
.usage-models { max-width: 220px; overflow: hidden; color: var(--text-dim); text-overflow: ellipsis; }
|
|
151
|
-
.usage-pricing-note { margin: 14px 3px 0; color: #6f6f74; font-size: 10px; line-height: 1.5; text-align: center; }
|
|
152
|
-
.usage-empty { padding: 30px 10px; color: var(--text-dim); text-align: center; font-size: 13px; }
|
|
153
|
-
#terminal-view { background: #000; overflow-anchor: none; position: relative; }
|
|
154
|
-
#top-ui { flex-shrink: 0; background: #121212; border-bottom: 1px solid #222; z-index: 2000; padding-top: env(safe-area-inset-top); position: relative; }
|
|
155
|
-
#nav-bar { display: flex; align-items: center; padding: 8px 14px; border-bottom: 1px solid #222; }
|
|
156
|
-
#back-btn { color: var(--primary); font-size: 16px; font-weight: 500; display: flex; align-items: center; text-decoration: none; background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; }
|
|
157
|
-
#session-title { flex: 1; text-align: center; font-weight: 600; font-size: 16px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 0 10px; min-width: 0; }
|
|
158
|
-
#terminal-controls { position: absolute; top: 100%; left: 0; right: 0; z-index: 2200; background: linear-gradient(180deg, rgba(18,18,18,0.98) 0%, rgba(18,18,18,0.92) 78%, rgba(18,18,18,0) 100%); border-bottom: 1px solid rgba(255,255,255,0.06); }
|
|
159
|
-
#terminal-controls-spacer { flex: 0 0 var(--terminal-controls-rest-height); height: var(--terminal-controls-rest-height); background: #000; }
|
|
160
|
-
#input-row { display: flex; align-items: flex-end; width: min(100%, var(--control-content-max)); margin: 0 auto; padding: 10px 14px 8px 14px; box-sizing: border-box; }
|
|
161
|
-
#cmd-input { flex: 1; min-height: 38px; max-height: 150px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 19px; color: #fff; padding: 9px 16px; font-size: 16px; outline: none; resize: none; overflow-y: auto; line-height: 20px; box-sizing: border-box; transition: background 0.18s ease, border-color 0.18s ease; }
|
|
162
|
-
#cmd-input::placeholder { color: rgba(255,255,255,0.45); }
|
|
163
|
-
#cmd-input:focus { background: rgba(255,255,255,0.1); border-color: rgba(0,122,255,0.42); color: #fff; }
|
|
164
|
-
#send-btn { width: 44px; height: 38px; margin-left: 10px; background: #007aff; border: none; border-radius: 19px; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; }
|
|
165
|
-
#send-btn:disabled { background: color-mix(in srgb, var(--text-dim) 34%, var(--surface)); color: var(--text-dim); opacity: .72; cursor: not-allowed; }
|
|
166
|
-
#attachment-strip { display: none; width: min(calc(100% - 28px), var(--control-content-max)); margin: -3px auto 2px auto; gap: 7px; overflow-x: auto; padding: 0 0 4px 0; box-sizing: border-box; scrollbar-width: none; }
|
|
167
|
-
#attachment-strip.active { display: flex; }
|
|
168
|
-
#attachment-strip::-webkit-scrollbar { display: none; }
|
|
169
|
-
.attachment-chip { min-width: 0; max-width: 210px; display: flex; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid rgba(0,122,255,0.45); border-radius: 10px; background: rgba(0,122,255,0.14); color: #e9f2ff; font-size: 12px; }
|
|
170
|
-
.attachment-chip.uploading { border-color: rgba(255,159,10,0.55); background: rgba(255,159,10,0.12); }
|
|
171
|
-
.attachment-chip.file { border-color: var(--line); background: var(--surface-soft); color: var(--text); }
|
|
172
|
-
.attachment-chip-content { min-width: 0; flex: 1; }
|
|
173
|
-
.attachment-chip-name { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
174
|
-
.attachment-chip-icon { width: 17px; height: 17px; flex: 0 0 17px; }
|
|
175
|
-
.attachment-progress { display: block; height: 5px; margin-top: 5px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,0.16); }
|
|
176
|
-
.attachment-progress > span { display: block; height: 100%; border-radius: inherit; background: #ff9f0a; transition: width .15s ease; }
|
|
177
|
-
.attachment-progress.estimated > span { background: repeating-linear-gradient(90deg, #ff9f0a 0 12px, #ffd37b 12px 24px); background-size: 48px 100%; animation: attachment-upload-pulse .75s linear infinite; }
|
|
178
|
-
.attachment-status { display: block; margin-top: 3px; color: #ffd59a; font-size: 10px; }
|
|
179
|
-
@keyframes attachment-upload-pulse { from { background-position: 0 0; } to { background-position: 48px 0; } }
|
|
180
|
-
.attachment-remove { width: 19px; height: 19px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,0.16); color: #fff; font-size: 15px; line-height: 18px; cursor: pointer; flex: 0 0 auto; }
|
|
181
|
-
#timed-send-panel { display: none; margin: 0 14px 10px 14px; padding: 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; background: rgba(28,28,30,0.98); box-sizing: border-box; }
|
|
182
|
-
#timed-send-panel.active { display: block; }
|
|
183
|
-
.timed-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 8px; align-items: center; }
|
|
184
|
-
.timed-row select { min-width: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; padding: 8px 9px; font-size: 13px; outline: none; box-sizing: border-box; }
|
|
185
|
-
.timed-preview { margin-top: 8px; color: #d1d5db; font-size: 12px; line-height: 1.4; }
|
|
186
|
-
.timed-editor-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 10px; }
|
|
187
|
-
#timed-tag-rail { position: absolute; left: 4px; top: 58px; display: flex; flex-direction: column; gap: 6px; z-index: 2400; pointer-events: none; }
|
|
188
|
-
.timed-tag { width: 54px; min-height: 34px; border: 1px solid rgba(255,255,255,0.14); border-left: 0; border-radius: 0 11px 11px 0; background: rgba(0,122,255,0.24); color: #fff; backdrop-filter: blur(12px); font-size: 12px; font-weight: 800; letter-spacing: 0; cursor: pointer; display: flex; align-items: center; justify-content: center; text-align: center; line-height: 1.08; white-space: pre-line; box-shadow: 0 8px 20px rgba(0,0,0,0.25); pointer-events: auto; }
|
|
189
|
-
.timed-tag.active { background: rgba(0,122,255,0.42); border-color: rgba(255,255,255,0.28); }
|
|
190
|
-
.timed-tag:active { transform: scale(0.96); }
|
|
191
|
-
#shortcut-rail { display: flex; gap: 28px; overflow-x: auto; overscroll-behavior-x: contain; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-snap-type: x mandatory; padding: 0 14px 12px 14px; box-sizing: border-box; scroll-padding-left: 14px; scroll-padding-right: 14px; }
|
|
192
|
-
#shortcut-rail::-webkit-scrollbar { display: none; }
|
|
193
|
-
.shortcut-group { flex: 0 0 calc(100vw - 28px); display: grid; gap: 8px; scroll-snap-align: start; }
|
|
194
|
-
.simple-shortcuts { grid-template-columns: repeat(6, minmax(0, 1fr)); }
|
|
195
|
-
.complex-shortcuts { grid-template-columns: repeat(6, minmax(0, 1fr)); }
|
|
196
|
-
.key-btn, .command-key { flex: 0 0 auto; min-width: 0; height: 40px; border: 1px solid rgba(255,255,255,0.11); border-radius: 12px; background: rgba(255,255,255,0.08); color: #d1d5db; font-size: 12px; font-weight: 700; letter-spacing: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; white-space: nowrap; }
|
|
197
|
-
.key-btn { font-size: 11px; }
|
|
198
|
-
.shortcut-group .key-btn, .shortcut-group .command-key { width: 100%; }
|
|
199
|
-
.key-btn:active, .command-key:active { background: rgba(255,255,255,0.14); color: #fff; }
|
|
200
|
-
.key-btn.active { background: rgba(0, 122, 255, 0.25); border-color: #007aff; color: #00a2ff; }
|
|
201
|
-
#terminal-container { flex: 1; min-height: 0; width: 100%; background: #000; position: relative; overflow: hidden; overflow-anchor: none; }
|
|
202
|
-
#terminal { height: 100%; width: 100%; }
|
|
203
|
-
#claude-chat-container { display: none; flex: 1; min-height: 0; overflow-y: auto; background: #050505; padding: 12px 12px 24px 12px; box-sizing: border-box; -webkit-overflow-scrolling: touch; }
|
|
204
|
-
.claude-conversation { width: min(100%, var(--chat-content-max)); min-height: 100%; margin: 0 auto; }
|
|
205
|
-
#codex-chat-container { display: none; flex: 1; min-height: 0; overflow-y: auto; background: #050505; padding: 12px 12px 24px 12px; box-sizing: border-box; -webkit-overflow-scrolling: touch; }
|
|
206
|
-
.codex-lazy-detail { padding: 10px 12px; color: var(--text-dim); font-size: 12px; }
|
|
207
|
-
.codex-conversation { width: min(100%, var(--chat-content-max)); margin: 0 auto; }
|
|
208
|
-
.codex-working-indicator, .claude-working-indicator { position: sticky; top: 0; z-index: 4; width: 28px; height: 28px; margin: 0 0 -28px auto; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; background: rgba(28,28,30,.68); box-shadow: 0 5px 16px rgba(0,0,0,.24); backdrop-filter: blur(8px); pointer-events: none; }
|
|
209
|
-
.codex-working-indicator::after, .claude-working-indicator::after { content: ''; position: absolute; inset: 8px; border: 1.5px solid rgba(255,255,255,.7); border-top-color: transparent; border-radius: 50%; animation: codex-spin .8s linear infinite; }
|
|
210
|
-
.codex-skill-bubble { position: relative; z-index: 5; display: flex; width: max-content; max-width: min(280px, 72vw); min-height: 28px; padding: 0 4px 0 10px; align-items: center; gap: 7px; border: 1px solid rgba(0,122,255,.42); border-bottom: 0; border-radius: 12px 12px 0 0; background: rgba(21,47,78,.96); color: #eaf3ff; box-shadow: 0 -3px 12px rgba(0,0,0,.12); font-size: 11px; font-weight: 750; }
|
|
211
|
-
.codex-skill-bubble-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
212
|
-
.codex-skill-bubble-close { width: 23px; height: 23px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; font-size: 16px; line-height: 1; }
|
|
213
|
-
.codex-message-block { max-width: 100%; margin: 0 0 12px; }
|
|
214
|
-
.codex-message-block.user { max-width: 92%; margin-left: auto; }
|
|
215
|
-
.codex-message { max-width: 100%; margin: 0; color: #f5f5f7; font-size: 14px; line-height: 1.45; overflow-wrap: anywhere; }
|
|
216
|
-
.codex-message.user { padding: 8px 12px; border: 1px solid rgba(0,122,255,.32); border-radius: 12px; background: rgba(0,122,255,.24); }
|
|
217
|
-
.codex-message.event { color: var(--text-dim); text-align: center; font-size: 12px; }
|
|
218
|
-
.codex-message-meta { display: flex; width: 100%; align-items: center; gap: 7px; flex-wrap: wrap; margin-top: 4px; padding: 0 2px; box-sizing: border-box; }
|
|
219
|
-
.codex-message-block.user .codex-message-meta { justify-content: flex-end; }
|
|
220
|
-
.codex-message-time { display: block; flex: 0 0 auto; width: max-content; color: #8e8e93; font-size: 10px; font-weight: 500; line-height: 1; font-variant-numeric: tabular-nums; }
|
|
221
|
-
.codex-context-meter { --context-color: #30d158; position: relative; isolation: isolate; display: inline-flex; min-width: 128px; height: 16px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid color-mix(in srgb, var(--context-color) 42%, transparent); border-radius: 8px; background: rgba(255,255,255,.055); color: #d9fbe2; font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, monospace; font-variant-numeric: tabular-nums; white-space: nowrap; }
|
|
222
|
-
.codex-context-meter::before { content: ''; position: absolute; inset: 0 auto 0 0; z-index: -1; width: var(--context-remaining); background: color-mix(in srgb, var(--context-color) 28%, transparent); }
|
|
223
|
-
.codex-context-meter.warn { --context-color: #ffd60a; color: #fff3a6; }
|
|
224
|
-
.codex-context-meter.danger { --context-color: #ff453a; color: #ffd0cc; }
|
|
225
|
-
.codex-compaction-card { display: flex; align-items: center; gap: 10px; margin: 10px 0 14px; padding: 10px 12px; border: 1px solid rgba(191,90,242,.3); border-radius: 10px; background: linear-gradient(135deg, rgba(191,90,242,.13), rgba(94,92,230,.08)); color: #f5f5f7; }
|
|
226
|
-
.codex-compaction-icon { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 50%; background: rgba(191,90,242,.18); color: #d6a5ff; font-size: 15px; }
|
|
227
|
-
.codex-compaction-title { font-size: 12px; font-weight: 800; }
|
|
228
|
-
.codex-compaction-meta { margin-top: 3px; color: #a9a9b0; font-size: 10px; font-variant-numeric: tabular-nums; }
|
|
229
|
-
.codex-compaction-card.running .codex-compaction-icon { animation: codex-pulse 1.1s ease-in-out infinite alternate; }
|
|
230
|
-
.codex-warning-card { display: flex; align-items: flex-start; gap: 10px; margin: 10px 0 14px; padding: 10px 12px; border: 1px solid rgba(255,204,0,.34); border-radius: 10px; background: linear-gradient(135deg, rgba(255,204,0,.13), rgba(255,159,10,.07)); color: #f5f5f7; }
|
|
231
|
-
.codex-warning-icon { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 50%; background: rgba(255,204,0,.16); color: #ffd60a; font-size: 15px; font-weight: 900; }
|
|
232
|
-
.codex-warning-title { color: #ffe680; font-size: 12px; font-weight: 800; }
|
|
233
|
-
.codex-warning-text { margin-top: 3px; color: #d8d3bf; font-size: 11px; line-height: 1.4; overflow-wrap: anywhere; }
|
|
234
|
-
.codex-status-card { margin: 10px 0 14px; border: 1px solid rgba(100,210,255,.2); border-radius: 10px; background: rgba(28,28,30,.72); padding: 11px; color: #f5f5f7; }
|
|
235
|
-
.codex-status-title { margin-bottom: 9px; color: #64d2ff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
|
|
236
|
-
.codex-status-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
|
|
237
|
-
.codex-status-item { min-width: 0; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: rgba(255,255,255,.035); padding: 8px; }
|
|
238
|
-
.codex-status-label { color: #8e8e93; font-size: 10px; font-weight: 800; text-transform: uppercase; }
|
|
239
|
-
.codex-status-value { margin-top: 3px; color: #f5f5f7; font-size: 12px; font-weight: 700; overflow-wrap: anywhere; }
|
|
240
|
-
.codex-tool { border: 1px solid rgba(255,255,255,.1); border-radius: 8px; background: rgba(255,255,255,.045); overflow: hidden; margin: 8px 0; color: #d1d5db; }
|
|
241
|
-
.codex-tool summary { list-style: none; cursor: pointer; }
|
|
242
|
-
.codex-tool summary::-webkit-details-marker { display: none; }
|
|
243
|
-
.codex-tool-header { display: flex; align-items: center; min-width: 0; gap: 8px; min-height: 34px; padding: 6px 9px; }
|
|
244
|
-
.codex-tool-icon { width: 19px; flex: 0 0 19px; color: #c7c7cc; font: 700 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; text-align: center; }
|
|
245
|
-
.codex-tool-title { flex: 0 1 auto; min-width: 0; color: #f5f5f7; font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
246
|
-
.codex-tool-command { flex: 1; min-width: 0; color: #a9a9b0; font: 12px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
247
|
-
.codex-tool-state { flex: 0 0 auto; color: #8e8e93; font-size: 11px; }
|
|
248
|
-
.codex-tool-duration { flex: 0 0 auto; color: #6f6f76; font-size: 10px; font-variant-numeric: tabular-nums; }
|
|
249
|
-
.codex-tool-state.running::before { content: ''; display: inline-block; width: 9px; height: 9px; margin-right: 5px; border: 1.5px solid #8e8e93; border-top-color: transparent; border-radius: 50%; animation: codex-spin .8s linear infinite; vertical-align: -1px; }
|
|
250
|
-
.codex-tool.error { border-color: rgba(255,59,48,.38); background: rgba(255,59,48,.07); }
|
|
251
|
-
.codex-tool-body { border-top: 1px solid rgba(255,255,255,.08); padding: 9px 10px; }
|
|
252
|
-
.codex-tool-code { margin: 0; max-height: 320px; overflow: auto; color: #c7c7cc; white-space: pre-wrap; overflow-wrap: anywhere; font: 12px/1.42 ui-monospace, SFMono-Regular, Menlo, monospace; }
|
|
253
|
-
.codex-work-group { margin: 8px 0; border-left: 1px solid rgba(255,255,255,.12); padding-left: 8px; }
|
|
254
|
-
.codex-work-group > summary { list-style: none; display: flex; align-items: center; gap: 7px; min-height: 30px; color: #a9a9b0; cursor: pointer; font-size: 12px; }
|
|
255
|
-
.codex-work-group > summary::-webkit-details-marker { display: none; }
|
|
256
|
-
.codex-work-group > summary::before { content: '›'; width: 12px; color: #8e8e93; font-size: 17px; transform-origin: center; }
|
|
257
|
-
.codex-work-group[open] > summary::before { transform: rotate(90deg); }
|
|
258
|
-
.codex-work-group-body { padding-left: 2px; }
|
|
259
|
-
.codex-subagent-group { border-left-color: rgba(100,210,255,.24); }
|
|
260
|
-
.codex-subagent-group > summary { color: #8e9aa6; }
|
|
261
|
-
.codex-subagent-group > summary::before { color: #64a9d1; }
|
|
262
|
-
.codex-subagent-message { margin: 7px 0; padding: 7px 9px; border-left: 1px solid rgba(255,255,255,.1); color: #c7c7cc; font-size: 12px; line-height: 1.42; overflow-wrap: anywhere; }
|
|
263
|
-
.codex-subagent-message.task { color: #8e8e93; font-style: italic; }
|
|
264
|
-
.codex-patch-file { border-top: 1px solid rgba(255,255,255,.08); }
|
|
265
|
-
.codex-patch-file:first-child { border-top: 0; }
|
|
266
|
-
.codex-patch-file > summary { display: flex; align-items: center; gap: 8px; padding: 8px 10px; color: #d1d5db; font: 12px/1.35 ui-monospace, SFMono-Regular, Menlo, monospace; }
|
|
267
|
-
.codex-patch-file .path { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
268
|
-
.codex-patch-kind { color: #8e8e93; font-family: system-ui, sans-serif; }
|
|
269
|
-
.codex-diff { overflow-x: auto; border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.24); font: 11px/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; }
|
|
270
|
-
.codex-diff-line { min-width: max-content; padding: 0 10px; white-space: pre; color: #c7c7cc; }
|
|
271
|
-
.codex-diff-line.add { color: #b7e4c7; background: rgba(52,199,89,.1); }
|
|
272
|
-
.codex-diff-line.del { color: #ffb3ad; background: rgba(255,59,48,.1); }
|
|
273
|
-
.codex-diff-line.hunk { color: #64b5f6; background: rgba(0,122,255,.08); }
|
|
274
|
-
.codex-permission-result { color: #a9a9b0; font-size: 12px; margin-top: 7px; }
|
|
275
|
-
.codex-inline-permission { border-top: 1px solid rgba(255,204,0,.28); padding: 9px 10px 10px; background: rgba(255,204,0,.055); }
|
|
276
|
-
.codex-inline-permission-title { color: #f5f5f7; font-size: 12px; font-weight: 700; }
|
|
277
|
-
.codex-inline-permission .claude-permission-actions { margin-top: 8px; }
|
|
278
|
-
.claude-approval-jump, .codex-approval-jump { cursor: pointer; font: inherit; line-height: 1; }
|
|
279
|
-
.claude-approval-jump:active,
|
|
280
|
-
.codex-approval-jump:active { background: rgba(255,204,0,0.18); transform: translateY(1px); }
|
|
281
|
-
.claude-approval-focus,
|
|
282
|
-
.codex-approval-focus { animation: codex-approval-focus 1.8s ease-out; scroll-margin: 120px 0 180px; }
|
|
283
|
-
@keyframes codex-approval-focus {
|
|
284
|
-
0%, 28% { box-shadow: 0 0 0 3px rgba(255,204,0,.92), 0 0 28px rgba(255,204,0,.45); background-color: rgba(255,204,0,.18); }
|
|
285
|
-
100% { box-shadow: 0 0 0 0 rgba(255,204,0,0); }
|
|
286
|
-
}
|
|
287
|
-
.claude-inline-permission { margin-top: 10px; padding: 10px; border-top: 1px solid rgba(255,204,0,0.22); background: rgba(255,204,0,0.04); }
|
|
288
|
-
.claude-inline-permission-title { margin-bottom: 7px; color: #ffcc00; font-weight: 800; }
|
|
289
|
-
@keyframes codex-spin { to { transform: rotate(360deg); } }
|
|
290
|
-
@keyframes codex-pulse { to { box-shadow: 0 0 0 5px rgba(191,90,242,.08); transform: scale(.92); } }
|
|
291
|
-
#codex-control-panel { display: none; width: min(100%, var(--control-content-max)); margin: 0 auto; padding: 8px 14px 10px; border-bottom: 1px solid #222; background: #121212; box-sizing: border-box; }
|
|
292
|
-
.codex-control-rail { display: flex; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
|
|
293
|
-
.codex-control-rail::-webkit-scrollbar { display: none; }
|
|
294
|
-
.codex-control-page { flex: 0 0 100%; display: grid; grid-template-columns: repeat(5, minmax(0, 116px)); grid-template-rows: auto; justify-content: center; gap: clamp(2px, .8vw, 7px); align-items: center; white-space: nowrap; scroll-snap-align: start; box-sizing: border-box; }
|
|
295
|
-
.codex-control-page > * { width: 100%; min-width: 0; overflow: hidden; }
|
|
296
|
-
.codex-control-page .claude-ctrl-btn, .codex-control-page .codex-select-label { padding-left: clamp(2px, 1vw, 10px); padding-right: clamp(2px, 1vw, 10px); font-size: clamp(8px, 2.2vw, 11px); text-overflow: ellipsis; overflow: hidden; }
|
|
297
|
-
.codex-select-control { position: relative; display: block; min-width: 0; height: 32px; }
|
|
298
|
-
.codex-select-label { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; box-sizing: border-box; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(255,255,255,.08); color: #f5f5f7; font-size: 11px; font-weight: 800; white-space: nowrap; }
|
|
299
|
-
.codex-select-control:focus-within .codex-select-label { background: rgba(255,255,255,.14); border-color: rgba(0,122,255,.45); }
|
|
300
|
-
.codex-select { appearance: none; position: absolute; inset: 0; width: 100%; min-width: 0; height: 100%; opacity: 0; cursor: pointer; }
|
|
301
|
-
.codex-select option { background: #1c1c1e; color: #fff; }
|
|
302
|
-
#codex-model-panel, #codex-resume-panel, #codex-fork-panel, #codex-prompt-panel, #codex-skill-panel { display: none; margin-top: 8px; border: 1px solid rgba(255,255,255,.1); background: rgba(28,28,30,.99); border-radius: 8px; box-shadow: 0 16px 36px rgba(0,0,0,.34); overflow: hidden; }
|
|
303
|
-
#codex-model-panel.active, #codex-resume-panel.active, #codex-fork-panel.active, #codex-prompt-panel.active, #codex-skill-panel.active { display: block; }
|
|
304
|
-
#codex-model-panel { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); max-height: min(300px, 42dvh); }
|
|
305
|
-
#codex-model-panel.active { display: grid; }
|
|
306
|
-
.codex-picker-column { min-width: 0; overflow-y: auto; }
|
|
307
|
-
.codex-picker-column + .codex-picker-column { border-left: 1px solid rgba(255,255,255,.08); }
|
|
308
|
-
.codex-picker-option { display: block; width: 100%; min-height: 38px; padding: 8px 10px; border: 0; border-bottom: 1px solid rgba(255,255,255,.06); background: transparent; color: #f5f5f7; text-align: left; font-size: 12px; font-weight: 700; overflow-wrap: anywhere; }
|
|
309
|
-
.codex-picker-option.selected { background: rgba(0,122,255,.18); color: #fff; }
|
|
310
|
-
#codex-state-bar { display: flex; align-items: center; gap: 7px; min-height: 24px; margin-top: 8px; color: var(--text-dim); font-size: 11px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
|
|
311
|
-
#codex-state-bar::-webkit-scrollbar { display: none; }
|
|
312
|
-
#codex-resume-panel, #codex-fork-panel { max-height: min(280px, 38dvh); overflow-y: auto; }
|
|
313
|
-
#codex-prompt-panel { max-height: min(440px, 52dvh); overflow-y: auto; }
|
|
314
|
-
#codex-skill-panel { max-height: min(360px, 46dvh); overflow-y: auto; }
|
|
315
|
-
.codex-skill-header { position: sticky; top: 0; z-index: 3; padding: 9px 11px 10px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(28,28,30,.97); color: var(--text-dim); font-size: 11px; font-weight: 800; }
|
|
316
|
-
.codex-skill-header-row, .codex-skill-section-title { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
|
|
317
|
-
.codex-skill-search { width: 100%; height: 34px; margin-top: 8px; padding: 0 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 9px; outline: none; background: rgba(255,255,255,.07); color: #f5f5f7; font-size: 12px; box-sizing: border-box; }
|
|
318
|
-
.codex-skill-search::placeholder { color: #77777e; }
|
|
319
|
-
.codex-skill-search:focus { border-color: rgba(0,122,255,.65); background: rgba(255,255,255,.1); box-shadow: 0 0 0 2px rgba(0,122,255,.14); }
|
|
320
|
-
.codex-skill-section + .codex-skill-section { border-top: 1px solid rgba(255,255,255,.09); }
|
|
321
|
-
.codex-skill-section-title { position: sticky; top: 62px; z-index: 2; min-height: 26px; padding: 0 11px; background: rgba(36,36,39,.98); color: #8e8e93; font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
|
|
322
|
-
.codex-skill-item { display: block; width: 100%; padding: 10px 11px; border: 0; border-bottom: 1px solid rgba(255,255,255,.06); background: transparent; color: #f5f5f7; text-align: left; cursor: pointer; }
|
|
323
|
-
.codex-skill-item.selected { background: rgba(0,122,255,.18); }
|
|
324
|
-
.codex-skill-item-name { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; font-weight: 800; }
|
|
325
|
-
.codex-skill-source { flex: 0 0 auto; padding: 2px 6px; border: 1px solid rgba(0,122,255,.28); border-radius: 999px; background: rgba(0,122,255,.1); color: #79b8ff; font-size: 9px; text-transform: uppercase; }
|
|
326
|
-
.codex-skill-description { display: block; margin-top: 4px; color: #a9a9b0; font-size: 11px; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; }
|
|
327
|
-
.codex-skill-meta { display: flex; min-width: 0; margin-top: 7px; gap: 5px; flex-wrap: wrap; }
|
|
328
|
-
.codex-skill-directory { display: block; min-width: 0; max-width: 100%; flex: 1 1 180px; padding: 2px 6px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.055); color: #8e8e93; font: 9px/1.25 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; text-overflow: ellipsis; white-space: nowrap; box-sizing: border-box; }
|
|
329
|
-
.codex-skill-empty, .codex-skill-error { padding: 12px; }
|
|
330
|
-
.codex-skill-error { color: #ff6b61; }
|
|
331
|
-
.codex-prompt-header { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 11px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(28,28,30,.97); color: var(--text-dim); font-size: 11px; font-weight: 800; }
|
|
332
|
-
.codex-prompt-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: end; padding: 10px 11px; border-bottom: 1px solid rgba(255,255,255,.06); }
|
|
333
|
-
.codex-prompt-item:last-of-type { border-bottom: 0; }
|
|
334
|
-
.codex-prompt-text { display: -webkit-box; width: 100%; min-width: 0; max-height: calc(1.42em * 4); overflow: hidden; padding: 0; border: 0; background: transparent; color: #f5f5f7; font: 12px/1.42 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; text-align: left; white-space: pre-wrap; overflow-wrap: anywhere; -webkit-box-orient: vertical; -webkit-line-clamp: 4; cursor: pointer; }
|
|
335
|
-
.codex-prompt-text.expanded { display: block; max-height: none; -webkit-line-clamp: initial; }
|
|
336
|
-
.codex-prompt-actions { display: flex; min-width: 64px; flex-direction: column; align-items: flex-end; gap: 6px; }
|
|
337
|
-
.codex-prompt-time { color: #77777e; font-size: 10px; font-variant-numeric: tabular-nums; white-space: nowrap; }
|
|
338
|
-
.codex-prompt-copy { min-width: 54px; min-height: 28px; padding: 0 9px; }
|
|
339
|
-
.codex-prompt-footer { padding: 9px 11px; text-align: center; }
|
|
340
|
-
.codex-prompt-footer .small-btn { min-width: 112px; }
|
|
341
|
-
.claude-message { max-width: 92%; margin: 0 0 10px 0; padding: 10px 12px; border-radius: 8px; overflow-wrap: anywhere; line-height: 1.45; font-size: 14px; }
|
|
342
|
-
.claude-message-block { max-width: 100%; margin: 0 0 12px; }
|
|
343
|
-
.claude-message-block > .claude-message { margin-bottom: 0; }
|
|
344
|
-
.claude-message-block.user { max-width: 92%; margin-left: auto; }
|
|
345
|
-
.claude-message-block.user > .claude-message { max-width: 100%; }
|
|
346
|
-
.claude-message-time { display: block; width: max-content; margin-top: 4px; padding: 0 2px; color: #8e8e93; font-size: 10px; font-weight: 500; line-height: 1; font-variant-numeric: tabular-nums; }
|
|
347
|
-
.claude-message-block.user .claude-message-time { margin-left: auto; }
|
|
348
|
-
.codex-message-skills { position: relative; z-index: 1; display: flex; justify-content: flex-start; gap: 5px; margin-bottom: -1px; }
|
|
349
|
-
.codex-message-skill { display: inline-flex; max-width: min(220px, 58vw); min-height: 18px; align-items: center; padding: 2px 8px; border: 1px solid rgba(0,122,255,.32); border-bottom: 0; border-radius: 9px 9px 0 0; background: rgba(0,122,255,.16); color: #8fc5ff; font-size: 9px; font-weight: 750; line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
350
|
-
.codex-message-skills + .codex-message.user { border-top-left-radius: 4px; }
|
|
351
|
-
.claude-message-attachments { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
|
|
352
|
-
.claude-message-attachment { max-width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 3px 7px; color: #d1d5db; background: rgba(255,255,255,.07); font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
353
|
-
.message-attachment-icon { width: 13px; height: 13px; flex: 0 0 13px; margin-right: 4px; vertical-align: -2px; }
|
|
354
|
-
.claude-message.user { margin-left: auto; background: rgba(0,122,255,0.24); border: 1px solid rgba(0,122,255,0.32); color: #fff; border-radius: 12px; padding-top: 7px; padding-bottom: 7px; }
|
|
355
|
-
.claude-message.assistant { max-width: 100%; background: transparent; border: 0; color: #f5f5f7; padding: 0 4px; margin: 0 0 12px 0; }
|
|
356
|
-
.claude-message.event { max-width: 100%; background: transparent; border: 0; color: var(--text-dim); font-size: 12px; padding: 3px 2px; text-align: center; }
|
|
357
|
-
.claude-message.error { color: #ff6b61; }
|
|
358
|
-
.claude-usage-card.error, .claude-context-card.error { border-color: rgba(255,107,97,.3); }
|
|
359
|
-
.claude-usage-card.error .codex-status-title,
|
|
360
|
-
.claude-usage-card.error .codex-status-value,
|
|
361
|
-
.claude-context-card.error .codex-status-title,
|
|
362
|
-
.claude-context-card.error .codex-status-value { color: #ff6b61; }
|
|
363
|
-
.claude-md { white-space: normal; }
|
|
364
|
-
.claude-md > :first-child { margin-top: 0; }
|
|
365
|
-
.claude-md > :last-child { margin-bottom: 0; }
|
|
366
|
-
.claude-md p { margin: 0 0 8px 0; }
|
|
367
|
-
.claude-md h1, .claude-md h2, .claude-md h3, .claude-md h4 { margin: 12px 0 7px 0; line-height: 1.22; font-weight: 800; letter-spacing: 0; }
|
|
368
|
-
.claude-md h1 { font-size: 20px; }
|
|
369
|
-
.claude-md h2 { font-size: 18px; }
|
|
370
|
-
.claude-md h3 { font-size: 16px; }
|
|
371
|
-
.claude-md h4 { font-size: 15px; }
|
|
372
|
-
.claude-md ul, .claude-md ol { margin: 0 0 9px 0; padding-left: 20px; }
|
|
373
|
-
.claude-md li { margin: 4px 0; }
|
|
374
|
-
.claude-md code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 1px 4px; }
|
|
375
|
-
.claude-md pre { margin: 8px 0 10px 0; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.34); border-radius: 8px; overflow: auto; }
|
|
376
|
-
.claude-md pre code { display: block; padding: 11px 12px; background: transparent; border: 0; border-radius: 0; white-space: pre; line-height: 1.45; }
|
|
377
|
-
.claude-md blockquote { margin: 8px 0; padding: 2px 0 2px 10px; border-left: 3px solid rgba(255,255,255,0.22); color: #c7c7cc; }
|
|
378
|
-
.claude-md table { width: 100%; border-collapse: collapse; margin: 8px 0 10px 0; font-size: 13px; display: block; overflow-x: auto; }
|
|
379
|
-
.claude-md th, .claude-md td { border: 1px solid rgba(255,255,255,0.12); padding: 6px 8px; text-align: left; vertical-align: top; }
|
|
380
|
-
.claude-md th { background: rgba(255,255,255,0.07); color: #fff; }
|
|
381
|
-
.claude-md a { color: #64b5ff; text-decoration: none; }
|
|
382
|
-
.claude-md img { max-width: 100%; border-radius: 8px; margin: 6px 0; }
|
|
383
|
-
.claude-md hr { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 12px 0; }
|
|
384
|
-
.claude-command-chip { display: inline-flex; align-items: center; max-width: 100%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.08); color: #f5f5f7; border-radius: 999px; padding: 4px 9px; font-size: 12px; font-weight: 800; }
|
|
385
|
-
.claude-tool { max-width: 100%; margin: 0 0 10px 0; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.045); border-radius: 8px; color: #d1d5db; font-size: 13px; overflow: hidden; overflow-wrap: anywhere; }
|
|
386
|
-
.claude-tool strong { color: #fff; }
|
|
387
|
-
.claude-tool-card { display: block; }
|
|
388
|
-
.claude-tool-card summary { list-style: none; cursor: pointer; }
|
|
389
|
-
.claude-tool-card summary::-webkit-details-marker { display: none; }
|
|
390
|
-
.claude-tool-header { display: flex; align-items: center; gap: 8px; min-height: 30px; padding: 7px 9px; color: #f5f5f7; }
|
|
391
|
-
.claude-tool-icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; color: var(--text-dim); flex: 0 0 auto; }
|
|
392
|
-
.claude-tool-icon::before { content: attr(data-icon); font-size: 11px; font-weight: 800; line-height: 1; }
|
|
393
|
-
.claude-tool-title { font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px; }
|
|
394
|
-
.claude-tool-status { color: var(--text-dim); font-size: 12px; white-space: nowrap; }
|
|
395
|
-
.claude-tool-status.running::before { content: ''; display: inline-block; width: 9px; height: 9px; margin-right: 5px; border: 1.5px solid #8e8e93; border-top-color: transparent; border-radius: 50%; animation: codex-spin .8s linear infinite; vertical-align: -1px; }
|
|
396
|
-
.claude-tool-duration { flex: 0 0 auto; color: #6f6f76; font-size: 10px; font-variant-numeric: tabular-nums; }
|
|
397
|
-
.claude-tool-command { flex: 1; min-width: 0; color: var(--text-dim); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
398
|
-
.claude-tool-body { padding: 0 10px 10px 10px; }
|
|
399
|
-
.claude-tool-section { margin-top: 8px; }
|
|
400
|
-
.claude-tool-section-title { color: var(--text-dim); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px; }
|
|
401
|
-
.claude-tool-code { margin: 0; border: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.32); border-radius: 7px; padding: 9px 10px; color: #d1d5db; white-space: pre-wrap; overflow-wrap: anywhere; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; line-height: 1.42; overflow-x: auto; }
|
|
402
|
-
.claude-edit-body { border-top: 1px solid rgba(255,255,255,.08); }
|
|
403
|
-
.claude-edit-file > summary { display: flex; align-items: center; gap: 8px; padding: 8px 10px; color: #d1d5db; font: 12px/1.35 ui-monospace, SFMono-Regular, Menlo, monospace; }
|
|
404
|
-
.claude-edit-file .path { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
405
|
-
.claude-edit-body > .claude-tool-section { padding: 0 10px 10px; }
|
|
406
|
-
.claude-tool.error { border-color: rgba(255,107,97,0.38); background: rgba(255,59,48,0.07); }
|
|
407
|
-
.claude-work-group { max-width: 100%; margin: 0 0 10px 0; border: 1px solid rgba(255,255,255,0.09); background: rgba(255,255,255,0.035); border-radius: 8px; overflow: hidden; }
|
|
408
|
-
.claude-work-group summary { display: flex; align-items: center; gap: 8px; min-height: 32px; padding: 7px 10px; cursor: pointer; color: #d1d5db; list-style: none; }
|
|
409
|
-
.claude-work-group summary::-webkit-details-marker { display: none; }
|
|
410
|
-
.claude-work-group-title { flex: 1; min-width: 0; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
411
|
-
.claude-work-group-body { padding: 2px 8px 8px 8px; }
|
|
412
|
-
.claude-permission { border-color: rgba(255,204,0,0.4); background: rgba(255,204,0,0.08); }
|
|
413
|
-
.claude-permission-actions { display: flex; gap: 8px; justify-content: flex-end; margin-top: 10px; flex-wrap: wrap; }
|
|
414
|
-
.claude-permission-actions .small-btn { min-height: 30px; max-width: 100%; white-space: normal; line-height: 1.2; }
|
|
415
|
-
#claude-control-panel { display: none; width: min(100%, var(--control-content-max)); margin: 0 auto; padding: 0 14px 10px 14px; box-sizing: border-box; }
|
|
416
|
-
.claude-control-rail { display: flex; gap: 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
|
|
417
|
-
.claude-control-rail::-webkit-scrollbar { display: none; }
|
|
418
|
-
.claude-control-page { flex: 0 0 100%; display: grid; grid-template-columns: repeat(6, minmax(0, 96px)); justify-content: center; gap: clamp(2px, .8vw, 7px); align-items: center; white-space: nowrap; scroll-snap-align: start; box-sizing: border-box; }
|
|
419
|
-
.claude-control-page.secondary { grid-template-columns: minmax(0, 116px); }
|
|
420
|
-
.claude-control-page > * { width: 100%; min-width: 0; overflow: hidden; }
|
|
421
|
-
.claude-control-page .claude-ctrl-btn, .claude-control-page .claude-select { padding-left: clamp(2px, 1vw, 10px); padding-right: clamp(2px, 1vw, 10px); font-size: clamp(8px, 2.2vw, 11px); text-overflow: ellipsis; overflow: hidden; }
|
|
422
|
-
.claude-select, .claude-ctrl-btn { min-width: 0; height: 32px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; background: rgba(255,255,255,0.08); color: #f5f5f7; font-size: 11px; font-weight: 800; letter-spacing: 0; padding: 0 10px; outline: none; box-sizing: border-box; }
|
|
423
|
-
.claude-select { appearance: none; -webkit-appearance: none; text-align: center; text-align-last: center; }
|
|
424
|
-
.claude-picker-wrap { min-width: 0; position: relative; }
|
|
425
|
-
.claude-picker-wrap select { display: none; }
|
|
426
|
-
.claude-picker-btn { width: 100%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
427
|
-
.claude-picker-btn.active { background: rgba(0,122,255,0.22); border-color: rgba(0,122,255,0.5); }
|
|
428
|
-
#claude-picker-panel { display: none; margin-top: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(28,28,30,0.99); border-radius: 12px; max-height: min(280px, 42dvh); overflow-y: auto; box-shadow: 0 16px 36px rgba(0,0,0,0.34); }
|
|
429
|
-
#claude-picker-panel.active { display: block; }
|
|
430
|
-
#claude-picker-panel.combined.active { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
|
|
431
|
-
.claude-picker-column { min-width: 0; overflow-y: auto; }
|
|
432
|
-
.claude-picker-column + .claude-picker-column { border-left: 1px solid rgba(255,255,255,0.08); }
|
|
433
|
-
.claude-picker-title { padding: 9px 11px 7px 11px; color: var(--text-dim); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255,255,255,0.06); }
|
|
434
|
-
.claude-picker-option { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,0.06); background: transparent; color: #f5f5f7; padding: 10px 11px; text-align: left; cursor: pointer; box-sizing: border-box; }
|
|
435
|
-
.claude-picker-option:last-child { border-bottom: 0; }
|
|
436
|
-
.claude-picker-option:active, .claude-picker-option.selected { background: rgba(0,122,255,0.18); }
|
|
437
|
-
.claude-picker-option-main { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13px; font-weight: 800; }
|
|
438
|
-
.claude-picker-option-main .selected-label { color: var(--text-dim); font-size: 11px; font-weight: 800; text-transform: uppercase; flex: 0 0 auto; }
|
|
439
|
-
.claude-picker-option-value { min-width: 0; overflow-wrap: anywhere; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #d1d5db; font-size: 12px; margin-top: 3px; line-height: 1.35; }
|
|
440
|
-
.claude-ctrl-btn { cursor: pointer; display: inline-flex; align-items: center; justify-content: center; white-space: nowrap; }
|
|
441
|
-
.claude-ctrl-btn:active, .claude-select:focus { background: rgba(255,255,255,0.14); border-color: rgba(0,122,255,0.45); }
|
|
442
|
-
.claude-ctrl-btn.danger { color: #ff6b61; background: rgba(255,59,48,0.12); }
|
|
443
|
-
.claude-ctrl-btn.primary { color: #fff; background: rgba(0,122,255,0.32); border-color: rgba(0,122,255,0.45); }
|
|
444
|
-
.claude-ctrl-btn:disabled { opacity: 0.45; cursor: default; }
|
|
445
|
-
#claude-state-bar { display: flex; align-items: center; gap: 7px; min-height: 24px; margin-top: 8px; color: var(--text-dim); font-size: 11px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
|
|
446
|
-
#claude-state-bar::-webkit-scrollbar { display: none; }
|
|
447
|
-
.claude-state-pill { display: inline-flex; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.045); border-radius: 999px; padding: 3px 8px; flex: 0 0 auto; }
|
|
448
|
-
.claude-state-pill.warn { color: #ffcc00; border-color: rgba(255,204,0,0.24); background: rgba(255,204,0,0.08); }
|
|
449
|
-
.claude-state-pill.perm { margin-left: auto; }
|
|
450
|
-
.claude-state-pill.perm.acceptEdits { color: #34c759; border-color: rgba(52,199,89,0.26); background: rgba(52,199,89,0.08); }
|
|
451
|
-
.claude-state-pill.perm.bypassPermissions { color: #ff9f0a; border-color: rgba(255,159,10,0.26); background: rgba(255,159,10,0.08); }
|
|
452
|
-
.claude-state-pill.perm.plan { color: #64d2ff; border-color: rgba(100,210,255,0.26); background: rgba(100,210,255,0.08); }
|
|
453
|
-
#claude-resume-panel, #claude-fork-panel { display: none; margin-top: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(28,28,30,0.98); border-radius: 12px; max-height: min(280px, 38dvh); overflow-y: auto; }
|
|
454
|
-
#claude-resume-panel.active, #claude-fork-panel.active { display: block; }
|
|
455
|
-
.claude-resume-item { width: 100%; text-align: left; border: 0; border-bottom: 1px solid rgba(255,255,255,0.06); background: transparent; color: #fff; padding: 10px 11px; cursor: pointer; box-sizing: border-box; }
|
|
456
|
-
.claude-resume-item:last-child { border-bottom: 0; }
|
|
457
|
-
.claude-resume-item:active { background: rgba(255,255,255,0.08); }
|
|
458
|
-
.claude-resume-title { display: flex; justify-content: space-between; gap: 8px; font-size: 12px; font-weight: 800; }
|
|
459
|
-
.codex-resume-question-secondary { min-height: 1.35em; color: var(--text-dim); font-size: 11px; margin-top: 3px; overflow-wrap: anywhere; }
|
|
460
|
-
.claude-resume-meta { color: var(--text-dim); font-size: 11px; margin-top: 3px; overflow-wrap: anywhere; }
|
|
461
|
-
#terminal .xterm, #terminal .xterm-viewport, #terminal .xterm-screen, #terminal .xterm-rows, #terminal .xterm-rows span { user-select: text !important; -webkit-user-select: text !important; -webkit-touch-callout: default; touch-action: pan-y; }
|
|
462
|
-
#terminal .xterm-viewport { overflow-anchor: none; }
|
|
463
|
-
#terminal .xterm-helper-textarea { user-select: none !important; -webkit-user-select: none !important; -webkit-touch-callout: none; }
|
|
464
|
-
#scroll-controls { position: fixed; right: 14px; top: 60%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 18px; z-index: 3000; }
|
|
465
|
-
.scroll-btn { --charge: 0deg; width: 56px; height: 56px; background: rgba(30, 30, 30, 0.5); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 28px; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.4); cursor: pointer; position: relative; overflow: hidden; touch-action: none; user-select: none; -webkit-user-select: none; }
|
|
466
|
-
.scroll-btn::before { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: conic-gradient(var(--primary) var(--charge), transparent 0deg); opacity: 0; transition: opacity 0.12s ease; }
|
|
467
|
-
.scroll-btn::after { content: ''; position: absolute; inset: 7px; border-radius: 50%; background: rgba(30, 30, 30, 0.72); border: 1px solid rgba(255,255,255,0.08); }
|
|
468
|
-
.scroll-btn.charging::before { opacity: 1; }
|
|
469
|
-
.scroll-btn span { position: relative; z-index: 1; }
|
|
470
|
-
#debug-log { position: fixed; bottom: 0; left: 0; right: 0; max-height: 100px; background: rgba(0,0,0,0.8); color: #0f0; font-size: 10px; overflow-y: auto; padding: 5px; z-index: 9999; display: none; pointer-events: none; }
|
|
471
|
-
|
|
472
|
-
#history-content { flex: 1; background: #000; color: #d1d5db; padding: 14px; overflow-y: auto; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; line-height: 1.5; white-space: pre-wrap; overflow-wrap: anywhere; user-select: text !important; -webkit-user-select: text !important; box-sizing: border-box; }
|
|
473
|
-
#history-content.nowrap { white-space: pre; overflow-wrap: normal; overflow-x: auto; }
|
|
474
|
-
.history-meta { color: var(--text-dim); font-size: 11px; padding: 8px 14px; border-bottom: 1px solid rgba(255,255,255,0.06); background: #0d0d0d; }
|
|
475
|
-
|
|
476
|
-
.tab-bar { display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); background: var(--bg); }
|
|
477
|
-
.subview-nav { flex: 0 0 auto; padding-top: env(safe-area-inset-top); border-bottom: 1px solid var(--line); background: var(--surface); }
|
|
478
|
-
.subview-nav-row { display: flex; align-items: center; padding: 8px 14px; }
|
|
479
|
-
.subview-nav-title { flex: 1; min-width: 0; color: var(--text); text-align: center; font-size: 16px; font-weight: 600; }
|
|
480
|
-
.tab-btn { flex: 1; text-align: center; padding: 12px 0; font-size: 14px; font-weight: 600; color: var(--text-dim); background: none; border: none; cursor: pointer; position: relative; }
|
|
481
|
-
.tab-btn.active { color: var(--text); }
|
|
482
|
-
.tab-btn.active::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 2px; width: 40px; background: var(--primary); border-radius: 2px; }
|
|
483
|
-
.list-item { display: flex; align-items: center; padding: 12px 14px; border-bottom: 1px solid rgba(255,255,255,0.05); cursor: pointer; transition: background 0.2s; }
|
|
484
|
-
.list-item:hover { background: rgba(255,255,255,0.05); }
|
|
485
|
-
.dir-icon { color: var(--primary); margin-right: 12px; }
|
|
486
|
-
.file-icon { color: var(--text-dim); margin-right: 12px; }
|
|
487
|
-
.btn-toggle { background: var(--card-bg); border-radius: 6px; padding: 4px; display: flex; gap: 4px; margin: 10px; }
|
|
488
|
-
.btn-toggle button { flex: 1; padding: 6px 0; border-radius: 4px; border: none; background: transparent; color: var(--text-dim); font-size: 13px; font-weight: 600; cursor: pointer; }
|
|
489
|
-
.btn-toggle button.active { background: var(--primary); color: #fff; }
|
|
490
|
-
.lobby-tabs { display: flex; background: var(--card-bg); border-radius: 8px; padding: 4px; margin-bottom: 16px; gap: 4px; }
|
|
491
|
-
.lobby-tab { flex: 1; border: none; border-radius: 6px; background: transparent; color: var(--text-dim); padding: 8px; font-size: 14px; font-weight: 700; cursor: pointer; }
|
|
492
|
-
.lobby-tab.active { background: var(--primary); color: #fff; }
|
|
493
|
-
.schedule-card { background: var(--card-bg); border-radius: 12px; padding: 16px; margin-bottom: 12px; }
|
|
494
|
-
.schedule-row { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
|
|
495
|
-
.schedule-meta { margin-top: 6px; color: var(--text-dim); font-size: 12px; line-height: 1.5; overflow-wrap: anywhere; }
|
|
496
|
-
.schedule-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
|
|
497
|
-
.small-btn { border: none; border-radius: 16px; padding: 7px 10px; font-weight: 700; font-size: 12px; color: #fff; background: rgba(255,255,255,0.1); cursor: pointer; }
|
|
498
|
-
.small-btn.primary { background: var(--primary); }
|
|
499
|
-
.small-btn.danger { background: rgba(255,59,48,0.18); color: #ff6b61; }
|
|
500
|
-
.form-field { margin-bottom: 12px; }
|
|
501
|
-
.form-field label { display:block; margin-bottom: 6px; font-size: 13px; color: var(--text-dim); font-weight: 600; }
|
|
502
|
-
.form-field input, .form-field select, .form-field textarea { width: 100%; box-sizing: border-box; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: #fff; border-radius: 8px; padding: 9px 10px; font-size: 14px; outline: none; }
|
|
503
|
-
.weekday-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
|
|
504
|
-
.weekday-btn { border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: var(--text-dim); border-radius: 8px; padding: 8px 0; font-size: 12px; font-weight: 700; cursor: pointer; }
|
|
505
|
-
.weekday-btn.active { border-color: var(--primary); background: rgba(0,122,255,0.25); color: #fff; }
|
|
506
|
-
#schedule-modal { background: var(--card-bg); width: 100%; max-width: 720px; max-height: 92dvh; overflow-y: auto; border-radius: 16px; padding: 18px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); box-sizing: border-box; }
|
|
507
|
-
.schedule-modal-subtitle { margin: 4px 0 0; color: var(--text-dim); font-size: 12px; line-height: 1.4; }
|
|
508
|
-
.step-card { border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px; margin-bottom: 8px; background: rgba(255,255,255,0.04); }
|
|
509
|
-
.step-grid { display: grid; grid-template-columns: minmax(110px, 150px) 1fr auto; gap: 8px; align-items: center; }
|
|
510
|
-
@media (max-width: 640px) {
|
|
511
|
-
.usage-content { padding: 14px 10px calc(24px + env(safe-area-inset-bottom)); }
|
|
512
|
-
.usage-filter-bar { grid-template-columns: 1fr; gap: 9px; }
|
|
513
|
-
.usage-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
|
|
514
|
-
.usage-summary-card { padding: 13px; }
|
|
515
|
-
.usage-panel { padding: 13px; }
|
|
516
|
-
.usage-panel-heading { flex-direction: column; gap: 10px; }
|
|
517
|
-
.usage-legend { justify-content: flex-start; }
|
|
518
|
-
.usage-chart-row { grid-template-columns: 70px minmax(70px, 1fr); gap: 8px; }
|
|
519
|
-
.usage-chart-total { display: none; }
|
|
520
|
-
.schedule-row { flex-direction: column; }
|
|
521
|
-
.schedule-actions { justify-content: flex-start; }
|
|
522
|
-
.step-grid { grid-template-columns: 1fr; }
|
|
523
|
-
.timed-row { grid-template-columns: 1fr; }
|
|
524
|
-
}
|
|
525
|
-
@media (max-width: 480px) {
|
|
526
|
-
:root { --chat-content-max: 100%; --control-content-max: 100%; }
|
|
527
|
-
#nav-bar { padding: 8px 10px; }
|
|
528
|
-
#back-btn { font-size: 15px; }
|
|
529
|
-
#back-btn svg { width: 22px; height: 22px; }
|
|
530
|
-
#session-title { font-size: 15px; padding: 0 7px; }
|
|
531
|
-
#nav-bar > div:last-child { gap: 5px !important; }
|
|
532
|
-
#nav-bar > div:last-child .icon-btn { min-width: 34px; min-height: 30px; padding: 5px 7px !important; }
|
|
533
|
-
#input-row { padding-left: 10px; padding-right: 10px; }
|
|
534
|
-
#claude-control-panel { padding-left: 8px; padding-right: 8px; }
|
|
535
|
-
.claude-control-page { grid-template-columns: repeat(6, minmax(0, 1fr)); }
|
|
536
|
-
.claude-control-page.secondary { grid-template-columns: minmax(0, 1fr); }
|
|
537
|
-
.claude-control-page .claude-ctrl-btn, .claude-control-page .claude-select { height: 36px; padding-left: 4px; padding-right: 4px; }
|
|
538
|
-
#codex-control-panel { padding-left: 8px; padding-right: 8px; }
|
|
539
|
-
.codex-control-page { grid-template-columns: repeat(5, minmax(0, 1fr)); }
|
|
540
|
-
.codex-control-page .claude-ctrl-btn { height: 36px; padding-left: 4px; padding-right: 4px; }
|
|
541
|
-
.codex-select-control { height: 36px; }
|
|
542
|
-
#codex-chat-container { padding: 10px 10px calc(22px + env(safe-area-inset-bottom)); }
|
|
543
|
-
.codex-message-block.user { max-width: 94%; }
|
|
544
|
-
.claude-permission-actions { justify-content: flex-start; }
|
|
545
|
-
.usage-nav { grid-template-columns: 78px minmax(0, 1fr) 78px; padding-left: 10px; padding-right: 10px; }
|
|
546
|
-
.usage-nav-actions { gap: 5px; }
|
|
547
|
-
.usage-nav-icon { width: 32px; height: 32px; }
|
|
548
|
-
.usage-summary-card .value { font-size: 21px; }
|
|
549
|
-
}
|
|
550
|
-
@media (max-width: 430px) {
|
|
551
|
-
#nav-bar > div:last-child .icon-btn { width: 34px; font-size: 0 !important; gap: 0 !important; }
|
|
552
|
-
#nav-bar > div:last-child .icon-btn svg { width: 16px; height: 16px; }
|
|
553
|
-
}
|
|
554
|
-
@media (min-width: 768px) and (max-width: 1199px) {
|
|
555
|
-
:root { --chat-content-max: 780px; --control-content-max: 920px; }
|
|
556
|
-
#codex-chat-container { padding: 16px 18px 30px; }
|
|
557
|
-
#input-row, #claude-control-panel, #codex-control-panel { padding-left: 18px; padding-right: 18px; }
|
|
558
|
-
}
|
|
559
|
-
@media (min-width: 1200px) {
|
|
560
|
-
:root { --chat-content-max: 960px; --control-content-max: 1100px; }
|
|
561
|
-
#codex-chat-container { padding: 18px 22px 34px; }
|
|
562
|
-
}
|
|
563
|
-
|
|
564
|
-
/* Responsive application shell, bottom composer, and color themes. */
|
|
565
|
-
:root {
|
|
566
|
-
--sidebar-w: 348px;
|
|
567
|
-
--surface: #121212;
|
|
568
|
-
--surface-raised: #1c1c1e;
|
|
569
|
-
--surface-soft: rgba(255,255,255,.08);
|
|
570
|
-
--line: rgba(255,255,255,.10);
|
|
571
|
-
--chat-bg: #050505;
|
|
572
|
-
--input-bg: rgba(255,255,255,.08);
|
|
573
|
-
--input-fg: #ffffff;
|
|
574
|
-
--input-placeholder: rgba(255,255,255,.45);
|
|
575
|
-
--overlay-bg: rgba(0,0,0,.80);
|
|
576
|
-
--git-diff-bg: #0d0d0d;
|
|
577
|
-
--git-diff-text: #d1d5db;
|
|
578
|
-
--git-add-text: #4ade80;
|
|
579
|
-
--git-add-bg: rgba(74,222,128,.1);
|
|
580
|
-
--git-del-text: #f87171;
|
|
581
|
-
--git-del-bg: rgba(248,113,113,.1);
|
|
582
|
-
--git-hunk-text: #60a5fa;
|
|
583
|
-
--git-hunk-bg: rgba(96,165,250,.1);
|
|
584
|
-
--git-modified-text: #fbbf24;
|
|
585
|
-
color-scheme: dark;
|
|
586
|
-
}
|
|
587
|
-
|
|
588
|
-
html[data-theme="light"] {
|
|
589
|
-
--bg: #f5f6f8;
|
|
590
|
-
--card-bg: #ffffff;
|
|
591
|
-
--text: #172033;
|
|
592
|
-
--text-dim: #667085;
|
|
593
|
-
--surface: #ffffff;
|
|
594
|
-
--surface-raised: #ffffff;
|
|
595
|
-
--surface-soft: rgba(15,23,42,.055);
|
|
596
|
-
--line: rgba(15,23,42,.11);
|
|
597
|
-
--chat-bg: #ffffff;
|
|
598
|
-
--input-bg: #f2f4f7;
|
|
599
|
-
--input-fg: #172033;
|
|
600
|
-
--input-placeholder: #8a94a6;
|
|
601
|
-
--overlay-bg: rgba(15,23,42,.45);
|
|
602
|
-
--git-diff-bg: #f7f8fa;
|
|
603
|
-
--git-diff-text: #344054;
|
|
604
|
-
--git-add-text: #176b3a;
|
|
605
|
-
--git-add-bg: #dff4e7;
|
|
606
|
-
--git-del-text: #a12b24;
|
|
607
|
-
--git-del-bg: #fde5e3;
|
|
608
|
-
--git-hunk-text: #075fae;
|
|
609
|
-
--git-hunk-bg: #e6f2ff;
|
|
610
|
-
--git-modified-text: #9a6700;
|
|
611
|
-
color-scheme: light;
|
|
612
|
-
}
|
|
613
|
-
|
|
614
|
-
html[data-theme="dark"] { color-scheme: dark; }
|
|
615
|
-
|
|
616
|
-
.app-icon-sprite { position: fixed; width: 0; height: 0; overflow: hidden; pointer-events: none; }
|
|
617
|
-
.action-icon { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
|
|
618
|
-
.action-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
|
|
619
|
-
|
|
620
|
-
#app-shell { display: flex; width: 100%; height: 100%; min-height: 0; overflow: hidden; background: var(--bg); }
|
|
621
|
-
#detail-pane { position: relative; display: flex; min-width: 0; min-height: 0; flex: 1; overflow: hidden; background: var(--bg); }
|
|
622
|
-
#detail-pane > .view { min-width: 0; min-height: 0; }
|
|
623
|
-
#detail-empty { display: none; flex: 1; flex-direction: column; align-items: center; justify-content: center; padding: 32px; color: var(--text-dim); text-align: center; }
|
|
624
|
-
#detail-empty img { width: 72px; height: 72px; margin-bottom: 14px; opacity: .72; }
|
|
625
|
-
#detail-empty h2 { margin: 0; color: var(--text); font-size: 20px; }
|
|
626
|
-
#detail-empty p { max-width: 360px; margin: 8px 0 0; font-size: 13px; line-height: 1.5; }
|
|
627
|
-
#sidebar-resizer { display: none; }
|
|
628
|
-
|
|
629
|
-
#terminal-view.active { display: grid; grid-template-rows: auto auto minmax(0, 1fr) auto; }
|
|
630
|
-
#top-ui { display: contents; }
|
|
631
|
-
#nav-bar { grid-row: 1; z-index: 20; padding-top: max(8px, env(safe-area-inset-top)); background: var(--surface); border-color: var(--line); }
|
|
632
|
-
#session-status-strip { display: none; grid-row: 2; z-index: 19; padding: 6px 12px; border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 97%, transparent); }
|
|
633
|
-
#session-attention-rail { display: flex; width: min(100%, var(--chat-content-max)); min-width: 0; margin: 0 auto; gap: 7px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; }
|
|
634
|
-
#session-attention-rail::-webkit-scrollbar { display: none; }
|
|
635
|
-
.session-attention-pill { display: inline-flex; min-height: 28px; flex: 0 0 auto; align-items: center; gap: 5px; padding: 0 10px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-soft); color: var(--text-dim); font-size: 11px; font-weight: 750; cursor: pointer; }
|
|
636
|
-
.session-attention-pill.approval { border-color: rgba(255,204,0,.42); background: rgba(255,204,0,.10); color: #ffd60a; }
|
|
637
|
-
.session-attention-pill.subagent { border-color: rgba(100,210,255,.35); background: rgba(100,210,255,.10); color: #64d2ff; }
|
|
638
|
-
.session-attention-pill:active { transform: translateY(1px); }
|
|
639
|
-
html[data-theme="light"] .session-attention-pill.approval { border-color: #e5bd36; background: #fff7d6; color: #795500; }
|
|
640
|
-
html[data-theme="light"] .session-attention-pill.subagent { border-color: #99c8f7; background: #e8f3ff; color: #075fae; }
|
|
641
|
-
#terminal-controls { position: relative; inset: auto; grid-row: 4; z-index: 30; max-height: min(62dvh, 620px); overflow-y: auto; padding-bottom: env(safe-area-inset-bottom); border-top: 1px solid var(--line); border-bottom: 0; background: color-mix(in srgb, var(--surface) 96%, transparent); box-shadow: 0 -10px 28px rgba(0,0,0,.12); }
|
|
642
|
-
#terminal-controls-spacer { display: none; }
|
|
643
|
-
#terminal-container, #claude-chat-container, #codex-chat-container { grid-row: 3; min-width: 0; min-height: 0; background: var(--chat-bg); }
|
|
644
|
-
#composer-skill-prefix { display: none; width: min(100%, var(--control-content-max)); margin: 0 auto; padding: 8px 14px 0; box-sizing: border-box; }
|
|
645
|
-
#composer-skill-prefix.active { display: flex; justify-content: flex-start; }
|
|
646
|
-
#composer-skill-prefix.active + #input-row { padding-top: 0; }
|
|
647
|
-
#input-row { padding-top: 10px; padding-bottom: 7px; }
|
|
648
|
-
@media (max-width: 480px) {
|
|
649
|
-
#composer-skill-prefix { padding-left: 10px; padding-right: 10px; }
|
|
650
|
-
}
|
|
651
|
-
@media (min-width: 768px) and (max-width: 1199px) {
|
|
652
|
-
#composer-skill-prefix { padding-left: 18px; padding-right: 18px; }
|
|
653
|
-
}
|
|
654
|
-
#cmd-input { width: 100%; min-height: 42px; border-color: var(--line); background: var(--input-bg); color: var(--input-fg); }
|
|
655
|
-
#cmd-input::placeholder { color: var(--input-placeholder); }
|
|
656
|
-
#cmd-input:focus { color: var(--input-fg); }
|
|
657
|
-
#send-btn { position: absolute; z-index: 5; bottom: calc(10px + env(safe-area-inset-bottom)); margin: 0; }
|
|
658
|
-
.composer-action-btn { position: relative; width: 40px; min-width: 40px; height: 40px; flex: 0 0 40px; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface-soft); color: var(--text-dim); display: flex; align-items: center; justify-content: center; cursor: pointer; }
|
|
659
|
-
.composer-action-btn:hover { color: var(--text); }
|
|
660
|
-
.composer-action-btn.active { color: var(--primary); border-color: color-mix(in srgb, var(--primary) 48%, transparent); background: color-mix(in srgb, var(--primary) 14%, var(--surface)); }
|
|
661
|
-
#composer-action-tooltip { position: fixed; z-index: 11000; display: none; max-width: min(220px, calc(100vw - 24px)); padding: 6px 9px; border: 1px solid var(--line); border-radius: 7px; background: color-mix(in srgb, var(--surface-raised) 96%, transparent); color: var(--text); box-shadow: 0 6px 18px rgba(0,0,0,.18); font-size: 11px; font-weight: 700; line-height: 1.2; text-align: center; white-space: nowrap; pointer-events: none; }
|
|
662
|
-
#composer-action-tooltip.visible { display: block; }
|
|
663
|
-
#send-btn { right: max(12px, calc((100% - var(--control-content-max)) / 2 + 14px)); width: 44px; height: 40px; }
|
|
664
|
-
#claude-control-panel, #codex-control-panel { position: relative; flex-direction: column; width: min(100%, var(--control-content-max)); padding: 0 14px 10px; border: 0; background: transparent; }
|
|
665
|
-
.claude-control-rail, .codex-control-rail { order: 100; min-height: 40px; gap: 7px; margin: 0 58px 0 0; padding: 0; overflow-x: auto; overflow-y: hidden; scroll-snap-type: none; scroll-padding: 0; }
|
|
666
|
-
.claude-control-page, .claude-control-page.secondary, .codex-control-page { display: flex; width: auto; flex: 0 0 auto; gap: 7px; justify-content: flex-start; scroll-snap-align: none; }
|
|
667
|
-
.claude-control-page > *, .codex-control-page > * { width: 40px; min-width: 40px; height: 40px; flex: 0 0 40px; }
|
|
668
|
-
.claude-control-page .claude-ctrl-btn, .claude-control-page .claude-select, .codex-control-page .claude-ctrl-btn, .codex-control-page .codex-select-label,
|
|
669
|
-
.claude-select, .claude-ctrl-btn, .codex-select-control, .codex-select-label { width: 40px; height: 40px; padding: 0; border-radius: 12px; font-size: 0; }
|
|
670
|
-
.claude-picker-btn, .claude-ctrl-btn, .codex-select-label { position: relative; display: inline-flex; align-items: center; justify-content: center; }
|
|
671
|
-
#claude-state-bar, #codex-state-bar { order: 10; }
|
|
672
|
-
#claude-picker-panel, #claude-resume-panel, #claude-fork-panel,
|
|
673
|
-
#codex-model-panel, #codex-resume-panel, #codex-fork-panel, #codex-prompt-panel, #codex-skill-panel { order: 20; }
|
|
674
|
-
#shortcut-rail { width: min(100%, var(--control-content-max)); min-height: 40px; gap: 7px; margin: 0 auto; padding: 0 66px 10px 14px; scroll-snap-type: none; scroll-padding: 0; }
|
|
675
|
-
.shortcut-group { display: contents; }
|
|
676
|
-
.shortcut-group .key-btn, .shortcut-group .command-key { width: auto; min-width: 48px; height: 40px; padding: 0 10px; flex: 0 0 auto; }
|
|
677
|
-
#attachment-strip { border-color: var(--line); background: var(--surface-raised); }
|
|
678
|
-
#timed-send-panel { margin-bottom: 8px; border-color: var(--line); background: var(--surface-raised); }
|
|
679
|
-
#timed-tag-rail { top: auto; bottom: calc(100% + 6px); }
|
|
680
|
-
#scroll-controls { position: absolute; }
|
|
681
|
-
|
|
682
|
-
.theme-choice { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
|
|
683
|
-
.theme-choice button { min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-soft); color: var(--text); font-size: 13px; font-weight: 700; cursor: pointer; }
|
|
684
|
-
.theme-choice button[aria-pressed="true"] { border-color: var(--primary); box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 18%, transparent); }
|
|
685
|
-
.theme-swatch { width: 18px; height: 18px; border: 1px solid rgba(127,127,127,.35); border-radius: 50%; }
|
|
686
|
-
.theme-swatch.light { background: #fff; }
|
|
687
|
-
.theme-swatch.dark { background: #1c1c1e; }
|
|
688
|
-
.settings-theme-help { margin: 8px 0 0; color: var(--text-dim); font-size: 11px; }
|
|
689
|
-
|
|
690
|
-
@media (min-width: 920px) {
|
|
691
|
-
#lobby-view { display: flex !important; width: min(var(--sidebar-w), calc(100vw - 484px)); flex: 0 0 min(var(--sidebar-w), calc(100vw - 484px)); border-right: 1px solid var(--line); background: var(--bg); }
|
|
692
|
-
#lobby { width: 100%; padding: 18px 14px; }
|
|
693
|
-
#lobby-view .header { margin-bottom: 18px; }
|
|
694
|
-
#lobby-view .header-actions { gap: 3px; }
|
|
695
|
-
#lobby-view .header-action-btn.icon-only { width: 34px; min-width: 34px; }
|
|
696
|
-
#lobby-view .header-action-btn:not(.icon-only) { width: auto; min-width: 0; padding: 0 8px; font-size: 13px; }
|
|
697
|
-
#lobby-view .header-action-btn:not(.icon-only) span:first-child { font-size: 18px; }
|
|
698
|
-
#sidebar-resizer { display: block; width: 4px; flex: 0 0 4px; cursor: col-resize; background: var(--line); touch-action: none; transition: background .15s; }
|
|
699
|
-
#sidebar-resizer:hover, #sidebar-resizer.dragging { background: var(--primary); }
|
|
700
|
-
#detail-pane:not(:has(.view.active)) #detail-empty { display: flex; }
|
|
701
|
-
#back-btn, .usage-nav-button { visibility: hidden; pointer-events: none; }
|
|
702
|
-
.session-card.selected { border: 1px solid color-mix(in srgb, var(--primary) 48%, transparent); background: color-mix(in srgb, var(--primary) 10%, var(--card-bg)); }
|
|
703
|
-
.session-card.selected .active-session-dot { position: absolute; top: 7px; right: 7px; display: block; width: 9px; height: 9px; border: 2px solid var(--card-bg); border-radius: 50%; background: #34c759; box-shadow: 0 0 0 1px rgba(52,199,89,.25); pointer-events: none; }
|
|
704
|
-
}
|
|
705
|
-
|
|
706
|
-
@media (max-width: 919px) {
|
|
707
|
-
#lobby-view { flex: 1; }
|
|
708
|
-
#detail-pane { display: contents; }
|
|
709
|
-
#detail-empty { display: none !important; }
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
/* Light palette overrides for legacy selectors that still carry dark literals. */
|
|
713
|
-
html[data-theme="light"] body,
|
|
714
|
-
html[data-theme="light"] #terminal-view,
|
|
715
|
-
html[data-theme="light"] #terminal-container,
|
|
716
|
-
html[data-theme="light"] #git-content,
|
|
717
|
-
html[data-theme="light"] #usage-view { background: var(--bg) !important; color: var(--text); }
|
|
718
|
-
html[data-theme="light"] #top-ui,
|
|
719
|
-
html[data-theme="light"] #nav-bar,
|
|
720
|
-
html[data-theme="light"] .usage-nav,
|
|
721
|
-
html[data-theme="light"] #codex-control-panel { background: var(--surface) !important; border-color: var(--line) !important; }
|
|
722
|
-
html[data-theme="light"] .session-card,
|
|
723
|
-
html[data-theme="light"] .schedule-card,
|
|
724
|
-
html[data-theme="light"] .usage-panel,
|
|
725
|
-
html[data-theme="light"] .usage-summary-card,
|
|
726
|
-
html[data-theme="light"] #tool-modal,
|
|
727
|
-
html[data-theme="light"] #settings-modal,
|
|
728
|
-
html[data-theme="light"] #skill-hall-modal,
|
|
729
|
-
html[data-theme="light"] #usage-source-modal,
|
|
730
|
-
html[data-theme="light"] #schedule-modal,
|
|
731
|
-
html[data-theme="light"] #claude-picker-panel,
|
|
732
|
-
html[data-theme="light"] #claude-resume-panel,
|
|
733
|
-
html[data-theme="light"] #claude-fork-panel,
|
|
734
|
-
html[data-theme="light"] #codex-model-panel,
|
|
735
|
-
html[data-theme="light"] #codex-resume-panel,
|
|
736
|
-
html[data-theme="light"] #codex-fork-panel,
|
|
737
|
-
html[data-theme="light"] #codex-prompt-panel,
|
|
738
|
-
html[data-theme="light"] #codex-skill-panel { background: var(--card-bg) !important; border-color: var(--line) !important; color: var(--text) !important; }
|
|
739
|
-
html[data-theme="light"] #modal-overlay,
|
|
740
|
-
html[data-theme="light"] #settings-modal-overlay,
|
|
741
|
-
html[data-theme="light"] #skill-hall-overlay,
|
|
742
|
-
html[data-theme="light"] #usage-source-overlay { background: var(--overlay-bg); }
|
|
743
|
-
html[data-theme="light"] #claude-chat-container,
|
|
744
|
-
html[data-theme="light"] #codex-chat-container,
|
|
745
|
-
html[data-theme="light"] #history-content { background: var(--chat-bg); color: var(--text); }
|
|
746
|
-
html[data-theme="light"] .history-meta { background: #f0f2f5; border-color: var(--line); }
|
|
747
|
-
html[data-theme="light"] .claude-message.assistant,
|
|
748
|
-
html[data-theme="light"] .codex-message,
|
|
749
|
-
html[data-theme="light"] .claude-tool strong,
|
|
750
|
-
html[data-theme="light"] .claude-tool-header,
|
|
751
|
-
html[data-theme="light"] .claude-picker-option,
|
|
752
|
-
html[data-theme="light"] .codex-picker-option,
|
|
753
|
-
html[data-theme="light"] .claude-resume-item,
|
|
754
|
-
html[data-theme="light"] .codex-prompt-text,
|
|
755
|
-
html[data-theme="light"] .usage-nav-title strong { color: var(--text); }
|
|
756
|
-
html[data-theme="light"] .claude-tool,
|
|
757
|
-
html[data-theme="light"] .claude-work-group,
|
|
758
|
-
html[data-theme="light"] .codex-work-group { border-color: var(--line); background: rgba(15,23,42,.035); color: #344054; }
|
|
759
|
-
html[data-theme="light"] .claude-tool-code,
|
|
760
|
-
html[data-theme="light"] .claude-md pre { background: #f4f6f8; color: #27364a; border-color: var(--line); }
|
|
761
|
-
html[data-theme="light"] .claude-select,
|
|
762
|
-
html[data-theme="light"] .claude-ctrl-btn,
|
|
763
|
-
html[data-theme="light"] .codex-select-label,
|
|
764
|
-
html[data-theme="light"] .composer-action-btn,
|
|
765
|
-
html[data-theme="light"] .key-btn,
|
|
766
|
-
html[data-theme="light"] .command-key,
|
|
767
|
-
html[data-theme="light"] .small-btn { border-color: var(--line); background: var(--surface-soft); color: var(--text); }
|
|
768
|
-
html[data-theme="light"] .skill-hall-card { border-color: var(--line); background: var(--surface-soft); color: var(--text); }
|
|
769
|
-
html[data-theme="light"] .skill-hall-entry-btn { border-color: rgba(0,122,255,.28); background: rgba(0,122,255,.08); }
|
|
770
|
-
html[data-theme="light"] .claude-ctrl-btn.primary { color: #065fbd; background: rgba(0,122,255,.11); }
|
|
771
|
-
html[data-theme="light"] .claude-ctrl-btn.danger,
|
|
772
|
-
html[data-theme="light"] .small-btn.danger { color: #d92d20; background: rgba(217,45,32,.09); }
|
|
773
|
-
html[data-theme="light"] #settings-modal input,
|
|
774
|
-
html[data-theme="light"] #settings-modal select,
|
|
775
|
-
html[data-theme="light"] .skill-hall-search,
|
|
776
|
-
html[data-theme="light"] .form-field input,
|
|
777
|
-
html[data-theme="light"] .form-field select,
|
|
778
|
-
html[data-theme="light"] .form-field textarea,
|
|
779
|
-
html[data-theme="light"] #cwd-field { background: #f2f4f7 !important; border-color: var(--line) !important; color: var(--text) !important; }
|
|
780
|
-
html[data-theme="light"] .tab-bar,
|
|
781
|
-
html[data-theme="light"] .list-item { border-color: var(--line); }
|
|
782
|
-
html[data-theme="light"] .copy-dir-btn,
|
|
783
|
-
html[data-theme="light"] .serverchan-toggle { border-color: var(--line); background: var(--surface-soft); }
|
|
784
|
-
|
|
785
|
-
/* Light theme refinement: stronger hierarchy and readable provider surfaces. */
|
|
786
|
-
html[data-theme="light"] #lobby-view { background: #f0f2f5; }
|
|
787
|
-
html[data-theme="light"] .lobby-tabs { border: 1px solid #e0e5ec; box-shadow: 0 1px 2px rgba(15,23,42,.03); }
|
|
788
|
-
html[data-theme="light"] .session-card,
|
|
789
|
-
html[data-theme="light"] .schedule-card { border: 1px solid #e0e5ec; box-shadow: 0 1px 2px rgba(15,23,42,.04); }
|
|
790
|
-
html[data-theme="light"] .session-card.selected { border-color: #8fc5ff; background: #eaf4ff; box-shadow: 0 0 0 1px rgba(0,122,255,.08); }
|
|
791
|
-
html[data-theme="light"] .btn-join { background: #e8f2ff; color: #006acb; }
|
|
792
|
-
html[data-theme="light"] .weekday-btn { border-color: #d7dde7; background: #f7f8fa; color: #475467; }
|
|
793
|
-
html[data-theme="light"] .weekday-btn.active { border-color: #007aff; background: #007aff; color: #fff; }
|
|
794
|
-
html[data-theme="light"] .step-card { border-color: #dde2ea; background: #f7f8fa; }
|
|
795
|
-
html[data-theme="light"] .small-btn.primary { border-color: #007aff; background: #007aff; color: #fff; }
|
|
796
|
-
|
|
797
|
-
html[data-theme="light"] .claude-message.user,
|
|
798
|
-
html[data-theme="light"] .codex-message.user { border-color: #b8d9fb; background: #e8f3ff; color: #173b61; }
|
|
799
|
-
html[data-theme="light"] .claude-message-attachment { border-color: #c7d9ec; background: rgba(255,255,255,.68); color: #344054; }
|
|
800
|
-
html[data-theme="light"] .claude-md code { border-color: #d9dee7; background: #eef1f5; color: #24364b; }
|
|
801
|
-
html[data-theme="light"] .claude-md blockquote { border-left-color: #aeb8c6; color: #475467; }
|
|
802
|
-
html[data-theme="light"] .claude-md th,
|
|
803
|
-
html[data-theme="light"] .claude-md td { border-color: #d9dee7; }
|
|
804
|
-
html[data-theme="light"] .claude-md th { background: #eef1f5; color: #172033; }
|
|
805
|
-
html[data-theme="light"] .claude-command-chip { border-color: #d9dee7; background: #f2f4f7; color: #27364a; }
|
|
806
|
-
html[data-theme="light"] .claude-picker-option-value { color: #667085; }
|
|
807
|
-
html[data-theme="light"] .claude-picker-column + .claude-picker-column,
|
|
808
|
-
html[data-theme="light"] .codex-picker-column + .codex-picker-column { border-color: #dfe4eb; }
|
|
809
|
-
html[data-theme="light"] .claude-picker-option.selected,
|
|
810
|
-
html[data-theme="light"] .codex-picker-option.selected { background: #dcecff; color: #075fae; }
|
|
811
|
-
|
|
812
|
-
html[data-theme="light"] .codex-status-card { border-color: #cfe0ef; background: #f5f9fc; color: #172033; box-shadow: 0 1px 2px rgba(15,23,42,.03); }
|
|
813
|
-
html[data-theme="light"] .codex-status-title { color: #0070c9; }
|
|
814
|
-
html[data-theme="light"] .codex-status-item { border-color: #dbe3eb; background: #fff; }
|
|
815
|
-
html[data-theme="light"] .codex-status-label { color: #667085; }
|
|
816
|
-
html[data-theme="light"] .codex-status-value { color: #24364b; }
|
|
817
|
-
html[data-theme="light"] .codex-warning-card { border-color: #f2cc60; background: #fff8df; color: #5e4300; }
|
|
818
|
-
html[data-theme="light"] .codex-warning-icon { background: #ffefb3; color: #9a6700; }
|
|
819
|
-
html[data-theme="light"] .codex-warning-title { color: #7a5200; }
|
|
820
|
-
html[data-theme="light"] .codex-warning-text { color: #725d28; }
|
|
821
|
-
html[data-theme="light"] .codex-compaction-card { border-color: #d9c4ef; background: #f7f0ff; color: #3f2a56; }
|
|
822
|
-
html[data-theme="light"] .codex-compaction-meta { color: #725d86; }
|
|
823
|
-
html[data-theme="light"] .codex-skill-bubble,
|
|
824
|
-
html[data-theme="light"] .codex-message-skill { border-color: #99c8f7; background: #e8f3ff; color: #075fae; }
|
|
825
|
-
html[data-theme="light"] .codex-skill-bubble-close { background: rgba(7,95,174,.10); color: #075fae; }
|
|
826
|
-
html[data-theme="light"] .codex-context-meter { --context-color: #168447; border-color: #69c98a; background: #effaf3; color: #125f34; }
|
|
827
|
-
html[data-theme="light"] .codex-context-meter::before { background: #bcebc9; }
|
|
828
|
-
html[data-theme="light"] .codex-context-meter.warn { --context-color: #a66f00; border-color: #e0b53e; background: #fff9df; color: #715000; }
|
|
829
|
-
html[data-theme="light"] .codex-context-meter.warn::before { background: #ffe59a; }
|
|
830
|
-
html[data-theme="light"] .codex-context-meter.danger { --context-color: #b53b33; border-color: #e58d86; background: #fff1f0; color: #8f2d27; }
|
|
831
|
-
html[data-theme="light"] .codex-context-meter.danger::before { background: #fac5c1; }
|
|
832
|
-
|
|
833
|
-
html[data-theme="light"] .codex-tool { border-color: #dbe1e8; background: #f7f9fb; color: #344054; }
|
|
834
|
-
html[data-theme="light"] .codex-tool-title,
|
|
835
|
-
html[data-theme="light"] .codex-inline-permission-title,
|
|
836
|
-
html[data-theme="light"] .claude-edit-file > summary,
|
|
837
|
-
html[data-theme="light"] .codex-patch-file > summary { color: #24364b; }
|
|
838
|
-
html[data-theme="light"] .codex-tool-icon,
|
|
839
|
-
html[data-theme="light"] .codex-tool-command,
|
|
840
|
-
html[data-theme="light"] .codex-tool-code,
|
|
841
|
-
html[data-theme="light"] .codex-work-group > summary,
|
|
842
|
-
html[data-theme="light"] .codex-subagent-message { color: #526174; }
|
|
843
|
-
html[data-theme="light"] .codex-tool-body,
|
|
844
|
-
html[data-theme="light"] .codex-patch-file,
|
|
845
|
-
html[data-theme="light"] .claude-edit-body { border-color: #dbe1e8; }
|
|
846
|
-
html[data-theme="light"] .codex-work-group { border-left-color: #cbd3dd; background: transparent; }
|
|
847
|
-
html[data-theme="light"] .codex-subagent-message { border-left-color: #cbd3dd; }
|
|
848
|
-
html[data-theme="light"] .codex-diff { border-color: #d9dee7; background: #f7f8fa; }
|
|
849
|
-
html[data-theme="light"] .codex-diff-line { color: #344054; }
|
|
850
|
-
html[data-theme="light"] .codex-diff-line.add { color: #176b3a; background: #dff4e7; }
|
|
851
|
-
html[data-theme="light"] .codex-diff-line.del { color: #a12b24; background: #fde5e3; }
|
|
852
|
-
html[data-theme="light"] .codex-diff-line.hunk { color: #075fae; background: #e6f2ff; }
|
|
853
|
-
html[data-theme="light"] .claude-permission,
|
|
854
|
-
html[data-theme="light"] .codex-inline-permission { border-color: #edc84f; background: #fff6cf; }
|
|
855
|
-
html[data-theme="light"] .claude-inline-permission-title { color: #795500; }
|
|
856
|
-
html[data-theme="light"] .codex-permission-result { color: #725d28; }
|
|
857
|
-
|
|
858
|
-
html[data-theme="light"] .codex-skill-header,
|
|
859
|
-
html[data-theme="light"] .codex-prompt-header { border-color: #dce2ea; background: #f3f6f9; color: #344054; }
|
|
860
|
-
html[data-theme="light"] .codex-skill-search { border-color: #cbd3dd; background: #fff; color: #172033; }
|
|
861
|
-
html[data-theme="light"] .codex-skill-search::placeholder { color: #8a94a6; }
|
|
862
|
-
html[data-theme="light"] .codex-skill-search:focus { border-color: #007aff; background: #fff; }
|
|
863
|
-
html[data-theme="light"] .codex-skill-section + .codex-skill-section,
|
|
864
|
-
html[data-theme="light"] .codex-prompt-item { border-color: #e1e5eb; }
|
|
865
|
-
html[data-theme="light"] .codex-skill-section-title { background: #e9edf2; color: #475467; }
|
|
866
|
-
html[data-theme="light"] .codex-skill-item { border-color: #e5e9ef; background: #fff; color: #172033; }
|
|
867
|
-
html[data-theme="light"] .codex-skill-item:hover { background: #f7f9fb; }
|
|
868
|
-
html[data-theme="light"] .codex-skill-item.selected { background: #e6f2ff; }
|
|
869
|
-
html[data-theme="light"] .codex-skill-source { border-color: #99c8f7; background: #e8f3ff; color: #006acb; }
|
|
870
|
-
html[data-theme="light"] .codex-skill-description { color: #667085; }
|
|
871
|
-
html[data-theme="light"] .codex-skill-directory { border-color: #d9dee7; background: #f2f4f7; color: #667085; }
|
|
872
|
-
html[data-theme="light"] .codex-prompt-time { color: #667085; }
|
|
873
|
-
|
|
874
|
-
html[data-theme="light"] .usage-period-picker select { border-color: #d9dee7; color: #172033; }
|
|
875
|
-
html[data-theme="light"] .usage-summary-card,
|
|
876
|
-
html[data-theme="light"] .usage-panel { border-color: #dfe4eb; box-shadow: 0 1px 2px rgba(15,23,42,.025); }
|
|
877
|
-
html[data-theme="light"] .usage-summary-card .value,
|
|
878
|
-
html[data-theme="light"] .usage-table tfoot td { color: #172033; }
|
|
879
|
-
html[data-theme="light"] .usage-summary-card .exact,
|
|
880
|
-
html[data-theme="light"] .usage-chart-label,
|
|
881
|
-
html[data-theme="light"] .usage-chart-total,
|
|
882
|
-
html[data-theme="light"] .usage-pricing-note { color: #667085; }
|
|
883
|
-
html[data-theme="light"] .usage-chart-track { background: #e9edf2; }
|
|
884
|
-
html[data-theme="light"] .usage-table th { border-color: #dfe4eb; color: #667085; }
|
|
885
|
-
html[data-theme="light"] .usage-table td { border-color: #edf0f3; color: #344054; }
|
|
886
|
-
html[data-theme="light"] .tool-modal-header { border-color: #e0e5ec; }
|
|
887
|
-
html[data-theme="light"] .tool-item { border: 1px solid #e0e5ec; background: #f7f9fb; color: #172033; }
|
|
888
|
-
html[data-theme="light"] .tool-item:hover,
|
|
889
|
-
html[data-theme="light"] .tool-item:active { border-color: #99c8f7; background: #eaf4ff; }
|
|
890
|
-
html[data-theme="light"] .tool-icon { background: #dceeff; color: #006acb; }
|
|
891
|
-
html[data-theme="light"] #default-cwd { color: #526174 !important; }
|
|
892
|
-
html[data-theme="light"] .usage-source-item { border: 1px solid #e1e6ed; background: #f7f9fb; color: #172033; }
|
|
893
|
-
html[data-theme="light"] .usage-source-item:hover,
|
|
894
|
-
html[data-theme="light"] .usage-source-item:active { border-color: #99c8f7; background: #eaf4ff; }
|
|
895
|
-
html[data-theme="light"] .usage-source-copy strong { color: #172033; }
|
|
896
|
-
html[data-theme="light"] .usage-source-badge { background: #dceeff; color: #006acb; }
|
|
897
|
-
html[data-theme="light"] .usage-source-arrow { color: #667085; }
|
|
898
|
-
html[data-theme="light"] .attachment-chip { border-color: #99c8f7; background: #e8f3ff; color: #173b61; }
|
|
899
|
-
html[data-theme="light"] .attachment-chip.file { border-color: #c8d0dc; background: #f2f4f7; color: #344054; }
|
|
900
|
-
html[data-theme="light"] .attachment-chip.uploading { border-color: #e6b94c; background: #fff6df; color: #715000; }
|
|
901
|
-
html[data-theme="light"] .attachment-status { color: #725d28; }
|
|
902
|
-
html[data-theme="light"] .attachment-remove { background: rgba(23,59,97,.1); color: #344054; }
|
|
903
|
-
html[data-theme="light"] .attachment-progress { background: rgba(23,59,97,.12); }
|
|
904
|
-
html[data-theme="light"] .claude-message-attachment { border-color: #b9c9dc; background: rgba(255,255,255,.72); color: #344054; }
|
|
905
|
-
html[data-theme="light"] .claude-md a { color: #006acb; }
|
|
906
|
-
|
|
907
|
-
.tool-modal-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
|
|
908
|
-
.tool-modal-header h2 { margin: 0; }
|
|
909
|
-
.tool-modal-header .icon-btn { width: 32px; height: 32px; border-radius: 50%; color: var(--text-dim); font-size: 24px; }
|
|
910
|
-
#add-step-type { border-color: var(--line) !important; background: var(--surface-soft) !important; color: var(--text) !important; }
|
|
911
|
-
|
|
912
|
-
.git-change-card { margin-bottom: 8px; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-raised); }
|
|
913
|
-
.git-change-header { display: flex; align-items: center; min-height: 42px; padding: 8px 10px; color: var(--text); cursor: pointer; font-size: 13px; font-weight: 600; outline: none; user-select: none; }
|
|
914
|
-
.git-change-header:hover { background: var(--surface-soft); }
|
|
915
|
-
.git-change-path { min-width: 0; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
916
|
-
.git-status-badge { flex: 0 0 auto; margin-left: 8px; padding: 1px 5px; border: 1px solid currentColor; border-radius: 4px; font-size: 10px; font-weight: 800; }
|
|
917
|
-
.git-status-badge.modified { color: var(--git-modified-text); }
|
|
918
|
-
.git-status-badge.added { color: var(--git-staged-color, #34c759); }
|
|
919
|
-
.git-status-badge.deleted { color: var(--git-deleted-color, #ff3b30); }
|
|
920
|
-
.git-inline-diff { border-top: 1px solid var(--line); background: var(--git-diff-bg); }
|
|
921
|
-
.git-inline-diff-body { max-height: 400px; overflow: auto; padding: 4px 0; font: 12px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
|
|
922
|
-
.git-inline-diff-footer { padding: 8px; border-top: 1px solid var(--line); background: var(--surface); text-align: center; }
|
|
923
|
-
.git-diff-panel { margin-bottom: 8px; overflow: hidden; border: 1px solid var(--line); border-radius: 6px; }
|
|
924
|
-
.git-diff-summary { padding: 7px 10px; background: var(--surface-raised); color: var(--text); cursor: pointer; font-size: 13px; font-weight: 600; outline: none; user-select: none; }
|
|
925
|
-
.git-diff-body { overflow-x: auto; padding: 4px 0; background: var(--git-diff-bg); font: 12px/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
|
|
926
|
-
.git-file-code { overflow-x: auto; margin: 0; padding: 12px 0; border-radius: 8px; background: var(--git-diff-bg); color: var(--git-diff-text); font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
|
|
927
|
-
.git-file-toolbar-group { display: flex; gap: 2px; margin-right: 8px; padding: 2px; border: 1px solid var(--line); border-radius: 5px; background: var(--surface-soft); }
|
|
928
|
-
.git-file-toolbar-button { padding: 4px 8px; border: 0; border-radius: 3px; background: transparent; color: var(--text-dim); cursor: pointer; font-size: 12px; }
|
|
929
|
-
.git-file-toolbar-button:hover { background: var(--surface-raised); color: var(--text); }
|
|
930
|
-
.git-file-mode-button { padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px; background: var(--surface-soft); color: var(--text); cursor: pointer; font-size: 12px; }
|
|
931
|
-
.git-file-mode-button.active { border-color: var(--primary); background: var(--primary); color: #fff; }
|
|
932
|
-
.git-line-number { width: 36px; flex: 0 0 36px; margin-right: 16px; color: var(--text-dim); text-align: right; user-select: none; }
|