1602 lines
32 KiB
CSS
1602 lines
32 KiB
CSS
/* Reusable component utilities using tokens */
|
|
|
|
/* Base token utility helpers */
|
|
.text-primary {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.text-secondary {
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.text-muted {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.text-inverted {
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
.text-accent {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
.bg-surface-base {
|
|
background-color: var(--surface-base);
|
|
}
|
|
|
|
.bg-surface-secondary {
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.bg-surface-muted {
|
|
background-color: var(--surface-muted);
|
|
}
|
|
|
|
.border-base {
|
|
border-color: var(--border-base);
|
|
}
|
|
|
|
.icon-muted {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.icon-accent {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
.icon-danger-hover:hover {
|
|
color: var(--status-error);
|
|
}
|
|
|
|
.icon-accent-hover:hover {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
.ring-accent-inset {
|
|
box-shadow: inset 0 0 0 2px var(--accent-primary);
|
|
}
|
|
|
|
.button-primary {
|
|
@apply inline-flex items-center justify-center gap-2 rounded-lg px-6 py-3 text-base font-medium transition-colors;
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
.button-primary:hover:not(:disabled) {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.button-primary:focus-visible {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px var(--surface-base), 0 0 0 4px var(--accent-primary);
|
|
}
|
|
|
|
.button-primary:disabled {
|
|
@apply cursor-not-allowed opacity-50;
|
|
}
|
|
|
|
/* Ensure Tailwind base reset on [type="button"] doesn't remove accent styles */
|
|
button.button-primary {
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
[data-theme="dark"] button.button-primary {
|
|
background-color: #3f3f46;
|
|
color: #f5f6f8;
|
|
}
|
|
|
|
[data-theme="dark"] button.button-primary:hover:not(:disabled) {
|
|
background-color: #52525b;
|
|
opacity: 1;
|
|
}
|
|
|
|
.button-secondary {
|
|
@apply inline-flex items-center justify-center gap-2 rounded-lg px-6 py-3 text-base font-medium transition-colors;
|
|
background-color: var(--surface-secondary);
|
|
color: var(--text-primary);
|
|
border: 1px solid var(--border-base);
|
|
}
|
|
|
|
.button-secondary:hover:not(:disabled) {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.button-secondary:focus-visible {
|
|
outline: none;
|
|
box-shadow: 0 0 0 2px var(--surface-base), 0 0 0 4px var(--accent-primary);
|
|
}
|
|
|
|
.button-secondary:disabled {
|
|
@apply cursor-not-allowed opacity-50;
|
|
}
|
|
|
|
/* Message item base styles */
|
|
|
|
.message-item-base {
|
|
@apply flex flex-col gap-2 p-3 rounded-lg w-full;
|
|
}
|
|
|
|
/* Message state badges */
|
|
.message-queued-badge {
|
|
@apply inline-block font-bold px-3 py-1 rounded mb-3 text-xs tracking-wide;
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
/* Message error block */
|
|
.message-error-block {
|
|
@apply text-sm p-3 rounded border-l-[3px] my-2;
|
|
color: var(--status-error);
|
|
background-color: rgba(244, 67, 54, 0.1);
|
|
border-color: var(--status-error);
|
|
}
|
|
|
|
[data-theme="dark"] .message-error-block {
|
|
background-color: rgba(244, 67, 54, 0.15);
|
|
}
|
|
|
|
/* Message generating indicator */
|
|
.message-generating {
|
|
@apply text-sm italic py-2;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Message sending indicator */
|
|
.message-sending {
|
|
@apply text-xs italic mt-1;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Message error indicator */
|
|
.message-error {
|
|
@apply text-xs mt-1;
|
|
color: var(--status-error);
|
|
}
|
|
|
|
/* Generating spinner animation */
|
|
.generating-spinner {
|
|
@apply inline-block;
|
|
animation: pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.5; }
|
|
}
|
|
|
|
/* Prompt input component utilities */
|
|
.prompt-input-container {
|
|
@apply flex flex-col border-t;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-base);
|
|
}
|
|
|
|
.prompt-input-wrapper {
|
|
@apply flex items-end gap-2 p-3;
|
|
}
|
|
|
|
.prompt-input {
|
|
@apply flex-1 min-h-[40px] max-h-[200px] p-2.5 border rounded-md text-sm resize-none outline-none transition-colors;
|
|
font-family: inherit;
|
|
background-color: var(--surface-base);
|
|
color: inherit;
|
|
border-color: var(--border-base);
|
|
line-height: var(--line-height-normal);
|
|
}
|
|
|
|
.prompt-input:focus {
|
|
border-color: var(--accent-primary);
|
|
}
|
|
|
|
.prompt-input:disabled {
|
|
@apply opacity-60 cursor-not-allowed;
|
|
}
|
|
|
|
.prompt-input::placeholder {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.send-button {
|
|
@apply w-10 h-10 rounded-md border-none cursor-pointer flex items-center justify-center transition-all flex-shrink-0;
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
.send-button:hover:not(:disabled) {
|
|
@apply opacity-90 scale-105;
|
|
}
|
|
|
|
.send-button:active:not(:disabled) {
|
|
@apply scale-95;
|
|
}
|
|
|
|
.send-button:disabled {
|
|
@apply opacity-40 cursor-not-allowed;
|
|
}
|
|
|
|
.send-icon {
|
|
@apply text-base;
|
|
}
|
|
|
|
.prompt-input-hints {
|
|
@apply px-4 pb-2 flex justify-between items-center;
|
|
}
|
|
|
|
.hint {
|
|
@apply text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.hint kbd {
|
|
@apply inline-block px-1.5 py-0.5 text-xs font-mono rounded mx-0.5;
|
|
background-color: var(--surface-secondary);
|
|
border: 1px solid var(--border-base);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/* Attachment chip utilities */
|
|
.attachment-chip {
|
|
@apply inline-flex items-center gap-1.5 rounded-md px-2.5 py-1 text-xs font-medium ring-1 ring-inset;
|
|
background-color: var(--accent-primary);
|
|
color: var(--accent-primary);
|
|
--attachment-bg: rgba(0, 102, 255, 0.1);
|
|
--attachment-text: #0066ff;
|
|
--attachment-ring: rgba(0, 102, 255, 0.1);
|
|
background-color: var(--attachment-bg);
|
|
color: var(--attachment-text);
|
|
ring-color: var(--attachment-ring);
|
|
}
|
|
|
|
[data-theme="dark"] .attachment-chip {
|
|
--attachment-bg: rgba(0, 128, 255, 0.1);
|
|
--attachment-text: #0080ff;
|
|
--attachment-ring: rgba(0, 128, 255, 0.2);
|
|
}
|
|
|
|
.attachment-remove {
|
|
@apply ml-0.5 flex h-4 w-4 items-center justify-center rounded transition-colors;
|
|
}
|
|
|
|
.attachment-remove:hover {
|
|
background-color: rgba(0, 102, 255, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .attachment-remove:hover {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
}
|
|
|
|
/* Neutral badge utilities */
|
|
.neutral-badge {
|
|
@apply inline-flex items-center rounded px-1.5 py-0.5 text-xs font-normal;
|
|
--badge-bg: rgba(0, 102, 255, 0.05);
|
|
--badge-text: #0066ff;
|
|
background-color: var(--badge-bg);
|
|
color: var(--badge-text);
|
|
}
|
|
|
|
[data-theme="dark"] .neutral-badge {
|
|
--badge-bg: rgba(0, 128, 255, 0.15);
|
|
--badge-text: #0080ff;
|
|
}
|
|
|
|
/* Status badge utilities */
|
|
.status-badge {
|
|
@apply inline-flex items-center gap-1.5 rounded px-2 py-1 text-xs font-medium;
|
|
}
|
|
|
|
.status-badge.ready {
|
|
background-color: rgba(34, 197, 94, 0.1);
|
|
color: #16a34a;
|
|
}
|
|
|
|
[data-theme="dark"] .status-badge.ready {
|
|
background-color: rgba(34, 197, 94, 0.2);
|
|
color: #22c55e;
|
|
}
|
|
|
|
.status-badge.starting {
|
|
background-color: rgba(250, 204, 21, 0.1);
|
|
color: #ca8a04;
|
|
}
|
|
|
|
[data-theme="dark"] .status-badge.starting {
|
|
background-color: rgba(250, 204, 21, 0.2);
|
|
color: #facc15;
|
|
}
|
|
|
|
.status-badge.error {
|
|
background-color: rgba(239, 68, 68, 0.1);
|
|
color: #dc2626;
|
|
}
|
|
|
|
[data-theme="dark"] .status-badge.error {
|
|
background-color: rgba(239, 68, 68, 0.2);
|
|
color: #ef4444;
|
|
}
|
|
|
|
.status-badge.stopped {
|
|
background-color: rgba(107, 114, 128, 0.1);
|
|
color: #6b7280;
|
|
}
|
|
|
|
[data-theme="dark"] .status-badge.stopped {
|
|
background-color: rgba(107, 114, 128, 0.2);
|
|
color: #9ca3af;
|
|
}
|
|
|
|
.status-dot {
|
|
@apply w-1 h-1 rounded-full;
|
|
}
|
|
|
|
.status-dot.ready {
|
|
background-color: #16a34a;
|
|
}
|
|
|
|
.status-dot.starting {
|
|
background-color: #ca8a04;
|
|
}
|
|
|
|
.status-dot.error {
|
|
background-color: #dc2626;
|
|
}
|
|
|
|
.status-dot.stopped {
|
|
background-color: #6b7280;
|
|
}
|
|
|
|
/* Tab component utilities */
|
|
.tab-bar {
|
|
@apply border-b;
|
|
border-color: var(--border-base);
|
|
}
|
|
|
|
.tab-bar-instance {
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.tab-bar-session {
|
|
background-color: var(--surface-base);
|
|
}
|
|
|
|
[data-theme="dark"] .tab-bar-session {
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.tab-container {
|
|
@apply flex items-center justify-between gap-1 px-2 py-1 overflow-x-auto;
|
|
}
|
|
|
|
.tab-base {
|
|
@apply inline-flex items-center gap-2 px-3 py-2 rounded-t-md max-w-[200px] transition-colors text-sm font-medium;
|
|
font-family: var(--font-family-sans);
|
|
outline: none;
|
|
}
|
|
|
|
.tab-base:focus-visible {
|
|
@apply ring-2 ring-offset-1;
|
|
ring-color: var(--accent-primary);
|
|
ring-offset-color: var(--surface-base);
|
|
}
|
|
|
|
.tab-active {
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
.tab-inactive {
|
|
background-color: var(--surface-secondary);
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.tab-inactive:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
[data-theme="dark"] .tab-active {
|
|
background-color: #3f3f46;
|
|
color: #f5f6f8;
|
|
}
|
|
|
|
[data-theme="dark"] .tab-active:hover {
|
|
background-color: #52525b;
|
|
}
|
|
|
|
[data-theme="dark"] .tab-inactive {
|
|
background-color: #2a2a31;
|
|
color: #d4d4d8;
|
|
}
|
|
|
|
[data-theme="dark"] .tab-inactive:hover {
|
|
background-color: #3f3f46;
|
|
color: #f5f6f8;
|
|
}
|
|
|
|
.tab-label {
|
|
@apply truncate;
|
|
}
|
|
|
|
.tab-close {
|
|
@apply opacity-0 group-hover:opacity-100 hover:bg-red-500 hover:text-white rounded p-0.5 transition-all cursor-pointer;
|
|
}
|
|
|
|
.tab-close:focus-visible {
|
|
@apply ring-2 ring-offset-1;
|
|
ring-color: var(--accent-primary);
|
|
ring-offset-color: inherit;
|
|
}
|
|
|
|
.new-tab-button {
|
|
@apply inline-flex items-center justify-center w-8 h-8 rounded-md transition-colors;
|
|
background-color: var(--surface-secondary);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.new-tab-button:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
[data-theme="dark"] .new-tab-button {
|
|
background-color: #3f3f46;
|
|
color: #f5f6f8;
|
|
}
|
|
|
|
[data-theme="dark"] .new-tab-button:hover {
|
|
background-color: #52525b;
|
|
}
|
|
|
|
.new-tab-button:focus-visible {
|
|
@apply ring-2 ring-offset-1;
|
|
ring-color: var(--accent-primary);
|
|
ring-offset-color: var(--surface-base);
|
|
}
|
|
|
|
/* Session tab specific styles */
|
|
.session-tab-base {
|
|
@apply inline-flex items-center gap-2 px-3 py-1.5 rounded-t-md max-w-[150px] transition-colors text-sm;
|
|
font-family: var(--font-family-sans);
|
|
outline: none;
|
|
border-bottom: 2px solid transparent;
|
|
}
|
|
|
|
.session-tab-base:focus-visible {
|
|
@apply ring-2 ring-offset-1;
|
|
ring-color: var(--accent-primary);
|
|
ring-offset-color: var(--surface-base);
|
|
}
|
|
|
|
.session-tab-active {
|
|
background-color: var(--surface-base);
|
|
border-bottom-color: var(--accent-primary);
|
|
color: var(--text-primary);
|
|
font-weight: var(--font-weight-medium);
|
|
}
|
|
|
|
[data-theme="dark"] .session-tab-active {
|
|
background-color: var(--surface-muted);
|
|
}
|
|
|
|
.session-tab-inactive {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.session-tab-inactive:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.session-tab-special {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Message stream component utilities */
|
|
.message-stream-container {
|
|
@apply relative flex-1 flex flex-col overflow-hidden;
|
|
}
|
|
|
|
.connection-status {
|
|
@apply flex justify-center items-center px-4 py-2 gap-4;
|
|
background-color: var(--surface-secondary);
|
|
border-bottom: 1px solid var(--border-base);
|
|
}
|
|
|
|
.connection-status-text {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.status-indicator {
|
|
@apply flex items-center gap-1.5 text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.status-dot {
|
|
@apply w-2 h-2 rounded-full;
|
|
}
|
|
|
|
.status-indicator.connected .status-dot {
|
|
background-color: var(--status-success);
|
|
}
|
|
|
|
.status-indicator.connecting .status-dot {
|
|
background-color: var(--status-warning);
|
|
animation: pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.status-indicator.disconnected .status-dot {
|
|
background-color: var(--status-error);
|
|
}
|
|
|
|
.message-stream {
|
|
@apply flex-1 overflow-y-auto p-4 flex flex-col gap-4;
|
|
background-color: var(--surface-base);
|
|
color: inherit;
|
|
}
|
|
|
|
/* Tool call message wrapper */
|
|
.tool-call-message {
|
|
@apply flex flex-col gap-2 p-3 rounded-lg w-full;
|
|
background-color: var(--message-tool-bg);
|
|
border-left: 4px solid var(--message-tool-border);
|
|
color: inherit;
|
|
}
|
|
|
|
.tool-call-header-label {
|
|
@apply flex items-center gap-2 font-semibold text-sm;
|
|
color: var(--text-muted);
|
|
margin-bottom: 1px;
|
|
}
|
|
|
|
.tool-call-header-label .tool-call-icon {
|
|
@apply text-base;
|
|
}
|
|
|
|
.tool-call-header-label .tool-name {
|
|
font-family: var(--font-family-mono);
|
|
color: inherit;
|
|
background-color: var(--surface-secondary);
|
|
border: 1px solid var(--border-base);
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* Message text styling */
|
|
.message-text {
|
|
font-size: var(--font-size-base);
|
|
line-height: var(--line-height-normal);
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
color: inherit;
|
|
}
|
|
|
|
.message-text pre {
|
|
overflow-x: auto;
|
|
padding: 8px;
|
|
background-color: var(--surface-code);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Message error part */
|
|
.message-error-part {
|
|
color: var(--status-error);
|
|
font-size: var(--font-size-base);
|
|
padding: 8px;
|
|
background-color: rgba(244, 67, 54, 0.1);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
[data-theme="dark"] .message-error-part {
|
|
background-color: rgba(244, 67, 54, 0.15);
|
|
}
|
|
|
|
/* Message reasoning */
|
|
.message-reasoning {
|
|
@apply my-2 border rounded;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
color: inherit;
|
|
}
|
|
|
|
.reasoning-container {
|
|
@apply p-2;
|
|
}
|
|
|
|
.reasoning-header {
|
|
@apply flex items-center gap-1.5 text-xs cursor-pointer select-none;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.reasoning-header:hover {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
.reasoning-icon {
|
|
@apply text-xs;
|
|
transition: transform 150ms ease;
|
|
}
|
|
|
|
.reasoning-label {
|
|
font-weight: var(--font-weight-medium);
|
|
}
|
|
|
|
/* Tool call component */
|
|
.tool-call {
|
|
@apply border rounded-md overflow-hidden;
|
|
border-color: var(--border-base);
|
|
color: inherit;
|
|
}
|
|
|
|
.tool-call-message .tool-call {
|
|
border: none;
|
|
border-radius: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.tool-call-header {
|
|
@apply flex items-center gap-2 p-2 w-full bg-transparent border-none cursor-pointer text-left;
|
|
font-family: var(--font-family-mono);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.tool-call-header:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.tool-call-icon {
|
|
@apply text-xs;
|
|
}
|
|
|
|
.tool-call-summary {
|
|
@apply flex-1 text-left;
|
|
}
|
|
|
|
.tool-call-status {
|
|
@apply text-sm;
|
|
}
|
|
|
|
.tool-call-status-success {
|
|
border-left: 3px solid var(--status-success);
|
|
}
|
|
|
|
.tool-call-status-error {
|
|
border-left: 3px solid var(--status-error);
|
|
}
|
|
|
|
.tool-call-status-running {
|
|
border-left: 3px solid var(--status-warning);
|
|
}
|
|
|
|
.tool-call-status-running .tool-call-status {
|
|
animation: pulse 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
.tool-call-status-pending {
|
|
border-left: 3px solid var(--accent-primary);
|
|
}
|
|
|
|
.tool-call-status-pending .tool-call-summary {
|
|
animation: shimmer 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes shimmer {
|
|
0%, 100% { opacity: 0.6; }
|
|
50% { opacity: 1; }
|
|
}
|
|
|
|
.tool-call-preview {
|
|
@apply p-2 flex flex-col gap-1.5;
|
|
background-color: var(--surface-code);
|
|
border-top: 1px solid var(--border-base);
|
|
}
|
|
|
|
.tool-call-preview-label {
|
|
@apply text-xs font-semibold uppercase tracking-wide;
|
|
color: var(--text-muted);
|
|
letter-spacing: 0.5px;
|
|
}
|
|
|
|
.tool-call-preview-text {
|
|
font-family: var(--font-family-mono);
|
|
font-size: var(--font-size-xs);
|
|
line-height: var(--line-height-tight);
|
|
color: var(--text-muted);
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
max-height: calc(10 * 1.4em);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.tool-call-details {
|
|
@apply p-3 flex flex-col gap-2;
|
|
background-color: var(--surface-code);
|
|
font-size: var(--font-size-xs);
|
|
}
|
|
|
|
.tool-call-section h4 {
|
|
font-size: var(--font-size-xs);
|
|
font-weight: var(--font-weight-semibold);
|
|
margin-bottom: 4px;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.tool-call-section pre {
|
|
margin: 0;
|
|
padding: 8px;
|
|
background-color: var(--surface-base);
|
|
border-radius: 4px;
|
|
overflow-x: auto;
|
|
max-height: calc(25 * 1.4em);
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.tool-call-section code {
|
|
font-family: var(--font-family-mono);
|
|
font-size: var(--font-size-xs);
|
|
line-height: var(--line-height-tight);
|
|
}
|
|
|
|
.tool-call-section pre::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
.tool-call-section pre::-webkit-scrollbar-track {
|
|
background: var(--surface-secondary);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.tool-call-section pre::-webkit-scrollbar-thumb {
|
|
background: var(--border-base);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.tool-call-section pre::-webkit-scrollbar-thumb:hover {
|
|
background: var(--text-muted);
|
|
}
|
|
|
|
.tool-call-pending-message {
|
|
@apply flex items-center gap-2 p-3 text-xs italic;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.tool-call-emoji {
|
|
@apply text-base mr-1;
|
|
}
|
|
|
|
.tool-call-bash,
|
|
.tool-call-diff {
|
|
@apply my-2;
|
|
}
|
|
|
|
.tool-call-content {
|
|
background-color: var(--surface-secondary);
|
|
border: 1px solid var(--border-base);
|
|
border-radius: 4px;
|
|
padding: 8px 12px;
|
|
font-family: var(--font-family-mono);
|
|
font-size: var(--font-size-xs);
|
|
line-height: var(--line-height-tight);
|
|
overflow-x: auto;
|
|
margin: 0;
|
|
}
|
|
|
|
.tool-call-content code {
|
|
font-family: inherit;
|
|
background: none;
|
|
padding: 0;
|
|
font-size: inherit;
|
|
}
|
|
|
|
.tool-call-todos {
|
|
@apply my-2 flex flex-col gap-1;
|
|
}
|
|
|
|
.tool-call-todo-item {
|
|
font-family: var(--font-family-mono);
|
|
font-size: var(--font-size-xs);
|
|
line-height: var(--line-height-normal);
|
|
}
|
|
|
|
.tool-call-todo-item code {
|
|
background-color: rgba(0, 102, 255, 0.12);
|
|
padding: 2px 4px;
|
|
border-radius: 2px;
|
|
font-family: var(--font-family-mono);
|
|
color: inherit;
|
|
}
|
|
|
|
[data-theme="dark"] .tool-call-todo-item code {
|
|
background-color: rgba(0, 128, 255, 0.22);
|
|
}
|
|
|
|
.tool-call-task-summary {
|
|
@apply my-2 flex flex-col gap-1.5;
|
|
}
|
|
|
|
.tool-call-task-item {
|
|
font-size: var(--font-size-xs);
|
|
line-height: var(--line-height-normal);
|
|
padding-left: 8px;
|
|
border-left: 2px solid var(--border-base);
|
|
}
|
|
|
|
.tool-call-task-item::before {
|
|
content: "∟ ";
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.tool-call-error-content {
|
|
background-color: rgba(244, 67, 54, 0.1);
|
|
border-left: 3px solid var(--status-error);
|
|
padding: 12px;
|
|
margin: 8px 0;
|
|
border-radius: 4px;
|
|
color: var(--status-error);
|
|
font-size: var(--font-size-xs);
|
|
}
|
|
|
|
[data-theme="dark"] .tool-call-error-content {
|
|
background-color: rgba(244, 67, 54, 0.2);
|
|
}
|
|
|
|
.tool-call-error-content strong {
|
|
font-weight: var(--font-weight-semibold);
|
|
}
|
|
|
|
/* Scroll to bottom button */
|
|
.scroll-to-bottom {
|
|
@apply absolute bottom-4 right-4 w-10 h-10 rounded-full border-none shadow-lg cursor-pointer text-xl flex items-center justify-center transition-transform;
|
|
background-color: var(--accent-primary);
|
|
color: white;
|
|
}
|
|
|
|
.scroll-to-bottom:hover {
|
|
transform: scale(1.1);
|
|
}
|
|
|
|
/* Empty state */
|
|
.empty-state {
|
|
@apply flex-1 flex items-center justify-center p-12;
|
|
}
|
|
|
|
.empty-state-content {
|
|
@apply text-center max-w-sm;
|
|
}
|
|
|
|
.empty-state-content h3 {
|
|
font-size: var(--font-size-xl);
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.empty-state-content p {
|
|
font-size: var(--font-size-base);
|
|
color: var(--text-muted);
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.empty-state-content ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
@apply flex flex-col gap-2;
|
|
}
|
|
|
|
.empty-state-content li {
|
|
font-size: var(--font-size-base);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.empty-state-content code {
|
|
background-color: var(--surface-code);
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
font-family: var(--font-family-mono);
|
|
font-size: 13px;
|
|
}
|
|
|
|
/* Loading state */
|
|
.loading-state {
|
|
@apply flex-1 flex flex-col items-center justify-center gap-4 p-12;
|
|
}
|
|
|
|
.spinner {
|
|
@apply w-8 h-8 border-2 border-t-transparent rounded-full;
|
|
border-color: var(--border-base);
|
|
border-top-color: var(--accent-primary);
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% { opacity: 1; }
|
|
50% { opacity: 0.5; }
|
|
}
|
|
|
|
/* Dropdown utilities */
|
|
.dropdown-surface {
|
|
@apply absolute w-full rounded-md shadow-lg z-50;
|
|
background-color: var(--surface-base);
|
|
border: 1px solid var(--border-base);
|
|
}
|
|
|
|
.dropdown-header {
|
|
@apply px-3 py-2 border-b;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.dropdown-header-title {
|
|
@apply text-xs font-medium;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.dropdown-section-header {
|
|
@apply px-3 py-1.5 text-xs font-semibold;
|
|
color: var(--text-muted);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.dropdown-content {
|
|
@apply overflow-y-auto;
|
|
}
|
|
|
|
.dropdown-item {
|
|
@apply cursor-pointer px-3 py-2 transition-colors;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.dropdown-item:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.dropdown-item-highlight {
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
[data-theme="dark"] .dropdown-item-highlight {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.dropdown-empty {
|
|
@apply px-3 py-4 text-center text-sm;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.dropdown-loading {
|
|
@apply p-4 text-center text-sm;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.dropdown-footer {
|
|
@apply border-t px-3 py-2 text-xs;
|
|
border-color: var(--border-base);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.dropdown-badge {
|
|
@apply rounded px-1.5 py-0.5 text-xs font-normal;
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
[data-theme="dark"] .dropdown-badge {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.dropdown-diff-added {
|
|
@apply text-xs;
|
|
color: var(--status-success);
|
|
}
|
|
|
|
.dropdown-diff-removed {
|
|
@apply text-xs;
|
|
color: var(--status-error);
|
|
}
|
|
|
|
.dropdown-icon {
|
|
@apply flex-shrink-0;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.dropdown-icon-accent {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
[data-theme="dark"] .dropdown-icon-accent {
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
/* Selector component utilities */
|
|
.selector-trigger {
|
|
@apply inline-flex items-center justify-between gap-2 px-2 py-1 border rounded outline-none transition-colors text-xs min-w-[180px];
|
|
background-color: var(--surface-base);
|
|
border-color: var(--border-base);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-trigger:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.selector-trigger:focus {
|
|
@apply ring-2;
|
|
ring-color: var(--accent-primary);
|
|
}
|
|
|
|
.selector-trigger-disabled {
|
|
@apply opacity-50 cursor-not-allowed;
|
|
}
|
|
|
|
.selector-trigger-label {
|
|
@apply flex flex-col items-start min-w-0;
|
|
}
|
|
|
|
.selector-trigger-primary {
|
|
color: var(--text-primary);
|
|
font-weight: var(--font-weight-medium);
|
|
}
|
|
|
|
.selector-trigger-secondary {
|
|
color: var(--text-muted);
|
|
font-size: 10px;
|
|
}
|
|
|
|
.selector-trigger-icon {
|
|
@apply flex-shrink-0;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-popover {
|
|
@apply rounded-md shadow-lg overflow-hidden z-50 min-w-[300px];
|
|
background-color: var(--surface-base);
|
|
border: 1px solid var(--border-base);
|
|
}
|
|
|
|
.selector-search-container {
|
|
@apply p-2 border-b;
|
|
border-color: var(--border-base);
|
|
}
|
|
|
|
.selector-search-input {
|
|
@apply w-full px-3 py-1.5 text-xs border rounded outline-none transition-colors;
|
|
background-color: var(--surface-base);
|
|
border-color: var(--border-base);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-search-input:focus {
|
|
@apply ring-2;
|
|
ring-color: var(--accent-primary);
|
|
}
|
|
|
|
.selector-search-input::placeholder {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-listbox {
|
|
@apply max-h-64 overflow-auto p-1;
|
|
background-color: var(--surface-base);
|
|
}
|
|
|
|
.selector-option {
|
|
@apply px-3 py-2 cursor-pointer rounded outline-none transition-colors flex items-start gap-2 w-full;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-option:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.selector-option[data-highlighted],
|
|
.selector-option[data-focused] {
|
|
background-color: rgba(0, 102, 255, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .selector-option[data-highlighted],
|
|
[data-theme="dark"] .selector-option[data-focused] {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
}
|
|
|
|
.selector-option[data-selected] {
|
|
background-color: rgba(0, 102, 255, 0.15);
|
|
}
|
|
|
|
.selector-option-selected {
|
|
background-color: rgba(0, 102, 255, 0.15);
|
|
}
|
|
|
|
[data-theme="dark"] .selector-option[data-selected] {
|
|
background-color: rgba(0, 128, 255, 0.25);
|
|
}
|
|
|
|
[data-theme="dark"] .selector-option-selected {
|
|
background-color: rgba(0, 128, 255, 0.25);
|
|
}
|
|
|
|
.selector-option-content {
|
|
@apply flex flex-col flex-1 min-w-0;
|
|
}
|
|
|
|
.selector-option-label {
|
|
@apply font-medium text-sm;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-option-description {
|
|
@apply text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-option .remove-binary-button {
|
|
opacity: 0;
|
|
}
|
|
|
|
.selector-option:hover .remove-binary-button {
|
|
opacity: 1;
|
|
}
|
|
|
|
.remove-binary-button {
|
|
@apply p-1 rounded transition-all;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.remove-binary-button:hover {
|
|
background-color: rgba(239, 68, 68, 0.1);
|
|
color: var(--status-error);
|
|
}
|
|
|
|
[data-theme="dark"] .remove-binary-button:hover {
|
|
background-color: rgba(239, 68, 68, 0.2);
|
|
}
|
|
|
|
.selector-option-indicator {
|
|
@apply flex-shrink-0 mt-0.5;
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
.selector-section {
|
|
@apply px-3 py-2 border-b;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.selector-section-title {
|
|
@apply text-xs font-medium;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-badge {
|
|
@apply rounded px-1.5 py-0.5 text-xs font-normal;
|
|
background-color: var(--accent-primary);
|
|
color: var(--text-inverted);
|
|
}
|
|
|
|
[data-theme="dark"] .selector-badge {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-badge-version {
|
|
@apply text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-badge-time {
|
|
@apply text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-validation-error {
|
|
@apply p-2 rounded border;
|
|
background-color: rgba(244, 67, 54, 0.1);
|
|
border-color: var(--status-error);
|
|
color: var(--status-error);
|
|
}
|
|
|
|
[data-theme="dark"] .selector-validation-error {
|
|
background-color: rgba(244, 67, 54, 0.2);
|
|
}
|
|
|
|
.selector-validation-error-content {
|
|
@apply flex items-start gap-2;
|
|
}
|
|
|
|
.selector-validation-error-icon {
|
|
@apply w-4 h-4 mt-0.5 flex-shrink-0;
|
|
color: var(--status-error);
|
|
}
|
|
|
|
.selector-validation-error-text {
|
|
@apply text-xs;
|
|
}
|
|
|
|
.selector-input-group {
|
|
@apply flex gap-2;
|
|
}
|
|
|
|
.selector-input {
|
|
@apply flex-1 px-2 py-1.5 text-sm border rounded outline-none transition-colors;
|
|
background-color: var(--surface-base);
|
|
border-color: var(--border-base);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-input:focus {
|
|
@apply ring-1;
|
|
ring-color: var(--accent-primary);
|
|
}
|
|
|
|
.selector-input::placeholder {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-button {
|
|
@apply px-3 py-1.5 text-sm rounded transition-colors cursor-pointer w-full inline-flex items-center justify-center font-medium;
|
|
background-color: var(--surface-secondary);
|
|
color: var(--text-primary);
|
|
border: 1px solid var(--border-base);
|
|
}
|
|
|
|
.selector-button-primary {
|
|
background-color: var(--accent-primary) !important;
|
|
color: var(--text-inverted) !important;
|
|
border: 1px solid var(--accent-primary) !important;
|
|
}
|
|
|
|
.selector-button-primary:hover:not(:disabled) {
|
|
background-color: var(--accent-hover);
|
|
}
|
|
|
|
.selector-button-primary:disabled {
|
|
@apply opacity-50 cursor-not-allowed;
|
|
background-color: var(--surface-muted);
|
|
}
|
|
|
|
[data-theme="dark"] .selector-button-primary:disabled {
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.selector-button-secondary {
|
|
background-color: var(--surface-secondary);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.selector-button-secondary:hover:not(:disabled) {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.selector-button-secondary:disabled {
|
|
@apply opacity-50 cursor-not-allowed;
|
|
}
|
|
|
|
.focus-ring-accent:focus {
|
|
outline: none;
|
|
border-color: transparent;
|
|
box-shadow: 0 0 0 2px var(--accent-primary);
|
|
}
|
|
|
|
.selector-empty-state {
|
|
@apply p-4 text-center text-sm;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-loading {
|
|
@apply flex items-center gap-2;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.selector-loading-spinner {
|
|
@apply w-4 h-4 animate-spin;
|
|
color: var(--accent-primary);
|
|
}
|
|
|
|
/* Modal utilities */
|
|
.modal-overlay {
|
|
@apply fixed inset-0 z-50;
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.modal-surface {
|
|
@apply rounded-lg shadow-2xl flex flex-col;
|
|
background-color: var(--surface-base);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.modal-search-container {
|
|
@apply p-4 border-b;
|
|
border-color: var(--border-base);
|
|
}
|
|
|
|
.modal-search-input {
|
|
@apply flex-1 bg-transparent outline-none;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.modal-search-input::placeholder {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.modal-search-icon {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.modal-list-container {
|
|
@apply flex-1 overflow-y-auto;
|
|
}
|
|
|
|
.modal-section-header {
|
|
@apply px-4 py-2 text-xs font-semibold uppercase tracking-wide;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.modal-item {
|
|
@apply w-full px-4 py-3 flex items-start gap-3 transition-colors cursor-pointer border-none text-left;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.modal-item:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.modal-item-highlight {
|
|
background-color: rgba(0, 102, 255, 0.1);
|
|
}
|
|
|
|
[data-theme="dark"] .modal-item-highlight {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
}
|
|
|
|
.modal-item-label {
|
|
@apply font-medium;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.modal-item-description {
|
|
@apply text-sm mt-0.5;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.modal-empty-state {
|
|
@apply p-8 text-center;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Keyboard utilities */
|
|
.kbd {
|
|
@apply inline-flex items-center gap-0.5 font-mono text-xs px-1.5 py-0.5 rounded;
|
|
background-color: var(--surface-secondary);
|
|
border: 1px solid var(--border-base);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.kbd-separator {
|
|
@apply opacity-50;
|
|
}
|
|
|
|
/* Panel component utilities */
|
|
.panel {
|
|
@apply rounded-lg shadow-sm border overflow-hidden;
|
|
background-color: var(--surface-base);
|
|
border-color: var(--border-base);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.panel-header {
|
|
@apply px-4 py-3 border-b;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.panel-title {
|
|
@apply text-base font-semibold;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.panel-subtitle {
|
|
@apply text-xs mt-0.5;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.panel-body {
|
|
@apply p-4;
|
|
background-color: var(--surface-base);
|
|
}
|
|
|
|
.panel-section {
|
|
@apply border-t;
|
|
border-color: var(--border-base);
|
|
}
|
|
|
|
.panel-section-header {
|
|
@apply w-full px-4 py-3 flex items-center justify-center transition-colors cursor-pointer gap-2;
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.panel-section-header:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.panel-section-content {
|
|
@apply px-4 py-3 border-t overflow-visible space-y-4 w-full;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.panel-list {
|
|
@apply max-h-[400px] overflow-y-auto;
|
|
}
|
|
|
|
.panel-list-item {
|
|
@apply border-b last:border-b-0 transition-colors w-full;
|
|
border-color: var(--border-base);
|
|
}
|
|
|
|
.panel-list-item:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.panel-list-item-highlight {
|
|
background-color: rgba(0, 102, 255, 0.1) !important;
|
|
}
|
|
|
|
[data-theme="dark"] .panel-list-item-highlight {
|
|
background-color: rgba(0, 128, 255, 0.2) !important;
|
|
}
|
|
|
|
.panel-list-item-content {
|
|
@apply flex-1 text-left px-4 py-3 flex items-center justify-between gap-3 outline-none transition-colors w-full;
|
|
}
|
|
|
|
.panel-list-item-content:hover {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.panel-empty-state {
|
|
@apply p-6 text-center;
|
|
}
|
|
|
|
.panel-empty-state-icon {
|
|
@apply text-gray-400 dark:text-gray-600 mb-2;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.panel-empty-state-title {
|
|
@apply font-medium text-sm mb-1;
|
|
color: var(--text-secondary);
|
|
}
|
|
|
|
.panel-empty-state-description {
|
|
@apply text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.panel-footer {
|
|
@apply px-4 py-3 border-t;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.panel-footer-hints {
|
|
@apply flex items-center justify-center flex-wrap gap-3 text-xs;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Log view specific utilities */
|
|
.log-container {
|
|
@apply flex flex-col h-full;
|
|
background-color: var(--surface-base);
|
|
}
|
|
|
|
.log-header {
|
|
@apply flex items-center justify-between px-4 py-3 border-b;
|
|
border-color: var(--border-base);
|
|
background-color: var(--surface-secondary);
|
|
}
|
|
|
|
.log-content {
|
|
@apply flex-1 overflow-y-auto p-4 font-mono text-xs leading-relaxed;
|
|
background-color: var(--surface-secondary);
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.log-entry {
|
|
@apply flex gap-3 py-0.5 px-2 -mx-2 rounded transition-colors;
|
|
}
|
|
|
|
.log-entry:hover {
|
|
background-color: var(--surface-hover);
|
|
}
|
|
|
|
.log-timestamp {
|
|
@apply select-none shrink-0;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.log-message {
|
|
@apply break-all;
|
|
}
|
|
|
|
.log-level-error {
|
|
color: var(--status-error);
|
|
}
|
|
|
|
.log-level-warn {
|
|
color: var(--status-warning);
|
|
}
|
|
|
|
.log-level-debug {
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
.log-level-default {
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.log-empty-state {
|
|
@apply text-center py-8;
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Environment variables display */
|
|
.env-vars-container {
|
|
@apply px-4 py-3 border-b;
|
|
background-color: rgba(0, 102, 255, 0.1);
|
|
border-color: rgba(0, 102, 255, 0.2);
|
|
}
|
|
|
|
[data-theme="dark"] .env-vars-container {
|
|
background-color: rgba(0, 128, 255, 0.2);
|
|
border-color: rgba(0, 128, 255, 0.3);
|
|
}
|
|
|
|
.env-vars-title {
|
|
@apply text-xs font-medium mb-2;
|
|
color: #0066ff;
|
|
}
|
|
|
|
[data-theme="dark"] .env-vars-title {
|
|
color: #0080ff;
|
|
}
|
|
|
|
.env-var-item {
|
|
@apply flex items-center gap-2 text-xs;
|
|
}
|
|
|
|
.env-var-key {
|
|
@apply font-mono font-medium min-w-0 flex-1;
|
|
color: #0066ff;
|
|
}
|
|
|
|
[data-theme="dark"] .env-var-key {
|
|
color: #0080ff;
|
|
}
|
|
|
|
.env-var-separator {
|
|
color: #0066ff;
|
|
}
|
|
|
|
[data-theme="dark"] .env-var-separator {
|
|
color: #0080ff;
|
|
}
|
|
|
|
.env-var-value {
|
|
@apply font-mono min-w-0 flex-1;
|
|
color: #0066ff;
|
|
}
|
|
|
|
[data-theme="dark"] .env-var-value {
|
|
color: #0080ff;
|
|
}
|
|
|
|
/* Session view utility */
|
|
.session-view {
|
|
@apply flex flex-col h-full;
|
|
background-color: var(--surface-base);
|
|
color: inherit;
|
|
} |