| |
| |
| |
|
|
| |
| .chat-group { |
| display: flex; |
| gap: 10px; |
| align-items: flex-start; |
| margin-bottom: 14px; |
| margin-left: 4px; |
| margin-right: 16px; |
| } |
|
|
| |
| .chat-group.user { |
| flex-direction: row-reverse; |
| justify-content: flex-start; |
| } |
|
|
| .chat-group-messages { |
| display: flex; |
| flex-direction: column; |
| gap: 2px; |
| max-width: min(900px, calc(100% - 60px)); |
| } |
|
|
| |
| .chat-group.user .chat-group-messages { |
| align-items: flex-end; |
| } |
|
|
| .chat-group.user .chat-group-footer { |
| justify-content: flex-end; |
| } |
|
|
| |
| .chat-group-footer { |
| display: flex; |
| gap: 8px; |
| align-items: baseline; |
| margin-top: 6px; |
| } |
|
|
| .chat-sender-name { |
| font-weight: 500; |
| font-size: 12px; |
| color: var(--muted); |
| } |
|
|
| .chat-group-timestamp { |
| font-size: 11px; |
| color: var(--muted); |
| opacity: 0.7; |
| } |
|
|
| |
| .chat-group-footer button { |
| background: none; |
| border: none; |
| cursor: pointer; |
| padding: 2px; |
| border-radius: var(--radius-sm, 4px); |
| color: var(--muted); |
| opacity: 0; |
| pointer-events: none; |
| transition: |
| opacity 120ms ease-out, |
| color 120ms ease-out, |
| background 120ms ease-out; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| } |
|
|
| .chat-group:hover .chat-group-footer button { |
| opacity: 0.6; |
| pointer-events: auto; |
| } |
|
|
| .chat-group-footer button:hover { |
| opacity: 1 !important; |
| background: var(--bg-hover, rgba(255, 255, 255, 0.08)); |
| } |
|
|
| .chat-group-footer button svg { |
| width: 14px; |
| height: 14px; |
| fill: none; |
| stroke: currentColor; |
| stroke-width: 2; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| } |
|
|
| .chat-tts-btn--active { |
| opacity: 1 !important; |
| pointer-events: auto !important; |
| color: var(--accent, #3b82f6); |
| } |
|
|
| .chat-group-delete:hover { |
| color: var(--danger, #ef4444) !important; |
| } |
|
|
| |
| .chat-divider { |
| display: flex; |
| align-items: center; |
| gap: 10px; |
| margin: 18px 8px; |
| color: var(--muted); |
| font-size: 11px; |
| letter-spacing: 0.08em; |
| text-transform: uppercase; |
| user-select: none; |
| } |
|
|
| .chat-divider__line { |
| flex: 1 1 0; |
| height: 1px; |
| background: var(--border); |
| opacity: 0.9; |
| } |
|
|
| .chat-divider__label { |
| padding: 2px 10px; |
| border: 1px solid var(--border); |
| border-radius: 999px; |
| background: rgba(255, 255, 255, 0.02); |
| } |
|
|
| |
| .chat-avatar { |
| width: 36px; |
| height: 36px; |
| border-radius: 10px; |
| background: var(--panel-strong); |
| display: grid; |
| place-items: center; |
| font-weight: 600; |
| font-size: 13px; |
| flex-shrink: 0; |
| align-self: flex-end; |
| margin-bottom: 4px; |
| border: 1px solid var(--border); |
| } |
|
|
| .chat-avatar.user { |
| background: var(--accent-subtle); |
| color: var(--accent); |
| border-color: color-mix(in srgb, var(--accent) 20%, transparent); |
| } |
|
|
| .chat-avatar.assistant { |
| background: var(--secondary); |
| color: var(--muted); |
| } |
|
|
| .chat-avatar.other { |
| background: var(--secondary); |
| color: var(--muted); |
| } |
|
|
| .chat-avatar.tool { |
| background: var(--secondary); |
| color: var(--muted); |
| } |
|
|
| |
| img.chat-avatar { |
| display: block; |
| object-fit: cover; |
| object-position: center; |
| } |
|
|
| |
| .chat-bubble { |
| position: relative; |
| display: inline-block; |
| border: 1px solid var(--border); |
| background: var(--card); |
| border-radius: var(--radius-lg); |
| padding: 10px 14px; |
| box-shadow: none; |
| transition: |
| background var(--duration-fast) ease-out, |
| border-color var(--duration-fast) ease-out; |
| max-width: 100%; |
| word-wrap: break-word; |
| } |
|
|
| .chat-bubble.has-copy { |
| padding-right: 36px; |
| } |
|
|
| .chat-copy-btn { |
| position: absolute; |
| top: 6px; |
| right: 8px; |
| border: 1px solid var(--border); |
| background: var(--bg); |
| color: var(--muted); |
| border-radius: var(--radius-md); |
| padding: 4px 6px; |
| font-size: 14px; |
| line-height: 1; |
| cursor: pointer; |
| opacity: 0; |
| pointer-events: none; |
| transition: |
| opacity 120ms ease-out, |
| background 120ms ease-out; |
| } |
|
|
| .chat-copy-btn__icon { |
| display: inline-flex; |
| width: 14px; |
| height: 14px; |
| position: relative; |
| } |
|
|
| .chat-copy-btn__icon svg { |
| width: 14px; |
| height: 14px; |
| stroke: currentColor; |
| fill: none; |
| stroke-width: 1.5px; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| } |
|
|
| .chat-copy-btn__icon-copy, |
| .chat-copy-btn__icon-check { |
| position: absolute; |
| top: 0; |
| left: 0; |
| transition: opacity 150ms ease; |
| } |
|
|
| .chat-copy-btn__icon-check { |
| opacity: 0; |
| } |
|
|
| .chat-copy-btn[data-copied="1"] .chat-copy-btn__icon-copy { |
| opacity: 0; |
| } |
|
|
| .chat-copy-btn[data-copied="1"] .chat-copy-btn__icon-check { |
| opacity: 1; |
| } |
|
|
| .chat-bubble:hover .chat-copy-btn { |
| opacity: 1; |
| pointer-events: auto; |
| } |
|
|
| .chat-copy-btn:hover { |
| background: var(--bg-hover); |
| } |
|
|
| .chat-copy-btn[data-copying="1"] { |
| opacity: 0; |
| pointer-events: none; |
| } |
|
|
| .chat-copy-btn[data-error="1"] { |
| opacity: 1; |
| pointer-events: auto; |
| border-color: var(--danger-subtle); |
| background: var(--danger-subtle); |
| color: var(--danger); |
| } |
|
|
| .chat-copy-btn[data-copied="1"] { |
| opacity: 1; |
| pointer-events: auto; |
| border-color: var(--ok-subtle); |
| background: var(--ok-subtle); |
| color: var(--ok); |
| } |
|
|
| .chat-copy-btn:focus-visible { |
| opacity: 1; |
| pointer-events: auto; |
| outline: 2px solid var(--accent); |
| outline-offset: 2px; |
| } |
|
|
| @media (hover: none) { |
| .chat-copy-btn { |
| opacity: 1; |
| pointer-events: auto; |
| } |
| } |
|
|
| |
| :root[data-theme-mode="light"] .chat-bubble { |
| border-color: var(--border); |
| box-shadow: inset 0 1px 0 var(--card-highlight); |
| } |
|
|
| .chat-bubble:hover { |
| background: var(--bg-hover); |
| } |
|
|
| |
| .chat-group.user .chat-bubble { |
| background: var(--accent-subtle); |
| border-color: transparent; |
| } |
|
|
| :root[data-theme-mode="light"] .chat-group.user .chat-bubble { |
| border-color: rgba(234, 88, 12, 0.2); |
| background: rgba(251, 146, 60, 0.12); |
| } |
|
|
| .chat-group.user .chat-bubble:hover { |
| background: rgba(255, 77, 77, 0.15); |
| } |
|
|
| |
| .chat-bubble.streaming { |
| animation: pulsing-border 1.5s ease-out infinite; |
| } |
|
|
| @keyframes pulsing-border { |
| 0%, |
| 100% { |
| border-color: var(--border); |
| } |
| 50% { |
| border-color: var(--accent); |
| } |
| } |
|
|
| |
| .chat-bubble.fade-in { |
| animation: fade-in 200ms ease-out; |
| } |
|
|
| @keyframes fade-in { |
| from { |
| opacity: 0; |
| transform: translateY(4px); |
| } |
| to { |
| opacity: 1; |
| transform: translateY(0); |
| } |
| } |
|
|
| |
| .msg-meta { |
| display: inline-flex; |
| align-items: center; |
| gap: 8px; |
| font-size: 11px; |
| line-height: 1; |
| color: var(--muted); |
| margin-top: 4px; |
| flex-wrap: wrap; |
| } |
|
|
| .msg-meta__tokens, |
| .msg-meta__cache, |
| .msg-meta__cost, |
| .msg-meta__ctx, |
| .msg-meta__model { |
| display: inline-flex; |
| align-items: center; |
| gap: 2px; |
| white-space: nowrap; |
| } |
|
|
| .msg-meta__model { |
| background: var(--bg-hover, rgba(255, 255, 255, 0.06)); |
| padding: 1px 6px; |
| border-radius: var(--radius-sm, 4px); |
| font-family: var(--font-mono, monospace); |
| } |
|
|
| .msg-meta__cost { |
| color: var(--ok, #22c55e); |
| } |
|
|
| .msg-meta__ctx--warn { |
| color: var(--warning, #eab308); |
| } |
|
|
| .msg-meta__ctx--danger { |
| color: var(--danger, #ef4444); |
| } |
|
|
| |
| .chat-delete-wrap { |
| position: relative; |
| display: inline-flex; |
| } |
|
|
| .chat-delete-confirm { |
| position: absolute; |
| bottom: calc(100% + 6px); |
| background: var(--card, #1a1a1a); |
| border: 1px solid var(--border, rgba(255, 255, 255, 0.1)); |
| border-radius: var(--radius-md, 8px); |
| padding: 12px; |
| min-width: 200px; |
| box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4); |
| z-index: 100; |
| animation: scale-in 0.15s ease-out; |
| } |
|
|
| .chat-delete-confirm--left { |
| right: 0; |
| } |
|
|
| .chat-delete-confirm--right { |
| left: 0; |
| } |
|
|
| .chat-delete-confirm__text { |
| margin: 0 0 8px; |
| font-size: 13px; |
| font-weight: 500; |
| color: var(--fg, #fff); |
| } |
|
|
| .chat-delete-confirm__remember { |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| font-size: 11px; |
| color: var(--muted, #888); |
| margin-bottom: 10px; |
| cursor: pointer; |
| user-select: none; |
| } |
|
|
| .chat-delete-confirm__check { |
| width: 14px; |
| height: 14px; |
| accent-color: var(--accent, #3b82f6); |
| cursor: pointer; |
| } |
|
|
| .chat-delete-confirm__actions { |
| display: flex; |
| gap: 6px; |
| justify-content: flex-end; |
| } |
|
|
| .chat-delete-confirm__cancel, |
| .chat-delete-confirm__yes { |
| border: none; |
| border-radius: var(--radius-sm, 4px); |
| padding: 4px 12px; |
| font-size: 12px; |
| font-weight: 500; |
| cursor: pointer; |
| transition: background 120ms ease-out; |
| } |
|
|
| .chat-delete-confirm__cancel { |
| background: var(--bg-hover, rgba(255, 255, 255, 0.08)); |
| color: var(--muted, #888); |
| } |
|
|
| .chat-delete-confirm__cancel:hover { |
| background: rgba(255, 255, 255, 0.12); |
| } |
|
|
| .chat-delete-confirm__yes { |
| background: var(--danger, #ef4444); |
| color: #fff; |
| } |
|
|
| .chat-delete-confirm__yes:hover { |
| background: #dc2626; |
| } |
|
|