Connect live analysis journey to map workflow
This commit is contained in:
@@ -1415,3 +1415,235 @@ button.overview-command-card { cursor: pointer; }
|
||||
transition-duration: .01ms !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* De marketingillustratie wordt hier een echte productstatus. Alle stappen
|
||||
volgen API- en hookstate uit MapWorkspace; de laag onderschept geen kaartinput. */
|
||||
.live-analysis-journey {
|
||||
position: absolute;
|
||||
z-index: 4;
|
||||
inset: 0;
|
||||
overflow: hidden;
|
||||
color: #f5fffc;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.live-analysis-status-card,
|
||||
.live-analysis-proof,
|
||||
.live-analysis-steps {
|
||||
border: 1px solid rgba(190, 244, 232, 0.24);
|
||||
background: rgba(4, 45, 40, 0.86);
|
||||
box-shadow: 0 14px 36px rgba(2, 28, 25, 0.24);
|
||||
backdrop-filter: blur(12px);
|
||||
}
|
||||
|
||||
.live-analysis-status-card {
|
||||
position: absolute;
|
||||
top: var(--gi-space-4);
|
||||
left: var(--gi-space-4);
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
width: min(14rem, calc(100% - 2rem));
|
||||
border-radius: var(--gi-radius-md);
|
||||
padding: 0.72rem 0.82rem;
|
||||
}
|
||||
|
||||
.live-analysis-kicker {
|
||||
color: #8ee7d2;
|
||||
font-size: 0.55rem;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.1em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.live-analysis-kicker i {
|
||||
display: inline-block;
|
||||
width: 0.42rem;
|
||||
height: 0.42rem;
|
||||
margin-right: 0.4rem;
|
||||
border-radius: 50%;
|
||||
background: #77e2ca;
|
||||
box-shadow: 0 0 0 5px rgba(119, 226, 202, 0.12);
|
||||
}
|
||||
|
||||
.live-analysis-status-card strong {
|
||||
font-family: Manrope, sans-serif;
|
||||
font-size: 0.88rem;
|
||||
}
|
||||
|
||||
.live-analysis-status-card small {
|
||||
overflow: hidden;
|
||||
color: rgba(245, 255, 252, 0.68);
|
||||
font-size: 0.62rem;
|
||||
line-height: 1.35;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.live-analysis-steps {
|
||||
position: absolute;
|
||||
bottom: var(--gi-space-4);
|
||||
left: var(--gi-space-4);
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(3.6rem, 1fr));
|
||||
width: min(25rem, calc(100% - 2rem));
|
||||
margin: 0;
|
||||
border-radius: var(--gi-radius-md);
|
||||
padding: 0.52rem 0.62rem;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.live-analysis-step {
|
||||
position: relative;
|
||||
display: grid;
|
||||
gap: 0.24rem;
|
||||
justify-items: center;
|
||||
color: rgba(245, 255, 252, 0.45);
|
||||
}
|
||||
|
||||
.live-analysis-step:not(:last-child)::after {
|
||||
position: absolute;
|
||||
top: 0.68rem;
|
||||
left: calc(50% + 0.9rem);
|
||||
width: calc(100% - 1.8rem);
|
||||
border-top: 1px dashed rgba(142, 231, 210, 0.3);
|
||||
content: '';
|
||||
}
|
||||
|
||||
.live-analysis-step > span {
|
||||
display: grid;
|
||||
z-index: 1;
|
||||
place-items: center;
|
||||
width: 1.45rem;
|
||||
height: 1.45rem;
|
||||
border: 1px solid rgba(190, 244, 232, 0.24);
|
||||
border-radius: 50%;
|
||||
background: #103f3a;
|
||||
}
|
||||
|
||||
.live-analysis-step svg {
|
||||
width: 0.72rem;
|
||||
height: 0.72rem;
|
||||
}
|
||||
|
||||
.live-analysis-step small {
|
||||
font-size: 0.54rem;
|
||||
font-weight: 750;
|
||||
}
|
||||
|
||||
.live-analysis-step-active,
|
||||
.live-analysis-step-complete {
|
||||
color: #a8f3e2;
|
||||
}
|
||||
|
||||
.live-analysis-step-active > span {
|
||||
border-color: #8ee7d2;
|
||||
box-shadow: 0 0 0 5px rgba(119, 226, 202, 0.12);
|
||||
}
|
||||
|
||||
.live-analysis-step-complete > span {
|
||||
border-color: #66d6bd;
|
||||
background: #176a5c;
|
||||
}
|
||||
|
||||
.live-analysis-step-error,
|
||||
.live-analysis-journey-error .live-analysis-kicker {
|
||||
color: #ffd2c2;
|
||||
}
|
||||
|
||||
.live-analysis-step-error > span,
|
||||
.live-analysis-journey-error .live-analysis-status-card {
|
||||
border-color: rgba(255, 137, 105, 0.7);
|
||||
}
|
||||
|
||||
.live-analysis-proof {
|
||||
position: absolute;
|
||||
top: var(--gi-space-4);
|
||||
right: var(--gi-space-4);
|
||||
display: flex;
|
||||
gap: 0.46rem;
|
||||
align-items: center;
|
||||
max-width: min(15rem, 42%);
|
||||
border-radius: var(--gi-radius-md);
|
||||
padding: 0.62rem 0.72rem;
|
||||
color: rgba(245, 255, 252, 0.64);
|
||||
font-size: 0.59rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.live-analysis-proof svg {
|
||||
flex: 0 0 auto;
|
||||
width: 0.88rem;
|
||||
height: 0.88rem;
|
||||
color: #8ee7d2;
|
||||
}
|
||||
|
||||
.live-analysis-proof-ready {
|
||||
border-color: rgba(142, 231, 210, 0.62);
|
||||
color: #f5fffc;
|
||||
}
|
||||
|
||||
.live-analysis-journey-running::after {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 16%;
|
||||
width: 2px;
|
||||
background: linear-gradient(180deg, transparent, rgba(174, 255, 237, 0.86), transparent);
|
||||
filter: drop-shadow(0 0 7px #7be6d1);
|
||||
content: '';
|
||||
animation: gi-live-analysis-scan 3.8s ease-in-out infinite;
|
||||
}
|
||||
|
||||
.live-analysis-journey-running .live-analysis-kicker i {
|
||||
animation: gi-live-analysis-pulse 1.8s ease-out infinite;
|
||||
}
|
||||
|
||||
@keyframes gi-live-analysis-scan {
|
||||
0%, 100% { opacity: 0; transform: translateX(0); }
|
||||
15%, 85% { opacity: 0.72; }
|
||||
50% { opacity: 0.92; transform: translateX(34vw); }
|
||||
}
|
||||
|
||||
@keyframes gi-live-analysis-pulse {
|
||||
50% { box-shadow: 0 0 0 9px rgba(119, 226, 202, 0); }
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
.live-analysis-status-card {
|
||||
top: var(--gi-space-3);
|
||||
left: var(--gi-space-3);
|
||||
width: min(12rem, calc(100% - 6rem));
|
||||
}
|
||||
|
||||
.live-analysis-proof {
|
||||
top: var(--gi-space-3);
|
||||
right: var(--gi-space-3);
|
||||
width: 2rem;
|
||||
min-height: 2rem;
|
||||
padding: 0;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.live-analysis-proof span {
|
||||
position: absolute;
|
||||
width: 1px;
|
||||
height: 1px;
|
||||
overflow: hidden;
|
||||
clip: rect(0 0 0 0);
|
||||
}
|
||||
|
||||
.live-analysis-steps {
|
||||
right: var(--gi-space-3);
|
||||
bottom: var(--gi-space-3);
|
||||
left: var(--gi-space-3);
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
width: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (prefers-reduced-motion: reduce) {
|
||||
.live-analysis-journey *,
|
||||
.live-analysis-journey::after {
|
||||
animation: none !important;
|
||||
transition-duration: 0.01ms !important;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user