Merge remote-tracking branch 'origin/master' into feat/profile-ui-polish
This commit is contained in:
@@ -592,6 +592,19 @@
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.studio-canvas-loading-spinner {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border: 3px solid rgba(var(--accent-rgb), 0.18);
|
||||
border-top-color: var(--accent);
|
||||
border-radius: 50%;
|
||||
animation: canvas-spin 0.8s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes canvas-spin {
|
||||
to { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@media (max-width: 640px) {
|
||||
.studio-canvas-project-bar {
|
||||
right: 10px;
|
||||
|
||||
@@ -122,6 +122,16 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.ecom-video-flowbar__stage-label {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
color: #53e5ff;
|
||||
font-size: 12px;
|
||||
font-weight: 800;
|
||||
animation: ecom-video-node-breathe 1.6s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.ecom-video-flow-action {
|
||||
display: inline-grid;
|
||||
width: 38px;
|
||||
@@ -484,6 +494,197 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* ── Empty state ─────────────────────────────── */
|
||||
.ecom-video-empty {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100%;
|
||||
color: #697486;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
/* ── Flow map vertical stacking ────────────────── */
|
||||
.ecom-video-flow-map {
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
padding: 20px 0 40px;
|
||||
}
|
||||
|
||||
/* ── Text nodes (plan steps) ──────────────────── */
|
||||
.ecom-video-flow-node--text {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
gap: 6px;
|
||||
width: clamp(64px, 7vw, 90px);
|
||||
min-height: 74px;
|
||||
padding: 12px 8px;
|
||||
border-color: #2a3d30;
|
||||
background: #131d1a;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--text.is-completed {
|
||||
border-color: #1c4d3a;
|
||||
background: #162820;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--text.is-pulsing {
|
||||
border-color: #53e5ff;
|
||||
animation: ecom-video-node-breathe 1.2s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node__text-icon {
|
||||
display: grid;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
place-items: center;
|
||||
border-radius: 999px;
|
||||
background: #1c4d3a;
|
||||
color: #34d399;
|
||||
font-size: 12px;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--text.is-pulsing .ecom-video-flow-node__text-icon {
|
||||
background: #1a4d4d;
|
||||
color: #53e5ff;
|
||||
}
|
||||
|
||||
/* ── Node labels ──────────────────────────────── */
|
||||
.ecom-video-flow-node__label {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
overflow: hidden;
|
||||
color: #9fadb8;
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--source .ecom-video-flow-node__label,
|
||||
.ecom-video-flow-node--text .ecom-video-flow-node__label {
|
||||
margin-top: 2px;
|
||||
}
|
||||
|
||||
/* ── Image nodes (storyboard images) ───────────── */
|
||||
.ecom-video-flow-node--image {
|
||||
width: clamp(88px, 9vw, 128px);
|
||||
aspect-ratio: 9 / 13;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--image .ecom-video-flow-node__media {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--image .ecom-video-flow-node__label {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 6px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--image .ecom-video-flow-node__progress {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: auto;
|
||||
height: auto;
|
||||
background: none;
|
||||
color: #53e5ff;
|
||||
font-size: 15px;
|
||||
font-weight: 1000;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--image .ecom-video-flow-node__placeholder {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
background: #18231f;
|
||||
color: #7eeecf;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
/* ── Video nodes ──────────────────────────────── */
|
||||
.ecom-video-flow-node--video {
|
||||
width: clamp(88px, 9vw, 128px);
|
||||
aspect-ratio: 9 / 16;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--video .ecom-video-flow-node__label {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 6px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--video .ecom-video-flow-node__progress {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: auto;
|
||||
height: auto;
|
||||
background: none;
|
||||
color: #53e5ff;
|
||||
font-size: 15px;
|
||||
font-weight: 1000;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--video .ecom-video-flow-node__placeholder {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
background: #18231f;
|
||||
color: #7eeecf;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.ecom-video-flow-node--video .ecom-video-flow-node__media video {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
/* ── Error label ──────────────────────────────── */
|
||||
.ecom-video-flow-node__error {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 24px;
|
||||
overflow: hidden;
|
||||
color: #ff9f9f;
|
||||
font-size: 10px;
|
||||
font-weight: 800;
|
||||
text-align: center;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* ── Scene strip overflow ─────────────────────── */
|
||||
.ecom-video-scene-strip--text {
|
||||
overflow-x: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #414958 transparent;
|
||||
}
|
||||
|
||||
.ecom-video-scene-strip--text::-webkit-scrollbar {
|
||||
height: 3px;
|
||||
}
|
||||
|
||||
.ecom-video-scene-strip--text::-webkit-scrollbar-thumb {
|
||||
background: #414958;
|
||||
border-radius: 999px;
|
||||
}
|
||||
|
||||
@media (max-width: 900px) {
|
||||
.ecom-video-flowbar {
|
||||
grid-template-columns: auto 1fr;
|
||||
|
||||
@@ -520,6 +520,48 @@
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.script-eval-v5-retry-btn {
|
||||
margin-left: auto;
|
||||
min-width: 56px;
|
||||
padding: 4px 14px;
|
||||
border: 1px solid rgba(255, 107, 53, 0.35);
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
color: #ff6b35;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
cursor: pointer;
|
||||
transition: background 140ms ease;
|
||||
}
|
||||
|
||||
.script-eval-v5-retry-btn:hover:not(:disabled) {
|
||||
background: rgba(255, 107, 53, 0.15);
|
||||
}
|
||||
|
||||
.script-eval-v5-retry-btn:disabled {
|
||||
opacity: 0.4;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.script-eval-v5-loading {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
gap: 12px;
|
||||
padding: 32px 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.script-eval-v5-loading strong {
|
||||
color: var(--fg-body);
|
||||
font-size: 15px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.script-eval-v5-loading p {
|
||||
color: var(--fg-muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
/* Hero */
|
||||
.script-eval-v5-hero {
|
||||
margin-bottom: 18px;
|
||||
|
||||
@@ -4890,7 +4890,7 @@
|
||||
}
|
||||
|
||||
.management-status-trend {
|
||||
padding: 6px 14px 10px;
|
||||
padding: 12px 18px 16px;
|
||||
border-top: 1px solid var(--border-weak);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user