Release ForgeFlow 0.8.9 Git Validator

This commit is contained in:
NuklearRabbit
2026-07-26 05:24:22 +02:00
parent e888bd2c1c
commit 24dde9a031
17 changed files with 1106 additions and 22 deletions
+221
View File
@@ -1280,6 +1280,227 @@ html[data-theme="light"] .diff-line.remove {
color: #caa7ff;
background: rgba(148, 97, 214, 0.08);
}
.validator-page {
container-type: inline-size;
padding: 18px;
display: grid;
gap: 14px;
overflow: auto;
}
.validator-empty {
min-height: 360px;
margin: 18px;
padding: 38px;
display: flex;
align-items: center;
justify-content: center;
gap: 36px;
text-align: left;
overflow: hidden;
}
.validator-empty > div:last-child {
max-width: 520px;
}
.validator-empty h2 {
margin: 5px 0 8px;
font-size: 24px;
}
.validator-empty p {
margin: 0 0 18px;
color: var(--text-muted);
line-height: 1.65;
}
.validator-hero {
position: relative;
min-height: 160px;
padding: 24px;
display: grid;
grid-template-columns: auto minmax(220px, 1fr) minmax(180px, 260px) auto;
align-items: center;
gap: 22px;
overflow: hidden;
background:
radial-gradient(
circle at 68% 16%,
color-mix(in srgb, var(--primary) 16%, transparent),
transparent 28%
),
linear-gradient(
120deg,
var(--surface-1),
color-mix(in srgb, var(--surface-2) 84%, var(--primary-soft))
);
}
.validator-hero.success {
--validator-accent: var(--success);
}
.validator-hero.warning {
--validator-accent: var(--warning);
}
.validator-hero.danger {
--validator-accent: var(--danger);
}
.validator-score {
width: 116px;
height: 116px;
border-radius: 32px;
display: grid;
place-content: center;
text-align: center;
background: color-mix(in srgb, var(--validator-accent) 10%, var(--surface-2));
border: 1px solid color-mix(in srgb, var(--validator-accent) 42%, var(--line));
box-shadow:
inset 0 0 34px color-mix(in srgb, var(--validator-accent) 10%, transparent),
0 18px 38px rgba(0, 0, 0, 0.15);
}
.validator-score strong {
color: var(--validator-accent);
font-size: 42px;
line-height: 0.9;
letter-spacing: -0.05em;
}
.validator-score span {
margin-top: 7px;
color: var(--text-muted);
font: 700 10px/1 var(--font-mono);
}
.validator-hero h2 {
margin: 4px 0 6px;
font-size: 24px;
}
.validator-hero p {
margin: 0;
color: var(--text-muted);
}
.validator-hero .project-illustration {
width: 220px;
opacity: 0.82;
}
.validator-actions {
display: grid;
gap: 8px;
min-width: 150px;
}
.validator-groups {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 12px;
align-items: start;
}
.validator-group {
overflow: hidden;
}
.validator-checks {
display: grid;
}
.validator-check {
min-height: 78px;
padding: 13px 14px;
display: grid;
grid-template-columns: 34px minmax(0, 1fr) auto;
gap: 11px;
align-items: center;
border-top: 1px solid var(--line-soft);
transition:
background 160ms ease,
transform 160ms ease;
}
.validator-check:hover {
background: var(--surface-hover);
}
.validator-check-icon {
width: 30px;
height: 30px;
display: grid;
place-items: center;
border-radius: 9px;
color: var(--text-muted);
background: var(--surface-2);
}
.validator-check.pass .validator-check-icon {
color: var(--success);
background: color-mix(in srgb, var(--success) 12%, transparent);
}
.validator-check.warning .validator-check-icon {
color: var(--warning);
background: color-mix(in srgb, var(--warning) 12%, transparent);
}
.validator-check.error .validator-check-icon {
color: var(--danger);
background: color-mix(in srgb, var(--danger) 12%, transparent);
}
.validator-check strong {
display: block;
font-size: 12px;
}
.validator-check p {
margin: 4px 0 0;
color: var(--text-muted);
font-size: 11px;
line-height: 1.45;
overflow-wrap: anywhere;
}
html[data-theme="light"] .validator-hero {
background:
radial-gradient(
circle at 68% 16%,
rgba(66, 91, 220, 0.18),
transparent 30%
),
linear-gradient(
120deg,
rgba(255, 255, 255, 0.98),
rgba(236, 243, 255, 0.96)
);
}
@media (max-width: 1180px) {
.validator-hero {
grid-template-columns: auto 1fr auto;
}
.validator-hero .project-illustration {
display: none;
}
.validator-groups {
grid-template-columns: 1fr;
}
}
@container (max-width: 900px) {
.validator-hero {
grid-template-columns: auto minmax(0, 1fr);
}
.validator-hero .project-illustration {
display: none;
}
.validator-actions {
grid-column: 1 / -1;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.validator-groups {
grid-template-columns: 1fr;
}
}
@container (max-width: 520px) {
.validator-hero {
grid-template-columns: 1fr;
}
.validator-score {
width: 92px;
height: 92px;
border-radius: 25px;
}
.validator-actions {
grid-template-columns: 1fr;
}
.validator-check {
grid-template-columns: 30px minmax(0, 1fr);
}
.validator-check > .button,
.validator-check > .status-pill {
grid-column: 2;
justify-self: start;
}
}
.empty-state {
height: 100%;
min-height: 260px;