Merge pull request 'feat(pipeline): Pipeline kanban board + full-page lead detail with Move Stage' (#36) from feat/pipeline into goutamnextflow

Reviewed-on: #36
This commit was merged in pull request #36.
This commit is contained in:
2026-07-29 08:39:51 +00:00
5 changed files with 1075 additions and 0 deletions
+248
View File
@@ -1582,3 +1582,251 @@
.dash-root .ds-toast.is-clickable .ds-toast-body { cursor: pointer; }
.dash-root .ds-toast.is-clickable .ds-toast-body:hover .ds-toast-title { color: var(--orange); }
/* =======================================================================
Pipeline — kanban board
======================================================================= */
.dash-root .pl { display: flex; flex-direction: column; height: 100%; min-height: 0; }
/* tone accents (per column / drawer via data-tone) */
.dash-root [data-tone="blue"] { --pl-accent: #4f8cff; }
.dash-root [data-tone="purple"] { --pl-accent: #b07bf2; }
.dash-root [data-tone="magenta"] { --pl-accent: #db5fd0; }
.dash-root [data-tone="orange"] { --pl-accent: var(--orange); }
.dash-root [data-tone="green"] { --pl-accent: var(--green); }
.dash-root [data-tone="cyan"] { --pl-accent: #34c9d6; }
.dash-root [data-tone="red"] { --pl-accent: var(--red); }
/* ---- head ---- */
.dash-root .pl-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.dash-root .pl-head-l { display: flex; align-items: center; gap: 12px; }
.dash-root .pl-head-ic { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: color-mix(in srgb, var(--orange) 14%, transparent); color: var(--orange); flex: 0 0 auto; }
.dash-root .pl-head-l h1 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.dash-root .pl-head-l p { margin: 2px 0 0; font-size: 12.5px; color: var(--muted); }
.dash-root .pl-search { display: flex; align-items: center; gap: 8px; height: 40px; width: 300px; max-width: 46vw; padding: 0 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--panel-2); color: var(--muted); }
.dash-root .pl-search:focus-within { border-color: var(--orange); }
.dash-root .pl-search input { flex: 1 1 auto; border: 0; background: none; outline: none; color: var(--text); font-size: 13.5px; font-family: inherit; }
.dash-root .pl-search input::placeholder { color: var(--muted); }
.dash-root .pl-search-x { display: grid; place-items: center; border: 0; background: none; color: var(--muted); cursor: pointer; padding: 2px; }
.dash-root .pl-search-x:hover { color: var(--text); }
/* ---- board ---- */
.dash-root .pl-board { display: flex; gap: 14px; align-items: flex-start; overflow-x: auto; overflow-y: hidden; flex: 1 1 auto; min-height: 0; padding-bottom: 12px; scrollbar-width: thin; }
.dash-root .pl-board::-webkit-scrollbar { height: 9px; }
.dash-root .pl-board::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }
.dash-root .pl-col { flex: 0 0 288px; width: 288px; display: flex; flex-direction: column; min-height: 0; max-height: 100%; background: var(--panel-2); border: 1px solid var(--border); border-radius: 14px; padding: 12px 10px 4px; transition: border-color .14s, background .14s; }
.dash-root .pl-col.is-over { border-color: var(--pl-accent); background: color-mix(in srgb, var(--pl-accent) 7%, var(--panel-2)); }
.dash-root .pl-col.is-flag { background: color-mix(in srgb, var(--pl-accent) 5%, var(--panel-2)); }
.dash-root .pl-col-head { display: flex; align-items: center; gap: 8px; padding: 2px 4px 8px; }
.dash-root .pl-col-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pl-accent); flex: 0 0 auto; box-shadow: 0 0 8px color-mix(in srgb, var(--pl-accent) 60%, transparent); }
.dash-root .pl-col-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); }
.dash-root .pl-col-count { display: grid; place-items: center; min-width: 20px; height: 18px; padding: 0 6px; border-radius: 99px; background: color-mix(in srgb, var(--pl-accent) 20%, transparent); color: var(--pl-accent); font-size: 11px; font-weight: 700; }
.dash-root .pl-col-step { margin-left: auto; font-size: 10.5px; font-weight: 600; color: var(--faint); font-variant-numeric: tabular-nums; }
.dash-root .pl-col-bar { height: 3px; border-radius: 99px; background: var(--track); overflow: hidden; margin: 0 4px 10px; }
.dash-root .pl-col-bar > span { display: block; height: 100%; background: var(--pl-accent); border-radius: inherit; }
.dash-root .pl-col-body { display: flex; flex-direction: column; gap: 10px; overflow-y: auto; padding: 2px 4px 10px; min-height: 60px; scrollbar-width: thin; }
.dash-root .pl-col-body::-webkit-scrollbar { width: 6px; }
.dash-root .pl-col-body::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }
.dash-root .pl-col-empty { border: 1px dashed var(--border-2); border-radius: 10px; padding: 18px 10px; text-align: center; font-size: 12px; color: var(--faint); }
/* ---- card ---- */
.dash-root .pl-card { text-align: left; width: 100%; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 11px 12px; cursor: pointer; transition: border-color .14s, transform .1s, box-shadow .14s; }
.dash-root .pl-card:hover { border-color: var(--border-2); box-shadow: var(--shadow); transform: translateY(-1px); }
.dash-root .pl-card.is-dragging { opacity: 0.5; }
.dash-root .pl-col.is-flag .pl-card { border-left: 3px solid var(--pl-accent); }
.dash-root .pl-card-top { display: flex; align-items: center; gap: 10px; }
.dash-root .pl-card-id { min-width: 0; flex: 1; }
.dash-root .pl-card-name { font-size: 13.5px; font-weight: 600; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-root .pl-card-addr { display: flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.dash-root .pl-card-addr svg { flex: 0 0 auto; color: var(--faint); }
.dash-root .pl-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0; }
.dash-root .pl-tag { font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 7px; }
.dash-root .pl-tag.work { background: color-mix(in srgb, var(--orange) 15%, transparent); color: var(--orange); }
.dash-root .pl-tag.type { background: color-mix(in srgb, var(--blue) 18%, transparent); color: #6f9bff; }
.dash-root .pl-card-foot { display: flex; align-items: center; gap: 8px; padding-top: 9px; border-top: 1px solid var(--border); font-size: 11px; color: var(--muted); }
.dash-root .pl-card-foot svg { flex: 0 0 auto; }
.dash-root .pl-rep { display: inline-flex; align-items: center; gap: 4px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-root .pl-card-spacer { flex: 1; }
.dash-root .pl-storm { display: inline-flex; align-items: center; gap: 3px; color: var(--orange); font-weight: 600; flex: 0 0 auto; }
.dash-root .pl-age { display: inline-flex; align-items: center; gap: 3px; color: var(--faint); flex: 0 0 auto; font-variant-numeric: tabular-nums; }
/* ---- drawer ---- */
.dash-root .pl-scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 79; animation: ds-fade .2s ease; }
.dash-root .pl-drawer { position: fixed; top: 0; right: 0; height: 100vh; width: 400px; max-width: 92vw; z-index: 80; display: flex; flex-direction: column; background: var(--panel); border-left: 1px solid var(--border-2); box-shadow: -24px 0 60px -20px rgba(0,0,0,0.6); animation: pl-slide .22s cubic-bezier(.2,.7,.3,1); }
@keyframes pl-slide { from { transform: translateX(24px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.dash-root .pl-drawer-head { display: flex; align-items: center; gap: 12px; padding: 18px 18px 14px; border-bottom: 1px solid var(--border); }
.dash-root .pl-drawer-id { min-width: 0; flex: 1; }
.dash-root .pl-drawer-name { font-size: 16px; font-weight: 700; color: var(--text); }
.dash-root .pl-drawer-addr { font-size: 12px; color: var(--muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dash-root .pl-drawer-x { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 9px; border: 0; background: none; color: var(--muted); cursor: pointer; flex: 0 0 auto; }
.dash-root .pl-drawer-x:hover { background: var(--panel-2); color: var(--text); }
.dash-root .pl-drawer-status { padding: 14px 18px; border-bottom: 1px solid var(--border); }
.dash-root .pl-status-row { display: flex; align-items: baseline; justify-content: space-between; }
.dash-root .pl-status-label { font-size: 13px; font-weight: 600; color: var(--text); }
.dash-root .pl-status-pct { font-size: 13px; font-weight: 700; color: var(--pl-accent); font-variant-numeric: tabular-nums; }
.dash-root .pl-status-bar { height: 5px; border-radius: 99px; background: var(--track); overflow: hidden; margin: 8px 0 12px; }
.dash-root .pl-status-bar > span { display: block; height: 100%; background: linear-gradient(90deg, color-mix(in srgb, var(--pl-accent) 55%, transparent), var(--pl-accent)); border-radius: inherit; transition: width .3s ease; }
.dash-root .pl-steps { display: flex; flex-wrap: wrap; gap: 4px 12px; }
.dash-root .pl-step { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: var(--faint); }
.dash-root .pl-step-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border-2); }
.dash-root .pl-step.done { color: var(--text-2); }
.dash-root .pl-step.done .pl-step-dot { background: var(--pl-accent); }
.dash-root .pl-drawer-tabs { display: flex; gap: 22px; padding: 0 18px; border-bottom: 1px solid var(--border); }
.dash-root .pl-drawer-tabs button { position: relative; border: 0; background: none; padding: 12px 0; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; }
.dash-root .pl-drawer-tabs button.active { color: var(--text); }
.dash-root .pl-drawer-tabs button.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; border-radius: 2px; background: var(--orange); }
.dash-root .pl-drawer-body { flex: 1 1 auto; overflow-y: auto; padding: 16px 18px; }
.dash-root .pl-dsec { margin-bottom: 18px; }
.dash-root .pl-dsec-head { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-bottom: 9px; }
.dash-root .pl-contact { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-2); padding: 5px 0; }
.dash-root .pl-contact svg { color: var(--muted); flex: 0 0 auto; }
.dash-root .pl-jobgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dash-root .pl-jobbox { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel-2); }
.dash-root .pl-jobk { font-size: 11px; color: var(--muted); }
.dash-root .pl-jobv { font-size: 13px; font-weight: 600; color: var(--text); }
.dash-root .pl-assign { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--text); padding: 9px 12px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel-2); }
.dash-root .pl-assign svg { color: var(--muted); }
.dash-root .pl-notes { font-size: 13px; line-height: 1.5; color: var(--text-2); padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel-2); }
.dash-root .pl-activity { display: flex; flex-direction: column; }
.dash-root .pl-act { display: flex; gap: 12px; position: relative; padding-bottom: 18px; }
.dash-root .pl-act::before { content: ""; position: absolute; left: 4px; top: 14px; bottom: -4px; width: 2px; background: var(--border); }
.dash-root .pl-act:last-child { padding-bottom: 0; }
.dash-root .pl-act:last-child::before { display: none; }
.dash-root .pl-act-node { position: relative; z-index: 1; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); margin-top: 4px; flex: 0 0 auto; box-shadow: 0 0 0 3px var(--panel); }
.dash-root .pl-act-body { flex: 1; min-width: 0; }
.dash-root .pl-act-head { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--text); }
.dash-root .pl-act-head svg { color: var(--muted); }
.dash-root .pl-act-from { color: var(--muted); font-weight: 500; }
.dash-root .pl-act-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.dash-root .pl-act-note { font-size: 12.5px; color: var(--text-2); margin-top: 7px; padding: 8px 11px; border-radius: 9px; background: var(--panel-2); border: 1px solid var(--border); }
.dash-root .pl-drawer-foot { padding: 14px 18px; border-top: 1px solid var(--border); }
.dash-root .pl-more { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 44px; border: 0; border-radius: 12px; background: var(--blue); color: #fff; font-family: inherit; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: filter .14s; }
.dash-root .pl-more:hover { filter: brightness(1.08); }
/* =======================================================================
Pipeline — full-page lead detail (from the drawer's "More Details")
======================================================================= */
.dash-root .pld { display: flex; flex-direction: column; gap: 16px; }
/* ---- breadcrumb ---- */
.dash-root .pld-crumbs { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--faint); }
.dash-root .pld-back { display: inline-flex; align-items: center; gap: 6px; border: 0; background: none; padding: 0; font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--muted); cursor: pointer; transition: color .14s; }
.dash-root .pld-back:hover { color: var(--orange); }
.dash-root .pld-back-ic { transform: rotate(180deg); }
.dash-root .pld-crumb-now { color: var(--text); font-weight: 600; }
.dash-root .pld-crumb-id { margin-left: 2px; padding: 2px 7px; border-radius: 6px; background: var(--panel-2); border: 1px solid var(--border); font-size: 11px; font-weight: 600; color: var(--muted); font-variant-numeric: tabular-nums; }
/* ---- hero ---- */
/* No `overflow: hidden` here — it would clip the Move Stage dropdown. The
accent bar rounds its own top corners instead. */
.dash-root .pld-hero { display: flex; align-items: flex-start; gap: 16px; padding: 18px 20px; border-radius: 16px; border: 1px solid var(--border); background: var(--panel); position: relative; }
.dash-root .pld-hero::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; border-radius: 16px 16px 0 0; background: linear-gradient(90deg, var(--pl-accent), transparent); }
.dash-root .pld-hero-id { flex: 1; min-width: 0; }
.dash-root .pld-hero-name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); }
.dash-root .pld-hero-addr { display: flex; align-items: center; gap: 6px; margin-top: 4px; font-size: 13px; color: var(--muted); }
.dash-root .pld-hero-addr svg { flex: 0 0 auto; color: var(--faint); }
.dash-root .pld-hero-pills { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin-top: 12px; }
.dash-root .pld-hero-actions { display: flex; gap: 8px; flex: 0 0 auto; }
/* ---- move stage dropdown ---- */
.dash-root .pld-move { position: relative; }
.dash-root .pld-move-scrim { position: fixed; inset: 0; z-index: 40; }
.dash-root .pld-move-menu { position: absolute; top: calc(100% + 8px); right: 0; z-index: 41; width: 232px; max-height: min(60vh, 420px); overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; padding: 6px; border-radius: 14px; border: 1px solid var(--border-2); background: var(--panel); box-shadow: var(--shadow-lg, 0 18px 44px -12px rgba(0,0,0,0.55)); animation: ds-fade .14s ease; }
.dash-root .pld-move-menu::-webkit-scrollbar { width: 6px; }
.dash-root .pld-move-menu::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }
.dash-root .pld-move-group + .pld-move-group { margin-top: 4px; padding-top: 4px; border-top: 1px solid var(--border); }
.dash-root .pld-move-grouphead { padding: 7px 10px 5px; font-size: 10px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--faint); }
.dash-root .pld-move-item { display: flex; align-items: center; gap: 9px; width: 100%; padding: 8px 10px; border: 0; border-radius: 9px; background: none; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--text-2); text-align: left; cursor: pointer; transition: background .12s, color .12s; }
.dash-root .pld-move-item:hover:not(:disabled) { background: color-mix(in srgb, var(--pl-accent) 12%, transparent); color: var(--text); }
.dash-root .pld-move-item:disabled { cursor: default; color: var(--text); }
.dash-root .pld-move-item.is-current { background: var(--panel-2); }
.dash-root .pld-move-item svg { margin-left: auto; color: var(--pl-accent); flex: 0 0 auto; }
.dash-root .pld-move-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pl-accent); flex: 0 0 auto; box-shadow: 0 0 8px color-mix(in srgb, var(--pl-accent) 55%, transparent); }
.dash-root .pld-move-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
/* ---- stage progress ---- */
.dash-root .pld-progress { padding: 16px 20px; border-radius: 16px; border: 1px solid var(--border); background: var(--panel); }
.dash-root .pld-progress-row { display: flex; align-items: baseline; justify-content: space-between; }
.dash-root .pld-progress-label { font-size: 14px; font-weight: 700; color: var(--text); }
.dash-root .pld-progress-pct { font-size: 13px; font-weight: 700; color: var(--pl-accent); font-variant-numeric: tabular-nums; }
.dash-root .pld-progress-bar { height: 6px; border-radius: 99px; background: var(--track); overflow: hidden; margin: 10px 0 16px; }
.dash-root .pld-progress-bar > span { display: block; height: 100%; background: linear-gradient(90deg, color-mix(in srgb, var(--pl-accent) 55%, transparent), var(--pl-accent)); border-radius: inherit; transition: width .3s ease; }
.dash-root .pld-steps { display: flex; flex-wrap: wrap; gap: 10px 6px; list-style: none; margin: 0; padding: 0; }
.dash-root .pld-step { display: flex; align-items: center; gap: 7px; flex: 1 1 120px; min-width: 0; position: relative; }
.dash-root .pld-step::after { content: ""; position: absolute; left: 22px; right: 4px; top: 11px; height: 2px; background: var(--border); z-index: 0; }
.dash-root .pld-step:last-child::after { display: none; }
.dash-root .pld-step.done::after { background: var(--pl-accent); }
.dash-root .pld-step.now::after, .dash-root .pld-step.now ~ .pld-step::after { background: var(--border); }
.dash-root .pld-step-dot { position: relative; z-index: 1; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; flex: 0 0 auto; background: var(--panel-2); border: 1px solid var(--border-2); color: var(--faint); font-size: 10.5px; font-weight: 700; }
.dash-root .pld-step.done .pld-step-dot { background: var(--pl-accent); border-color: var(--pl-accent); color: #fff; }
.dash-root .pld-step.now .pld-step-dot { box-shadow: 0 0 0 4px color-mix(in srgb, var(--pl-accent) 20%, transparent); }
.dash-root .pld-step-label { font-size: 11.5px; font-weight: 600; color: var(--faint); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; background: var(--panel); padding-right: 6px; position: relative; z-index: 1; }
.dash-root .pld-step.done .pld-step-label { color: var(--text-2); }
.dash-root .pld-step.now .pld-step-label { color: var(--text); }
/* ---- overview grid ---- */
.dash-root .pld-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.dash-root .pld-sec { border: 1px solid var(--border); border-radius: 14px; background: var(--panel); overflow: hidden; }
.dash-root .pld-sec.wide { grid-column: 1 / -1; }
.dash-root .pld-sec-head { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border); background: var(--panel-2); font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-2); }
.dash-root .pld-sec-head svg { color: var(--pl-accent); }
.dash-root .pld-sec-body { padding: 8px 16px 14px; }
.dash-root .pld-kv { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed var(--border); }
.dash-root .pld-kv:last-child { border-bottom: 0; }
.dash-root .pld-kv-k { font-size: 12px; color: var(--muted); flex: 0 0 auto; }
.dash-root .pld-kv-v { font-size: 13px; font-weight: 600; color: var(--text); text-align: right; min-width: 0; overflow-wrap: anywhere; }
.dash-root .pld-sublabel { font-size: 10.5px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--faint); margin: 12px 0 6px; }
.dash-root .pld-sec-body > .pld-sublabel:first-child { margin-top: 4px; }
.dash-root .pld-contact { display: flex; align-items: center; gap: 9px; padding: 7px 0; font-size: 13px; }
.dash-root .pld-contact svg { color: var(--muted); flex: 0 0 auto; }
.dash-root .pld-contact-val { font-weight: 600; color: var(--text); min-width: 0; overflow-wrap: anywhere; }
.dash-root .pld-contact-tag { font-size: 11px; color: var(--muted); padding: 2px 7px; border-radius: 6px; background: var(--panel-2); border: 1px solid var(--border); }
.dash-root .pld-notes { font-size: 13px; line-height: 1.55; color: var(--text-2); margin: 0; padding: 11px 13px; border: 1px solid var(--border); border-radius: 10px; background: var(--panel-2); }
.dash-root .pld-assign { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0 24px; }
.dash-root .pld-empty { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 26px 12px; color: var(--faint); text-align: center; }
.dash-root .pld-empty p { margin: 0; font-size: 12.5px; }
@media (max-width: 980px) {
.dash-root .pld-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
.dash-root .pl-search { width: 100%; max-width: none; }
.dash-root .pl-col { flex-basis: 82vw; width: 82vw; }
.dash-root .pld-hero { flex-wrap: wrap; }
.dash-root .pld-hero-actions { width: 100%; }
.dash-root .pld-hero-actions > * { flex: 1; }
.dash-root .pld-move > .ds-btn { width: 100%; }
.dash-root .pld-step { flex: 1 1 100%; }
.dash-root .pld-step::after { display: none; }
/* Phones: a bottom sheet can't be clipped or pushed off-screen the way an
anchored dropdown can, and every stage stays thumb-reachable. */
.dash-root .pld-move-scrim { background: rgba(0,0,0,0.5); z-index: 90; animation: ds-fade .16s ease; }
.dash-root .pld-move-menu {
position: fixed; z-index: 91;
top: auto; right: 12px; left: 12px; bottom: max(12px, env(safe-area-inset-bottom));
width: auto; max-height: 72vh; padding: 8px;
border-radius: 18px; box-shadow: 0 -10px 44px -12px rgba(0,0,0,0.6);
animation: pld-sheet .2s cubic-bezier(.2,.7,.3,1);
}
.dash-root .pld-move-item { padding: 11px 12px; font-size: 14px; }
}
@keyframes pld-sheet { from { transform: translateY(14px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
/* Short viewports (landscape phones, small laptops): keep the anchored menu
inside the screen rather than letting it run past the fold. */
@media (min-width: 721px) and (max-height: 620px) {
.dash-root .pld-move-menu { max-height: 48vh; }
}