| |
| |
| |
|
|
| |
| .chat { |
| position: relative; |
| display: flex; |
| flex-direction: column; |
| flex: 1 1 0; |
| height: 100%; |
| min-height: 0; |
| overflow: hidden; |
| background: transparent !important; |
| border: none !important; |
| box-shadow: none !important; |
| } |
|
|
| |
| .chat-header { |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| gap: 12px; |
| flex-wrap: nowrap; |
| flex-shrink: 0; |
| padding-bottom: 12px; |
| margin-bottom: 12px; |
| background: transparent; |
| } |
|
|
| .chat-header__left { |
| display: flex; |
| align-items: center; |
| gap: 12px; |
| flex-wrap: wrap; |
| min-width: 0; |
| } |
|
|
| .chat-header__right { |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| } |
|
|
| .chat-session { |
| min-width: 180px; |
| } |
|
|
| |
| .chat-thread { |
| flex: 1 1 0; |
| overflow-y: auto; |
| overflow-x: hidden; |
| padding: 12px 4px; |
| margin: 0 -4px; |
| min-height: 0; |
| border-radius: 12px; |
| background: transparent; |
| } |
|
|
| |
| .chat-focus-exit { |
| position: absolute; |
| top: 12px; |
| right: 12px; |
| z-index: 100; |
| width: 32px; |
| height: 32px; |
| border-radius: 50%; |
| border: 1px solid var(--border); |
| background: var(--panel); |
| color: var(--muted); |
| font-size: 20px; |
| line-height: 1; |
| cursor: pointer; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| transition: |
| background 150ms ease-out, |
| color 150ms ease-out, |
| border-color 150ms ease-out; |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); |
| } |
|
|
| .chat-focus-exit:hover { |
| background: var(--panel-strong); |
| color: var(--text); |
| border-color: var(--accent); |
| } |
|
|
| .chat-focus-exit svg { |
| width: 16px; |
| height: 16px; |
| stroke: currentColor; |
| fill: none; |
| stroke-width: 2px; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| } |
|
|
| |
| .chat-compose { |
| position: sticky; |
| bottom: 0; |
| flex-shrink: 0; |
| display: flex; |
| flex-direction: column; |
| gap: 12px; |
| margin-top: auto; |
| padding: 12px 4px 4px; |
| background: linear-gradient(to bottom, transparent, var(--bg) 20%); |
| z-index: 10; |
| } |
|
|
| |
| .chat-attachments { |
| display: inline-flex; |
| flex-wrap: wrap; |
| gap: 8px; |
| padding: 8px; |
| background: var(--panel); |
| border-radius: 8px; |
| border: 1px solid var(--border); |
| width: fit-content; |
| max-width: 100%; |
| align-self: flex-start; |
| } |
|
|
| .chat-attachment { |
| position: relative; |
| width: 80px; |
| height: 80px; |
| border-radius: 6px; |
| overflow: hidden; |
| border: 1px solid var(--border); |
| background: var(--bg); |
| } |
|
|
| .chat-attachment__img { |
| width: 100%; |
| height: 100%; |
| object-fit: contain; |
| } |
|
|
| .chat-attachment__remove { |
| position: absolute; |
| top: 4px; |
| right: 4px; |
| width: 20px; |
| height: 20px; |
| border-radius: 50%; |
| border: none; |
| background: rgba(0, 0, 0, 0.7); |
| color: #fff; |
| font-size: 12px; |
| line-height: 1; |
| cursor: pointer; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| opacity: 0; |
| transition: opacity 150ms ease-out; |
| } |
|
|
| .chat-attachment:hover .chat-attachment__remove { |
| opacity: 1; |
| } |
|
|
| .chat-attachment__remove:hover { |
| background: rgba(220, 38, 38, 0.9); |
| } |
|
|
| .chat-attachment__remove svg { |
| width: 12px; |
| height: 12px; |
| stroke: currentColor; |
| fill: none; |
| stroke-width: 2px; |
| } |
|
|
| |
| :root[data-theme="light"] .chat-attachments { |
| background: #f8fafc; |
| border-color: rgba(16, 24, 40, 0.1); |
| } |
|
|
| :root[data-theme="light"] .chat-attachment { |
| border-color: rgba(16, 24, 40, 0.15); |
| background: #fff; |
| } |
|
|
| :root[data-theme="light"] .chat-attachment__remove { |
| background: rgba(0, 0, 0, 0.6); |
| } |
|
|
| |
| .chat-message-images { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 8px; |
| margin-bottom: 8px; |
| } |
|
|
| .chat-message-image { |
| max-width: 300px; |
| max-height: 200px; |
| border-radius: 8px; |
| object-fit: contain; |
| cursor: pointer; |
| transition: transform 150ms ease-out; |
| } |
|
|
| .chat-message-image:hover { |
| transform: scale(1.02); |
| } |
|
|
| |
| .chat-group.user .chat-message-images { |
| justify-content: flex-end; |
| } |
|
|
| |
| .chat-compose__row { |
| display: flex; |
| align-items: stretch; |
| gap: 12px; |
| flex: 1; |
| } |
|
|
| :root[data-theme="light"] .chat-compose { |
| background: linear-gradient(to bottom, transparent, var(--bg-content) 20%); |
| } |
|
|
| .chat-compose__field { |
| flex: 1 1 auto; |
| min-width: 0; |
| display: flex; |
| align-items: stretch; |
| } |
|
|
| |
| .chat-compose__field > span { |
| display: none; |
| } |
|
|
| |
| .chat-compose .chat-compose__field textarea { |
| width: 100%; |
| height: 40px; |
| min-height: 40px; |
| max-height: 150px; |
| padding: 9px 12px; |
| border-radius: 8px; |
| overflow-y: auto; |
| resize: none; |
| white-space: pre-wrap; |
| font-family: var(--font-body); |
| font-size: 14px; |
| line-height: 1.45; |
| } |
|
|
| .chat-compose__field textarea:disabled { |
| opacity: 0.7; |
| cursor: not-allowed; |
| } |
|
|
| .chat-compose__actions { |
| flex-shrink: 0; |
| display: flex; |
| align-items: stretch; |
| gap: 8px; |
| } |
|
|
| .chat-compose .chat-compose__actions .btn { |
| padding: 0 16px; |
| font-size: 13px; |
| height: 40px; |
| min-height: 40px; |
| max-height: 40px; |
| line-height: 1; |
| white-space: nowrap; |
| box-sizing: border-box; |
| } |
|
|
| |
| .chat-controls { |
| display: flex; |
| align-items: center; |
| justify-content: flex-start; |
| gap: 12px; |
| flex-wrap: wrap; |
| } |
|
|
| .chat-controls__session { |
| min-width: 140px; |
| } |
|
|
| .chat-controls__thinking { |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| font-size: 13px; |
| } |
|
|
| |
| .btn--icon { |
| padding: 8px !important; |
| min-width: 36px; |
| height: 36px; |
| display: inline-flex; |
| align-items: center; |
| justify-content: center; |
| border: 1px solid var(--border); |
| background: rgba(255, 255, 255, 0.06); |
| } |
|
|
| |
| .chat-controls__separator { |
| color: rgba(255, 255, 255, 0.4); |
| font-size: 18px; |
| margin: 0 8px; |
| font-weight: 300; |
| } |
|
|
| :root[data-theme="light"] .chat-controls__separator { |
| color: rgba(16, 24, 40, 0.3); |
| } |
|
|
| .btn--icon:hover { |
| background: rgba(255, 255, 255, 0.12); |
| border-color: rgba(255, 255, 255, 0.2); |
| } |
|
|
| |
| :root[data-theme="light"] .btn--icon { |
| background: #ffffff; |
| border-color: var(--border); |
| box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05); |
| color: var(--muted); |
| } |
|
|
| :root[data-theme="light"] .btn--icon:hover { |
| background: #ffffff; |
| border-color: var(--border-strong); |
| color: var(--text); |
| } |
|
|
| .btn--icon svg { |
| display: block; |
| width: 18px; |
| height: 18px; |
| stroke: currentColor; |
| fill: none; |
| stroke-width: 1.5px; |
| stroke-linecap: round; |
| stroke-linejoin: round; |
| } |
|
|
| .chat-controls__session select { |
| padding: 6px 10px; |
| font-size: 13px; |
| } |
|
|
| .chat-controls__thinking { |
| display: flex; |
| align-items: center; |
| gap: 4px; |
| font-size: 12px; |
| padding: 4px 10px; |
| background: rgba(255, 255, 255, 0.04); |
| border-radius: 6px; |
| border: 1px solid var(--border); |
| } |
|
|
| |
| :root[data-theme="light"] .chat-controls__thinking { |
| background: rgba(255, 255, 255, 0.9); |
| border-color: rgba(16, 24, 40, 0.15); |
| } |
|
|
| @media (max-width: 640px) { |
| .chat-session { |
| min-width: 140px; |
| } |
|
|
| .chat-compose { |
| grid-template-columns: 1fr; |
| } |
|
|
| .chat-controls { |
| flex-wrap: wrap; |
| gap: 8px; |
| } |
|
|
| .chat-controls__session { |
| min-width: 120px; |
| } |
| } |
|
|