Buckets:
| [data-component="session-turn"] { | |
| --sticky-header-height: calc(var(--session-title-height, 0px) + 24px); | |
| height: 100%; | |
| min-height: 0; | |
| min-width: 0; | |
| display: flex; | |
| align-items: flex-start; | |
| justify-content: flex-start; | |
| [data-slot="session-turn-content"] { | |
| flex-grow: 1; | |
| width: 100%; | |
| height: 100%; | |
| min-width: 0; | |
| overflow-y: auto; | |
| scrollbar-width: none; | |
| } | |
| [data-slot="session-turn-content"]::-webkit-scrollbar { | |
| display: none; | |
| } | |
| [data-slot="session-turn-message-container"] { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: flex-start; | |
| align-self: stretch; | |
| min-width: 0; | |
| gap: 0px; | |
| overflow-anchor: none; | |
| } | |
| [data-slot="session-turn-message-content"] { | |
| margin-top: 0; | |
| width: 100%; | |
| min-width: 0; | |
| max-width: 100%; | |
| } | |
| [data-slot="session-turn-compaction"] { | |
| width: 100%; | |
| min-width: 0; | |
| align-self: stretch; | |
| } | |
| [data-slot="session-turn-thinking"] { | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| margin-top: 12px; | |
| width: 100%; | |
| min-width: 0; | |
| color: var(--text-weak); | |
| font-family: var(--font-family-sans); | |
| font-size: var(--font-size-base); | |
| font-weight: var(--font-weight-medium); | |
| line-height: 20px; | |
| min-height: 20px; | |
| [data-component="spinner"] { | |
| width: 16px; | |
| height: 16px; | |
| } | |
| } | |
| [data-component="text-reveal"].session-turn-thinking-heading { | |
| flex: 1 1 auto; | |
| min-width: 0; | |
| color: var(--text-weaker); | |
| font-weight: var(--font-weight-regular); | |
| } | |
| .error-card { | |
| color: var(--text-on-critical-base); | |
| max-height: 240px; | |
| white-space: pre-wrap; | |
| overflow-wrap: anywhere; | |
| word-break: break-word; | |
| overflow-y: auto; | |
| } | |
| [data-slot="session-turn-assistant-content"] { | |
| width: 100%; | |
| min-width: 0; | |
| display: flex; | |
| flex-direction: column; | |
| align-self: stretch; | |
| gap: 12px; | |
| } | |
| [data-slot="session-turn-diffs"] { | |
| width: 100%; | |
| min-width: 0; | |
| } | |
| [data-slot="session-turn-diffs-header"] { | |
| display: flex; | |
| align-items: center; | |
| gap: 8px; | |
| padding-top: 4px; | |
| padding-bottom: 12px; | |
| position: sticky; | |
| top: var(--sticky-accordion-top, 0px); | |
| z-index: 20; | |
| background-color: var(--background-stronger); | |
| height: 44px; | |
| } | |
| [data-slot="session-turn-diffs-label"] { | |
| font-variant-numeric: tabular-nums; | |
| color: var(--text-strong); | |
| font-family: var(--font-family-sans); | |
| font-size: var(--font-size-base); | |
| font-weight: var(--font-weight-medium); | |
| line-height: var(--line-height-large); | |
| } | |
| [data-slot="session-turn-diffs-toggle"] { | |
| color: var(--text-interactive-base); | |
| font-family: var(--font-family-sans); | |
| font-size: var(--font-size-base); | |
| font-weight: var(--font-weight-regular); | |
| line-height: var(--line-height-large); | |
| cursor: pointer; | |
| opacity: 0; | |
| transition: opacity 0.15s ease; | |
| margin-left: 4px; | |
| } | |
| [data-component="session-turn-diffs-group"]:hover [data-slot="session-turn-diffs-toggle"] { | |
| opacity: 1; | |
| } | |
| [data-component="session-turn-diffs-group"][data-show-all] [data-slot="session-turn-diffs-toggle"] { | |
| opacity: 1; | |
| } | |
| [data-slot="session-turn-diffs-more"] { | |
| color: var(--text-weak); | |
| font-family: var(--font-family-sans); | |
| font-size: var(--font-size-small); | |
| line-height: var(--line-height-large); | |
| margin-top: 12px; | |
| padding: 0 0 6px; | |
| cursor: pointer; | |
| transition: color 0.15s ease; | |
| &:hover { | |
| color: var(--text-link-base); | |
| } | |
| } | |
| [data-component="session-turn-diffs-content"] { | |
| padding-top: 0px; | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| [data-slot="session-turn-diff-trigger"] { | |
| display: flex; | |
| align-items: center; | |
| justify-content: space-between; | |
| gap: 12px; | |
| width: 100%; | |
| min-width: 0; | |
| } | |
| [data-slot="session-turn-diff-path"] { | |
| display: flex; | |
| flex-grow: 1; | |
| min-width: 0; | |
| font-family: var(--font-family-sans); | |
| font-size: var(--font-size-small); | |
| line-height: var(--line-height-large); | |
| } | |
| [data-slot="session-turn-diff-directory"] { | |
| color: var(--text-base); | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| direction: rtl; | |
| text-align: left; | |
| } | |
| [data-slot="session-turn-diff-filename"] { | |
| min-width: 0; | |
| color: var(--text-strong); | |
| font-weight: var(--font-weight-medium); | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| } | |
| [data-slot="session-turn-diff-meta"] { | |
| flex-shrink: 0; | |
| display: inline-flex; | |
| align-items: center; | |
| gap: 10px; | |
| } | |
| [data-slot="session-turn-diff-chevron"] { | |
| display: inline-flex; | |
| color: var(--icon-weaker); | |
| transform: rotate(-90deg); | |
| transition: transform 0.15s ease; | |
| } | |
| [data-slot="accordion-item"][data-expanded] [data-slot="session-turn-diff-chevron"] { | |
| transform: rotate(0deg); | |
| } | |
| [data-slot="session-turn-diff-view"] { | |
| background-color: var(--surface-inset-base); | |
| width: 100%; | |
| min-width: 0; | |
| overflow-y: auto; | |
| overflow-x: hidden; | |
| scrollbar-width: none; | |
| -ms-overflow-style: none; | |
| } | |
| [data-slot="session-turn-diff-view"]::-webkit-scrollbar { | |
| display: none; | |
| } | |
| } | |
| [data-slot="session-turn-list"] { | |
| gap: 24px; | |
| } | |
Xet Storage Details
- Size:
- 5.27 kB
- Xet hash:
- d2a7321a8bb37e3351a704af980f681b754a9d3198529300f8d8eddc82d656d8
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.