Files
fusion/packages/dashboard/app/components/GitHubImportModal.css
gsxdsm 03aeed291f feat(dashboard): Import Tasks list pane small + freely resizable, preview fills remainder
Default list width 256px (min 160, max min(480px,50%)), driven by an inline width var with flex:0 0 so the drag actually wins (the embedded wide layout previously forced a clamp via !important, so the handle did nothing). Preview pane is flex:1 1 auto;min-width:0 so freed space flows to it. Persisted per-project via kb-dashboard-github-import-list-width. Shared workspace covers both Issues and Pull Requests tabs.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-22 10:09:32 -07:00

1186 lines
28 KiB
CSS

/* === GitHub Import Modal ===
Note: Some hardcoded colors below (e.g. #238636, #2ea043, #f0883e, #1f6feb)
are intentional GitHub brand colors and should NOT be replaced with design tokens. */
/* Compact Toolbar Layout */
.github-import-toolbar {
display: flex;
align-items: center;
gap: var(--space-md);
padding: var(--space-md) var(--space-lg);
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
}
.github-import-toolbar__zone {
display: flex;
align-items: center;
}
.github-import-toolbar__zone--remote {
flex: 0 0 auto;
min-width: 140px;
}
.github-import-toolbar__zone--filter {
flex: 1 1 auto;
min-width: 0;
}
.github-import-toolbar__zone--filter input {
width: 100%;
min-width: 0;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
color: var(--text);
padding: var(--space-sm) var(--space-md);
font-size: 13px;
}
.github-import-toolbar__zone--filter input:focus {
border-color: var(--accent);
box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 20%, transparent);
outline: none;
}
.github-import-toolbar__zone--filter input:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.github-import-toolbar__zone--filter input::placeholder {
color: var(--text-dim);
}
.github-import-toolbar__zone--action {
flex: 0 0 auto;
}
.github-import-toolbar__loading {
display: flex;
align-items: center;
gap: var(--space-sm);
color: var(--text-muted);
font-size: 13px;
}
.github-import-toolbar__no-remote {
color: var(--text-muted);
font-size: 13px;
font-style: italic;
}
/* Remote pill for single remote */
.github-import-remote-pill {
display: flex;
flex-direction: column;
gap: 2px;
}
.github-import-remote-pill__name {
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-muted);
}
.github-import-remote-pill__repo {
font-size: 13px;
font-weight: 500;
color: var(--text);
}
/* Remote select dropdown */
.github-import-remote-select select {
min-width: 180px;
padding: var(--space-sm) var(--space-md);
font-size: 13px;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-md);
color: var(--text);
}
.github-import-remote-select select:focus {
outline: none;
border-color: var(--accent);
box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 20%, transparent);
}
/* Load button */
.github-import-load-button {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--space-sm);
min-height: 36px;
padding: var(--space-sm) var(--space-md);
}
.github-import-load-button span {
font-size: 13px;
}
/* Two-pane layout */
.github-import-workspace {
display: flex;
gap: var(--space-sm);
min-height: 0;
flex: 1;
}
.github-import-list-pane,
.github-import-preview-pane {
display: flex;
flex-direction: column;
min-height: 0;
}
.github-import-list-pane {
/* Desktop width is controlled by inline flex-basis from the resize handle. */
flex: 0 0 auto;
/* Keep separator ownership on the resize handle to avoid a doubled divider. */
padding-right: var(--space-md);
}
.github-import-workspace__resize-handle {
position: relative;
flex: 0 0 var(--space-sm);
align-self: stretch;
cursor: col-resize;
touch-action: none;
border-radius: var(--radius-sm);
}
.github-import-workspace__resize-handle::before {
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: var(--space-xs);
transform: translateX(-50%);
border-radius: var(--radius-sm);
background: color-mix(in srgb, var(--border) 35%, transparent);
transition: background var(--transition-fast);
}
.github-import-workspace__resize-handle:hover::before,
.github-import-workspace__resize-handle:active::before {
background: color-mix(in srgb, var(--todo) 50%, transparent);
}
.github-import-workspace__resize-handle:focus-visible {
outline: var(--focus-ring-strong);
outline-offset: 0;
}
.github-import-workspace__resize-handle:focus-visible::before {
background: color-mix(in srgb, var(--todo) 60%, transparent);
}
.github-import-preview-pane {
flex: 1;
min-width: 0;
}
.github-import-pane-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-sm);
padding-bottom: var(--space-sm);
margin-bottom: var(--space-sm);
border-bottom: 1px solid var(--border);
}
.github-import-pane-header h4 {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.01em;
color: var(--text);
}
.github-import-pane-content {
flex: 1;
min-height: 0;
overflow-y: auto;
}
/* Wider modal for two-pane layout */
.modal.github-import-modal {
width: min(90vw, 1200px);
max-width: 95vw;
min-width: 480px;
height: 80vh;
min-height: 480px;
max-height: calc(100dvh - var(--overlay-padding-top, 10vh) - 16px);
overflow: hidden;
resize: both;
}
.github-import-modal__header {
align-items: flex-start;
}
.github-import-modal__subtitle {
margin-top: var(--space-xs);
color: var(--text-muted);
font-size: 13px;
line-height: 1.5;
}
.github-import-modal__body {
display: flex;
flex-direction: column;
gap: var(--space-md);
padding: var(--space-lg) var(--space-xl);
overflow-y: auto;
min-height: 0;
}
.github-import-modal__actions {
align-items: center;
}
/* Tab styles for GitHub Import Modal */
.github-import-tabs {
display: flex;
gap: var(--space-xs);
padding: var(--space-sm) var(--space-md);
border-bottom: 1px solid var(--border);
background: var(--surface);
}
.github-import-tab {
display: flex;
align-items: center;
gap: var(--space-xs);
padding: var(--space-sm) var(--space-md);
border: 1px solid transparent;
border-radius: var(--radius-md);
background: transparent;
color: var(--text-muted);
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.15s ease;
}
.github-import-tab:hover:not(:disabled) {
background: var(--surface-hover);
color: var(--text);
}
.github-import-tab.active {
background: var(--card);
border-color: var(--border);
color: var(--text);
}
.github-import-tab:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.github-import-filter-hint {
color: var(--text-muted);
font-size: 13px;
font-style: italic;
}
.pull-branch-info {
display: block;
margin-top: 2px;
color: var(--text-muted);
font-size: 12px;
font-family: var(--font-mono, monospace);
}
.preview-branch {
margin-bottom: var(--space-sm);
padding: var(--space-sm);
background: var(--surface);
border-radius: var(--radius-sm);
font-size: 12px;
font-family: var(--font-mono, monospace);
}
.preview-branch strong {
color: var(--text-muted);
font-weight: 500;
}
/* Legacy section styles - kept for compatibility */
.github-import-section {
display: flex;
flex-direction: column;
gap: var(--space-md);
padding: var(--space-lg);
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
}
.github-import-section__header {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: var(--space-md);
}
.github-import-section__header h4 {
font-size: 14px;
font-weight: 600;
letter-spacing: 0.01em;
}
.github-import-section__helper {
margin-top: var(--space-xs);
color: var(--text-muted);
font-size: 13px;
line-height: 1.5;
}
.github-import-repository-pill {
min-width: 180px;
padding: var(--space-sm) var(--space-md);
border: 1px solid var(--border);
border-radius: var(--radius-md);
background: var(--surface);
text-align: right;
}
.github-import-repository-pill__label {
display: block;
color: var(--text-muted);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.github-import-repository-pill__value {
display: block;
margin-top: 2px;
color: var(--text);
font-size: 13px;
font-weight: 500;
word-break: break-word;
}
.github-import-controls-grid {
display: grid;
grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
gap: var(--space-md);
}
.github-import-form-group {
margin-top: 0;
padding: 0;
}
.github-import-form-group:last-of-type {
margin-bottom: 0;
}
.github-import-form-group--remote {
grid-column: 1 / -1;
}
.github-import-form-group--action {
display: flex;
flex-direction: column;
}
.github-import-remote-card {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--space-md);
padding: var(--space-md);
border: 1px solid var(--border);
border-radius: var(--radius-md);
background: var(--surface);
}
.github-import-remote-card__eyebrow {
color: var(--text-muted);
font-size: 11px;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.github-import-remote-card__title {
margin-top: 2px;
font-size: 14px;
font-weight: 600;
}
.github-import-remote-card__title span {
color: var(--text-muted);
font-weight: 500;
}
.github-import-badge {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 4px 10px;
border: 1px solid var(--color-success);
border-radius: var(--radius-lg);
color: var(--color-success);
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.github-import-command {
display: block;
padding: var(--space-sm) var(--space-md);
background: var(--bg);
border: 1px solid var(--border);
border-radius: var(--radius-md);
color: var(--text);
font-family: var(--font-mono);
font-size: 12px;
line-height: 1.5;
overflow-x: auto;
}
.form-error {
margin: var(--space-md) 0;
padding: var(--space-sm) var(--space-md);
background: color-mix(in srgb, var(--color-error) 10%, transparent);
border: 1px solid var(--color-error);
border-radius: var(--radius-md);
color: var(--color-error);
font-size: 13px;
line-height: 1.45;
}
.github-import-banner {
margin: 0;
}
.github-import-section--results,
.github-import-section--preview {
min-height: 100%;
}
.github-import-results-meta {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
gap: var(--space-sm);
color: var(--text-muted);
font-size: 12px;
}
.github-import-results-meta span {
padding: var(--space-xs) var(--space-sm);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
background: var(--surface);
}
.github-import-state {
display: flex;
align-items: flex-start;
gap: var(--space-md);
padding: var(--space-md);
border: 1px dashed var(--border);
border-radius: var(--radius-md);
background: var(--surface);
}
.github-import-state strong {
display: block;
font-size: 13px;
font-weight: 600;
}
.github-import-state span {
display: block;
margin-top: 2px;
color: var(--text-muted);
font-size: 13px;
line-height: 1.5;
}
.github-import-state--loading {
border-style: solid;
}
.github-import-state--warning {
border-style: solid;
}
.github-import-state--error {
border-style: solid;
border-color: var(--color-error);
}
.github-import-state--error strong {
color: var(--color-error);
}
.github-import-state--empty,
.github-import-state--idle {
border-color: var(--border);
}
.issues-list {
display: flex;
flex-direction: column;
max-height: none;
overflow-y: auto;
border: 1px solid var(--border);
border-radius: var(--radius-md);
background: var(--surface);
}
.issue-item {
display: flex;
align-items: flex-start;
gap: var(--space-md);
padding: var(--space-md);
border-bottom: 1px solid var(--border);
cursor: pointer;
transition:
background var(--transition-fast),
border-color var(--transition-fast),
box-shadow var(--transition-fast);
}
.issue-item:last-child {
border-bottom: none;
}
.issue-item input[type="radio"] {
margin-top: 2px;
flex-shrink: 0;
accent-color: var(--in-progress);
}
.issue-item.imported input[type="radio"] {
opacity: 0.5;
cursor: not-allowed;
}
.issue-item:hover:not(.imported) {
background: var(--card-hover);
}
.issue-item.selected {
background: color-mix(in srgb, var(--in-progress) 12%, transparent);
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--in-progress) 35%, transparent);
}
.issue-item.imported {
opacity: 0.65;
cursor: not-allowed;
}
.issue-main {
flex: 1;
min-width: 0;
}
.issue-heading-row {
display: flex;
align-items: baseline;
gap: var(--space-sm);
min-width: 0;
}
.issue-number {
color: var(--text-muted);
font-size: 12px;
font-weight: 600;
flex-shrink: 0;
}
.issue-title {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-size: 14px;
font-weight: 500;
}
.issue-labels {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: var(--space-sm);
}
.label-chip {
padding: 3px 8px;
font-size: 11px;
background: var(--card);
border: 1px solid var(--border);
border-radius: var(--radius-lg);
color: var(--text-muted);
}
.imported-badge {
display: inline-flex;
align-items: center;
justify-content: center;
align-self: center;
padding: 4px 10px;
font-size: 11px;
font-weight: 600;
border: 1px solid var(--color-success);
border-radius: var(--radius-lg);
color: var(--color-success);
text-transform: uppercase;
letter-spacing: 0.08em;
}
.issue-preview {
display: flex;
flex-direction: column;
gap: var(--space-sm);
padding: var(--space-lg);
background: var(--surface);
border: 1px solid var(--border);
border-radius: var(--radius-md);
}
.preview-meta {
color: var(--text-muted);
font-size: 12px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
}
.preview-title {
font-size: 16px;
font-weight: 600;
line-height: 1.35;
}
.preview-body {
font-size: 13px;
color: var(--text-muted);
line-height: 1.6;
white-space: pre-wrap;
word-break: break-word;
}
/*
FNXC:GitHubImport 2026-06-22-18:30:
Full-body preview metadata row (state badge, author, GitHub link) plus the markdown body wrapper.
The markdown variant must NOT pre-wrap/clamp — MailboxMessageContent emits real block elements (p, ul, pre, table), so reset the plain-text white-space and let the body take full height; the preview pane already owns the vertical scroll.
*/
.preview-metadata {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: var(--space-sm);
font-size: 12px;
color: var(--text-muted);
}
.preview-state-badge {
display: inline-flex;
align-items: center;
padding: 2px 8px;
border-radius: var(--radius-sm);
font-size: 11px;
font-weight: 600;
text-transform: capitalize;
background: var(--surface);
border: 1px solid var(--border);
color: var(--text);
}
.preview-state-badge--open {
color: var(--success, var(--accent));
border-color: color-mix(in srgb, var(--success, var(--accent)) 40%, transparent);
}
.preview-state-badge--closed {
color: var(--danger, var(--text-muted));
border-color: color-mix(in srgb, var(--danger, var(--text-muted)) 40%, transparent);
}
.preview-state-badge--merged {
color: var(--accent);
border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}
.preview-author {
color: var(--text-muted);
}
.preview-url {
color: var(--accent);
text-decoration: none;
}
.preview-url:hover {
text-decoration: underline;
}
.preview-labels {
display: flex;
flex-wrap: wrap;
gap: var(--space-xs);
}
.preview-body--markdown {
white-space: normal;
word-break: break-word;
color: var(--text);
}
.preview-body--markdown :where(p, ul, ol, pre, table, blockquote, h1, h2, h3, h4) {
margin: 0 0 var(--space-sm);
}
.preview-body--markdown :where(p, ul, ol, pre, table, blockquote, h1, h2, h3, h4):last-child {
margin-bottom: 0;
}
/* Back button - hidden on desktop by default */
.github-import-back-button {
display: none;
}
/* Light theme overrides for GitHub import components */
[data-theme="light"] .github-import-tabs {
background: var(--bg-secondary);
}
[data-theme="light"] .github-import-tab.active {
background: var(--card);
border-color: var(--border);
box-shadow: var(--shadow-sm);
}
[data-theme="light"] .github-import-toolbar {
background: var(--bg-secondary);
border-bottom-color: var(--border);
}
[data-theme="light"] .github-import-toolbar__zone--filter input {
background: var(--card);
border-color: var(--border);
}
[data-theme="light"] .github-import-toolbar__zone--filter input:focus {
border-color: var(--accent);
box-shadow: 0 0 0 2px color-mix(in srgb, var(--in-progress) 15%, transparent);
}
[data-theme="light"] .issues-list {
background: var(--card);
border-color: var(--border);
}
[data-theme="light"] .issue-item:hover:not(.imported) {
background: var(--card-hover);
}
[data-theme="light"] .issue-item.selected {
background: color-mix(in srgb, var(--in-progress) 8%, transparent);
box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--in-progress) 30%, transparent);
}
[data-theme="light"] .issue-item.imported input[type="radio"] {
opacity: 0.4;
}
[data-theme="light"] .github-import-state {
background: var(--bg-secondary);
border-color: var(--border);
}
[data-theme="light"] .issue-preview {
background: var(--bg-secondary);
border-color: var(--border);
}
[data-theme="light"] .label-chip {
background: var(--bg-secondary);
border-color: var(--border);
}
/* Responsive breakpoints */
@media (max-width: 860px) {
/* FNXC:GitHubImport 2026-06-22-16:00: viewport-derived width is for the
dialog presentation only. :not(.github-import-modal--embedded) prevents
the embedded main-content view from being sized off the viewport — it
fills its own (potentially much narrower) content pane via the
container-query layout below. */
.github-import-modal:not(.github-import-modal--embedded) {
width: calc(100vw - (var(--space-lg) * 2));
}
.github-import-workspace {
flex-direction: column;
}
.github-import-workspace__resize-handle {
display: none;
}
.github-import-list-pane {
flex: none;
border-right: none;
border-bottom: 1px solid var(--border);
padding-right: 0;
padding-bottom: var(--space-md);
max-height: 50%;
}
.github-import-preview-pane {
flex: none;
max-height: 50%;
}
}
@media (max-width: 640px) {
/* Full-screen sheet on mobile — drop overlay padding so the modal
actually fills the viewport instead of being pushed below it.
FNXC:GitHubImport 2026-06-22-16:00: scope the viewport-takeover to the
NON-embedded (dialog) presentation via :not(.github-import-modal--embedded).
The embedded view lives inside the main-content pane (between the mobile
Header and MobileNavBar); without the guard its base .github-import-modal
class matched these 100vw/100dvh rules and covered the whole screen. The
embedded panel keeps its own 100%-of-pane sizing from the embedded block
below. */
.modal-overlay:has(.github-import-modal:not(.github-import-modal--embedded)) {
padding-top: 0;
align-items: stretch;
justify-content: stretch;
}
.modal.github-import-modal:not(.github-import-modal--embedded) {
width: 100vw;
min-width: 0;
max-width: 100vw;
height: 100dvh;
min-height: 0;
max-height: 100dvh;
margin: 0;
border: none;
border-radius: 0;
resize: none;
}
.github-import-modal__body {
flex: 1;
min-height: 0;
overflow: hidden;
padding: var(--space-md);
gap: var(--space-md);
}
.github-import-toolbar {
flex-wrap: wrap;
gap: var(--space-sm);
padding: var(--space-sm);
}
.github-import-toolbar__zone--remote {
flex: 1 1 100%;
order: 1;
}
.github-import-toolbar__zone--filter {
flex: 1 1 auto;
order: 2;
min-width: 140px;
}
.github-import-toolbar__zone--action {
flex: 0 0 auto;
order: 3;
}
.github-import-remote-select select {
width: 100%;
min-width: 0;
}
.github-import-section {
padding: var(--space-md);
}
.github-import-section__header {
flex-direction: column;
}
.github-import-repository-pill {
width: 100%;
min-width: 0;
text-align: left;
}
.github-import-controls-grid {
grid-template-columns: 1fr;
}
.github-import-results-meta {
justify-content: flex-start;
}
.issue-item {
flex-wrap: wrap;
min-height: 36px;
}
.imported-badge {
align-self: flex-start;
margin-left: 28px;
}
.issues-list {
max-height: 50vh;
}
.github-import-workspace {
flex: 1;
min-height: 0;
overflow: hidden;
}
/* Mobile pane visibility - show one at a time */
.github-import-list-pane.mobile {
display: none;
}
.github-import-list-pane.mobile.active {
display: flex;
flex: 1;
border-right: none;
padding-right: 0;
max-height: none;
}
.github-import-preview-pane.mobile {
display: none;
}
.github-import-preview-pane.mobile.active {
display: flex;
flex: 1;
min-height: 0;
max-height: none;
overflow: hidden;
}
.github-import-preview-pane.mobile.active .github-import-pane-content {
flex: 1;
min-height: 0;
overflow-y: auto;
overscroll-behavior: contain;
}
/* Back button styles */
.github-import-back-button {
display: inline-flex;
align-items: center;
gap: var(--space-sm);
padding: var(--space-sm) var(--space-md);
background: transparent;
border: 1px solid var(--border);
border-radius: var(--radius-md);
color: var(--text);
font-size: 13px;
cursor: pointer;
transition: background var(--transition-fast);
}
.github-import-back-button:hover {
background: var(--card-hover);
}
.github-import-back-button:focus {
outline: none;
box-shadow: var(--focus-ring);
}
.github-import-pane-header:has(.github-import-back-button) {
justify-content: flex-start;
gap: var(--space-md);
}
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
/*
FNXC:RightDockEmbedding 2026-06-22-00:00:
Right-dock redesign renders the GitHub import surface inline in the main content area instead of as a fixed popup overlay.
The embedded root is a plain flow box that fills the host; the inner shell sheds overlay-only chrome (fixed sizing, box-shadow, rounded corners, resize) and fills 100% so the main panel owns the frame. No close button is rendered in embedded mode.
*/
.github-import-embedded.right-dock-embedded-view {
display: flex;
width: 100%;
height: 100%;
min-height: 0;
}
.github-import-modal.github-import-modal--embedded {
width: 100%;
height: 100%;
max-width: none;
min-width: 0;
max-height: none;
min-height: 0;
position: static;
box-shadow: none;
border-radius: 0;
resize: none;
padding: var(--space-lg);
}
/*
FNXC:RightDockEmbedding 2026-06-22-00:40:
Import Tasks embedded header reads like Command Center (cc-header/cc-title): a plain title row with the GitHub logo and the shared 1.125rem embedded-title font, no modal-header bar/background/border.
*/
.github-import-modal__embedded-header {
display: flex;
flex-shrink: 0;
align-items: center;
justify-content: space-between;
gap: var(--space-md);
padding-bottom: var(--space-md);
}
.github-import-modal__embedded-title {
display: flex;
align-items: center;
gap: var(--space-sm);
margin: 0;
font-size: 1.125rem;
}
/*
FNXC:RightDockEmbedding 2026-06-22-12:30:
Embedded "Import Tasks" main-content view must fit on screen and react to its OWN width, not the viewport.
The shared two-pane code sets the list pane width via an inline flex-basis (default 360px) whenever the VIEWPORT is wide (canResizePanes => innerWidth > 860). In the embedded main area the host can be far narrower than the viewport, so that inline 360px list pane plus the preview overflowed horizontally.
Fix (embedded variant only — modal path untouched): turn the embedded root into a query container (container-type: inline-size) and drive the layout off @container width.
- Narrow container (default): stack list ABOVE preview in a single column; cap the list height and override the inline desktop flex-basis so nothing forces horizontal overflow. Long titles/repo names already truncate via .issue-title ellipsis / .issue-main min-width:0, and labels/branch info wrap.
- Wide container (>= 720px): restore the two-pane row, but bound the list pane to a sane share of the container (clamp) instead of trusting the viewport-derived inline width.
*/
.github-import-embedded.right-dock-embedded-view {
container-type: inline-size;
container-name: github-import-embedded;
}
/*
FNXC:RightDockEmbedding 2026-06-22-01:00:
Embedded Import Tasks must scroll vertically so a long preview is fully reachable. The view body is the scroll container; in the stacked (narrow) layout the preview takes its natural (content) height and the body scrolls, so the preview can be much taller than the viewport. In the wide two-pane layout the preview keeps its own internal scroll.
*/
.github-import-modal--embedded .github-import-modal__body {
min-height: 0;
overflow-y: auto;
}
/*
FNXC:RightDockEmbedding 2026-06-22-13:30:
Default (narrow container): single stacked column. The workspace takes its natural (content) height
(flex: 0 0 auto) rather than the shared `flex: 1`, so the tall preview can push the workspace past the
body height and .github-import-modal__body scrolls to reveal it. The list pane stays internally capped.
*/
.github-import-modal--embedded .github-import-workspace {
flex-direction: column;
flex: 0 0 auto;
}
/* Override the inline viewport-derived flex-basis so the list never forces overflow when stacked. */
.github-import-modal--embedded .github-import-list-pane {
flex: 0 0 auto !important;
width: 100%;
max-height: 40cqh;
padding-right: 0;
}
.github-import-modal--embedded .github-import-preview-pane {
flex: 0 0 auto;
width: 100%;
min-width: 0;
}
/*
FNXC:RightDockEmbedding 2026-06-22-13:30:
Stacked (narrow) embedded layout: the preview pane is natural-height (flex: 0 0 auto), so its inner
.github-import-pane-content must NOT keep the side-by-side `flex: 1; min-height: 0; overflow-y: auto`
treatment — under a natural-height parent that collapses the content to ~zero and clips the issue/PR
body. Let the content take its full intrinsic height and hand vertical scrolling to .github-import-modal__body
(the view scroll owner) so a long, tall preview is fully reachable by scrolling the whole view.
*/
.github-import-modal--embedded .github-import-preview-pane .github-import-pane-content {
flex: 0 0 auto;
min-height: auto;
overflow-y: visible;
}
/* Hide the col-resize handle when stacked; it only makes sense in the side-by-side layout. */
.github-import-modal--embedded .github-import-workspace__resize-handle {
display: none;
}
@container github-import-embedded (min-width: 720px) {
.github-import-modal--embedded .github-import-workspace {
flex-direction: row;
/* Wide layout: fill the body height so the preview pane can scroll internally (not the whole view). */
flex: 1 1 auto;
}
/*
FNXC:GitHubImport 2026-06-23-00:30:
Wide (two-pane) embedded layout: the list pane must honor the user's inline `flex: 0 0 <listPaneWidth>px` from the resize
handle — the prior `flex: ... !important` clamp silently overrode it, which is why the embedded Import Tasks list "couldn't
be made smaller" and the preview stayed cramped. Reset only the stacked-mode overrides (width/max-height/padding) here and let
the inline flex win. The preview pane is `flex: 1 1 auto; min-width: 0` (below) so the freed width flows to the preview.
*/
.github-import-modal--embedded .github-import-list-pane {
/* `!important` here only neutralizes the stacked rule's own `!important`; the width comes from the inline CSS var. */
flex: 0 0 var(--gh-import-list-width, clamp(160px, 30cqi, 480px)) !important;
width: auto;
max-height: none;
padding-right: var(--space-md);
}
/*
FNXC:RightDockEmbedding 2026-06-22-13:30:
Wide (two-pane) embedded layout: the preview pane fills the available row height and scrolls
INTERNALLY so a long preview is reachable without moving the list. Restore the flex-fill pane and
let .github-import-pane-content own the vertical scroll (min-height:0 enables the overflow inside a
flex child). The list keeps its own internal scroll, so the two panes scroll independently.
*/
.github-import-modal--embedded .github-import-preview-pane {
flex: 1 1 auto;
min-height: 0;
}
.github-import-modal--embedded .github-import-preview-pane .github-import-pane-content {
flex: 1 1 auto;
min-height: 0;
overflow-y: auto;
}
.github-import-modal--embedded .github-import-workspace__resize-handle {
display: block;
}
}