82c7712613
- Created a new job_detail.html template extending base.html - Implemented a macro for rendering nested data structures - Added sections for job identification, schedule & timing, status, configuration, execution history, and results - Included a timeline for execution history with visual indicators for job status - Displayed job metrics including total executions, success rate, and average duration - Handled cases for displaying results or indicating absence of results based on job status
667 lines
16 KiB
CSS
667 lines
16 KiB
CSS
*{
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
}
|
|
::selection{
|
|
color: #000;
|
|
background: #fff;
|
|
}
|
|
nav{
|
|
position: fixed;
|
|
background: #1b1b1b;
|
|
width: 100%;
|
|
padding: 10px 0;
|
|
z-index: 12;
|
|
}
|
|
nav .menu{
|
|
max-width: none;
|
|
width: 100%;
|
|
margin: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 clamp(8px, 1vw, 16px);
|
|
}
|
|
.menu .logo a{
|
|
text-decoration: none;
|
|
color: #fff;
|
|
font-size: 35px;
|
|
font-weight: 600;
|
|
}
|
|
.menu ul{
|
|
display: flex;
|
|
}
|
|
.menu ul li{
|
|
list-style: none;
|
|
margin-left: 7px;
|
|
}
|
|
.menu ul li:first-child{
|
|
margin-left: 0px;
|
|
}
|
|
.menu ul li a{
|
|
text-decoration: none;
|
|
color: #fff;
|
|
font-size: 18px;
|
|
font-weight: 500;
|
|
padding: 0px 15px;
|
|
border-radius: 5px;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.menu ul li a:hover{
|
|
background-color: #fff;
|
|
color: #000;
|
|
padding: 10px 15px;
|
|
}
|
|
/* ── Body & layout ─────────────────────────────────────────── */
|
|
body {
|
|
background: url(../images/recon_ranger_logo.png) no-repeat center center fixed;
|
|
background-size: cover;
|
|
color: #e2e8f0;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
body::before {
|
|
content: '';
|
|
position: fixed;
|
|
inset: 0;
|
|
background: rgba(0, 0, 0, 0.55);
|
|
z-index: 0;
|
|
pointer-events: none;
|
|
}
|
|
main {
|
|
flex: 1;
|
|
padding-top: 70px; /* clear fixed nav */
|
|
padding-left: clamp(4px, 0.8vw, 12px);
|
|
padding-right: clamp(4px, 0.8vw, 12px);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
footer {
|
|
position: relative;
|
|
z-index: 1;
|
|
background: rgba(27, 27, 27, 0.85);
|
|
color: #888;
|
|
text-align: center;
|
|
padding: 18px 20px;
|
|
font-size: 14px;
|
|
letter-spacing: 0.03em;
|
|
border-top: 1px solid #2d2d2d;
|
|
}
|
|
|
|
/* ── Dashboard content container ────────────────────────── */
|
|
.dashboard-container {
|
|
width: 100%;
|
|
margin: 8px 0;
|
|
padding: 14px clamp(10px, 1vw, 18px);
|
|
background: rgba(15, 17, 23, 0.45);
|
|
backdrop-filter: blur(6px);
|
|
border-radius: 12px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(100vh - 86px);
|
|
}
|
|
.dashboard-container h1 {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
color: #f1f5f9;
|
|
margin-bottom: 8px;
|
|
padding-bottom: 8px;
|
|
border-bottom: 2px solid #2d2d3a;
|
|
letter-spacing: 0.02em;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ── Data table ─────────────────────────────────────────── */
|
|
.table-scroll {
|
|
overflow-x: auto;
|
|
overflow-y: auto;
|
|
flex: 1;
|
|
border-radius: 10px;
|
|
min-height: 0;
|
|
}
|
|
.table-scroll .data-table thead th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
.data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 14px;
|
|
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
|
|
}
|
|
.data-table thead {
|
|
background: #1b1b2e;
|
|
}
|
|
.data-table thead th {
|
|
padding: 14px 18px;
|
|
text-align: left;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: #94a3b8;
|
|
border-bottom: 1px solid #2d2d3a;
|
|
white-space: nowrap;
|
|
}
|
|
.data-table tbody tr {
|
|
background: #161622;
|
|
transition: background 0.15s ease;
|
|
}
|
|
.data-table tbody tr:nth-child(even) {
|
|
background: #1a1a28;
|
|
}
|
|
.data-table tbody tr:hover {
|
|
background: #252540;
|
|
}
|
|
.data-table tbody td {
|
|
padding: 13px 18px;
|
|
border-bottom: 1px solid #22222e;
|
|
color: #cbd5e1;
|
|
vertical-align: middle;
|
|
}
|
|
.data-table tbody tr:last-child td {
|
|
border-bottom: none;
|
|
}
|
|
|
|
/* ── Status badges ──────────────────────────────────────── */
|
|
.badge {
|
|
display: inline-block;
|
|
padding: 3px 10px;
|
|
border-radius: 999px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.04em;
|
|
white-space: nowrap;
|
|
}
|
|
.badge-matched { background: rgba(34,197,94,0.15); color: #4ade80; }
|
|
.badge-unmatched { background: rgba(239,68,68,0.15); color: #f87171; }
|
|
.badge-pending { background: rgba(234,179,8,0.15); color: #facc15; }
|
|
.badge-none { background: rgba(100,116,139,0.15); color: #94a3b8; }
|
|
.badge-flag { background: rgba(249,115,22,0.15); color: #fb923c; }
|
|
|
|
/* ── Filter bar ─────────────────────────────────────────── */
|
|
.filter-bar {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-end;
|
|
gap: 16px;
|
|
margin-bottom: 8px;
|
|
padding: 12px 16px;
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid #2d2d3a;
|
|
border-radius: 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
.filter-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
.filter-group label {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.07em;
|
|
color: #94a3b8;
|
|
}
|
|
.filter-group input {
|
|
background: #0f1117;
|
|
border: 1px solid #2d2d3a;
|
|
border-radius: 6px;
|
|
color: #e2e8f0;
|
|
font-size: 14px;
|
|
padding: 8px 12px;
|
|
min-width: 200px;
|
|
transition: border-color 0.15s ease;
|
|
}
|
|
.filter-group input:focus {
|
|
outline: none;
|
|
border-color: #6366f1;
|
|
}
|
|
.filter-group input[type="date"]::-webkit-calendar-picker-indicator {
|
|
filter: invert(0.6);
|
|
cursor: pointer;
|
|
}
|
|
.filter-actions {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
/* ── Buttons ────────────────────────────────────────────── */
|
|
.btn {
|
|
display: inline-block;
|
|
padding: 8px 18px;
|
|
border-radius: 6px;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.03em;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
border: none;
|
|
transition: opacity 0.15s ease, background 0.15s ease;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-primary {
|
|
background: #6366f1;
|
|
color: #fff;
|
|
}
|
|
.btn-primary:hover {
|
|
background: #4f46e5;
|
|
}
|
|
.btn-secondary {
|
|
background: rgba(255, 255, 255, 0.07);
|
|
color: #cbd5e1;
|
|
border: 1px solid #2d2d3a;
|
|
}
|
|
.btn-secondary:hover:not(.btn-disabled) {
|
|
background: rgba(255, 255, 255, 0.13);
|
|
}
|
|
.btn-disabled {
|
|
opacity: 0.35;
|
|
cursor: default;
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* ── Pagination ─────────────────────────────────────────── */
|
|
.pagination {
|
|
display: flex;
|
|
gap: 10px;
|
|
justify-content: flex-end;
|
|
margin-top: 8px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
/* ── Dashboard timelines ────────────────────────────────── */
|
|
.timeline-wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 22px;
|
|
overflow-y: auto;
|
|
flex: 1;
|
|
min-height: 0;
|
|
padding-right: 4px;
|
|
}
|
|
.timeline-day {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid #2d2d3a;
|
|
border-radius: 10px;
|
|
padding: 14px 18px 22px;
|
|
}
|
|
.timeline-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
margin-bottom: 14px;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
}
|
|
.timeline-header h2 {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #f1f5f9;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.timeline-today-tag {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
padding: 2px 8px;
|
|
border-radius: 999px;
|
|
background: rgba(99, 102, 241, 0.18);
|
|
color: #a5b4fc;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
}
|
|
.timeline-legend {
|
|
display: flex;
|
|
gap: 14px;
|
|
font-size: 12px;
|
|
color: #94a3b8;
|
|
}
|
|
.legend-item {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
.swatch {
|
|
display: inline-block;
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 3px;
|
|
}
|
|
.swatch-completed { background: #4ade80; }
|
|
.swatch-running { background: #facc15; }
|
|
.swatch-scheduled { background: #818cf8; }
|
|
|
|
.timeline-axis {
|
|
position: relative;
|
|
height: 18px;
|
|
margin: 0 0 4px;
|
|
}
|
|
.tick {
|
|
position: absolute;
|
|
top: 0;
|
|
transform: translateX(-50%);
|
|
color: #64748b;
|
|
font-size: 10px;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
.tick-label { user-select: none; }
|
|
|
|
.timeline-track {
|
|
--lane-count: 1;
|
|
--lane-height: 26px;
|
|
position: relative;
|
|
background: #0f1117;
|
|
border: 1px solid #22222e;
|
|
border-radius: 6px;
|
|
min-height: 32px;
|
|
height: calc(var(--lane-count) * var(--lane-height) + 6px);
|
|
padding: 3px 0;
|
|
overflow: hidden;
|
|
}
|
|
.gridline {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 1px;
|
|
background: rgba(148, 163, 184, 0.08);
|
|
pointer-events: none;
|
|
}
|
|
.now-marker {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
width: 2px;
|
|
background: #ef4444;
|
|
box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
|
|
pointer-events: none;
|
|
z-index: 3;
|
|
}
|
|
.timeline-empty {
|
|
color: #475569;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
padding: 30px 0;
|
|
}
|
|
.job-bar {
|
|
--lane: 0;
|
|
position: absolute;
|
|
height: 22px;
|
|
top: calc(var(--lane) * var(--lane-height, 26px) + 3px);
|
|
border-radius: 4px;
|
|
padding: 0 6px;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
color: #0f172a;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.02em;
|
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
|
z-index: 2;
|
|
min-width: 4px;
|
|
}
|
|
.job-bar-label {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.job-bar-completed { background: rgba(74, 222, 128, 0.85); }
|
|
.job-bar-running { background: rgba(250, 204, 21, 0.85); }
|
|
.job-bar-scheduled {
|
|
background: rgba(129, 140, 248, 0.85);
|
|
border: 1px dashed rgba(255, 255, 255, 0.25);
|
|
color: #1e1b4b;
|
|
}
|
|
|
|
/* ── Dashboard metrics cards ────────────────────────────── */
|
|
.metrics-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
|
gap: 14px;
|
|
margin-top: 18px;
|
|
padding-bottom: 4px;
|
|
}
|
|
.metric-card {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border: 1px solid #2d2d3a;
|
|
border-radius: 10px;
|
|
padding: 14px 16px 16px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
min-width: 0;
|
|
}
|
|
.metric-card h3 {
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.08em;
|
|
color: #94a3b8;
|
|
margin: 0;
|
|
padding-bottom: 6px;
|
|
border-bottom: 1px solid #2d2d3a;
|
|
}
|
|
.metric-card .num { font-variant-numeric: tabular-nums; text-align: right; }
|
|
.metric-card .good { color: #4ade80; }
|
|
.metric-card .bad { color: #f87171; }
|
|
.metric-card .warn { color: #facc15; }
|
|
.metric-card .muted { color: #64748b; font-size: 12px; }
|
|
|
|
.big-stat {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 8px;
|
|
}
|
|
.big-stat-value {
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
color: #f1f5f9;
|
|
letter-spacing: -0.01em;
|
|
line-height: 1;
|
|
}
|
|
.big-stat-sub { color: #94a3b8; font-size: 12px; }
|
|
|
|
.kv-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
}
|
|
.kv-list li {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
gap: 10px;
|
|
font-size: 13px;
|
|
color: #cbd5e1;
|
|
line-height: 1.35;
|
|
}
|
|
.kv-list li span:first-child {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.metric-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 12px;
|
|
}
|
|
.metric-table th, .metric-table td {
|
|
padding: 6px 6px;
|
|
text-align: right;
|
|
color: #cbd5e1;
|
|
}
|
|
.metric-table thead th {
|
|
color: #94a3b8;
|
|
font-weight: 600;
|
|
font-size: 11px;
|
|
letter-spacing: 0.04em;
|
|
border-bottom: 1px solid #2d2d3a;
|
|
}
|
|
.metric-table tbody th {
|
|
text-align: left;
|
|
color: #94a3b8;
|
|
font-weight: 500;
|
|
}
|
|
.metric-table tbody tr + tr td,
|
|
.metric-table tbody tr + tr th { border-top: 1px solid rgba(45, 45, 58, 0.6); }
|
|
|
|
.empty-note {
|
|
font-size: 13px;
|
|
padding: 6px 0;
|
|
}
|
|
|
|
/* Dashboard variant: allow content to flow & page to scroll naturally. */
|
|
.dashboard-container.dashboard-stack {
|
|
height: auto;
|
|
min-height: calc(100vh - 86px);
|
|
}
|
|
.dashboard-container.dashboard-stack .timeline-wrap {
|
|
flex: 0 0 auto;
|
|
overflow: visible;
|
|
}
|
|
|
|
/* ── Clickable rows / job links ─────────────────────────── */
|
|
.row-link {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: baseline;
|
|
gap: 10px;
|
|
width: 100%;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
padding: 2px 4px;
|
|
margin: -2px -4px;
|
|
border-radius: 4px;
|
|
transition: background 0.15s ease;
|
|
}
|
|
.row-link:hover { background: rgba(99, 102, 241, 0.12); }
|
|
|
|
.job-link {
|
|
color: #a5b4fc;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
}
|
|
.job-link:hover { text-decoration: underline; }
|
|
.job-link .muted { font-weight: 400; }
|
|
|
|
a.job-bar { text-decoration: none; cursor: pointer; }
|
|
a.job-bar:hover { filter: brightness(1.1); box-shadow: 0 0 0 1px rgba(255,255,255,0.4); }
|
|
|
|
/* ── Job detail page ────────────────────────────────────── */
|
|
.detail-header {
|
|
margin-bottom: 14px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 2px solid #2d2d3a;
|
|
}
|
|
.detail-header h1 {
|
|
border-bottom: none;
|
|
margin-bottom: 4px;
|
|
padding-bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
flex-wrap: wrap;
|
|
}
|
|
.detail-crumbs {
|
|
font-size: 13px;
|
|
color: #94a3b8;
|
|
margin-bottom: 6px;
|
|
}
|
|
.detail-crumbs a {
|
|
color: #a5b4fc;
|
|
text-decoration: none;
|
|
}
|
|
.detail-crumbs a:hover { text-decoration: underline; }
|
|
.detail-subtitle {
|
|
font-size: 13px;
|
|
margin-top: 4px;
|
|
}
|
|
.detail-subtitle code,
|
|
.kv-list code,
|
|
.metric-table code {
|
|
background: rgba(255,255,255,0.06);
|
|
padding: 1px 6px;
|
|
border-radius: 4px;
|
|
font-size: 12px;
|
|
color: #cbd5e1;
|
|
}
|
|
|
|
.swatch-failed { background: #f87171; }
|
|
|
|
.badge-status-completed { background: rgba(34,197,94,0.18); color: #4ade80; font-size: 13px; padding: 4px 12px; }
|
|
.badge-status-failed { background: rgba(239,68,68,0.18); color: #f87171; font-size: 13px; padding: 4px 12px; }
|
|
.badge-status-running { background: rgba(234,179,8,0.18); color: #facc15; font-size: 13px; padding: 4px 12px; }
|
|
.badge-status-created { background: rgba(129,140,248,0.18); color: #a5b4fc; font-size: 13px; padding: 4px 12px; }
|
|
.badge-status-cancelled { background: rgba(100,116,139,0.18); color: #94a3b8; font-size: 13px; padding: 4px 12px; }
|
|
|
|
.history-timeline { padding: 14px 18px 16px; }
|
|
.history-track {
|
|
position: relative;
|
|
background: #0f1117;
|
|
border: 1px solid #22222e;
|
|
border-radius: 6px;
|
|
height: 56px;
|
|
margin-bottom: 6px;
|
|
overflow: hidden;
|
|
}
|
|
.history-dot {
|
|
position: absolute;
|
|
top: 50%;
|
|
width: 14px;
|
|
height: 14px;
|
|
margin-left: -7px;
|
|
margin-top: -7px;
|
|
border-radius: 50%;
|
|
background: #4ade80;
|
|
box-shadow: 0 0 0 2px rgba(15, 17, 23, 0.9);
|
|
transition: transform 0.15s ease, box-shadow 0.15s ease;
|
|
z-index: 2;
|
|
}
|
|
.history-dot:hover {
|
|
transform: scale(1.35);
|
|
z-index: 3;
|
|
}
|
|
.history-dot-completed { background: #4ade80; }
|
|
.history-dot-failed { background: #f87171; }
|
|
.history-dot-running { background: #facc15; }
|
|
.history-dot-scheduled {
|
|
background: #818cf8;
|
|
border: 1px dashed rgba(255,255,255,0.35);
|
|
}
|
|
.history-dot.is-current {
|
|
width: 18px;
|
|
height: 18px;
|
|
margin-left: -9px;
|
|
margin-top: -9px;
|
|
box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.55), 0 0 12px rgba(99,102,241,0.6);
|
|
z-index: 4;
|
|
}
|
|
.history-footnote {
|
|
font-size: 12px;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.metric-card-wide {
|
|
grid-column: 1 / -1;
|
|
}
|
|
.results-table tbody th {
|
|
width: 30%;
|
|
padding-right: 14px;
|
|
}
|
|
.results-table tbody td {
|
|
text-align: left;
|
|
}
|
|
.nested-item { display: block; font-size: 13px; }
|
|
.nested-key { color: #94a3b8; margin-right: 6px; }
|