+94
-6
@@ -219,7 +219,7 @@
|
||||
.pd-palette-item:hover { background: #1e293b; }
|
||||
|
||||
.job-panel {
|
||||
background: #0f172a;
|
||||
background: linear-gradient(165deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.96));
|
||||
border: 1px solid #334155;
|
||||
border-radius: 12px;
|
||||
padding: 1rem;
|
||||
@@ -229,19 +229,95 @@
|
||||
overflow: hidden;
|
||||
min-width: 0;
|
||||
}
|
||||
.job-panel--running {
|
||||
border-color: rgba(45, 212, 191, 0.35);
|
||||
box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.08), 0 12px 40px rgba(0, 0, 0, 0.4);
|
||||
}
|
||||
.job-panel-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
align-items: flex-start;
|
||||
gap: 0.65rem;
|
||||
margin-bottom: 0.75rem;
|
||||
min-width: 0;
|
||||
}
|
||||
.job-panel-title {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
gap: 0.55rem;
|
||||
min-width: 0;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.job-kind-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 1.85rem;
|
||||
height: 1.85rem;
|
||||
border-radius: 9px;
|
||||
flex-shrink: 0;
|
||||
background: rgba(45, 212, 191, 0.12);
|
||||
border: 1px solid rgba(45, 212, 191, 0.28);
|
||||
color: var(--pd-accent-primary, #2dd4bf);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.job-panel--success .job-kind-icon {
|
||||
background: rgba(52, 211, 153, 0.12);
|
||||
border-color: rgba(52, 211, 153, 0.35);
|
||||
color: #34d399;
|
||||
}
|
||||
.job-panel--error .job-kind-icon {
|
||||
background: rgba(248, 113, 113, 0.12);
|
||||
border-color: rgba(248, 113, 113, 0.35);
|
||||
color: #f87171;
|
||||
}
|
||||
.job-panel-title-text {
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.1rem;
|
||||
}
|
||||
.job-panel-title strong,
|
||||
.job-panel-header > strong {
|
||||
min-width: 0;
|
||||
overflow-wrap: anywhere;
|
||||
word-break: break-word;
|
||||
line-height: 1.3;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.job-panel-subtitle {
|
||||
font-size: 0.72rem;
|
||||
color: #94a3b8;
|
||||
line-height: 1.25;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
max-width: 16rem;
|
||||
}
|
||||
.job-panel-subtitle[hidden] {
|
||||
display: none !important;
|
||||
}
|
||||
.job-steps-chip {
|
||||
font-size: 0.68rem;
|
||||
font-weight: 600;
|
||||
font-variant-numeric: tabular-nums;
|
||||
color: #94a3b8;
|
||||
background: rgba(15, 23, 42, 0.85);
|
||||
border: 1px solid rgba(51, 65, 85, 0.9);
|
||||
border-radius: 999px;
|
||||
padding: 0.12rem 0.45rem;
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.job-panel--running .job-steps-chip {
|
||||
color: #5eead4;
|
||||
border-color: rgba(45, 212, 191, 0.35);
|
||||
}
|
||||
.job-status-badge {
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
font-size: 0.65rem !important;
|
||||
font-weight: 700;
|
||||
}
|
||||
.job-steps {
|
||||
min-width: 0;
|
||||
@@ -250,11 +326,23 @@
|
||||
.job-step {
|
||||
display: grid;
|
||||
grid-template-columns: 1.25rem minmax(0, 1fr);
|
||||
gap: 0.5rem 0.65rem;
|
||||
padding: 0.35rem 0;
|
||||
font-size: 0.9rem;
|
||||
gap: 0.35rem 0.65rem;
|
||||
padding: 0.4rem 0.35rem;
|
||||
font-size: 0.88rem;
|
||||
min-width: 0;
|
||||
align-items: start;
|
||||
border-radius: 8px;
|
||||
transition: background 0.15s ease;
|
||||
}
|
||||
.job-step--active {
|
||||
background: rgba(45, 212, 191, 0.07);
|
||||
box-shadow: inset 2px 0 0 var(--pd-accent-primary, #2dd4bf);
|
||||
}
|
||||
.job-step--success .job-step-label {
|
||||
color: #cbd5e1;
|
||||
}
|
||||
.job-step--error {
|
||||
background: rgba(248, 113, 113, 0.06);
|
||||
}
|
||||
.job-step-icon {
|
||||
display: inline-flex;
|
||||
|
||||
Reference in New Issue
Block a user