more did:plc fixes, more vulnerability scanner fixes

This commit is contained in:
Evan Jarrett
2026-02-15 22:28:36 -06:00
parent 10b35642a5
commit 2df5377541
27 changed files with 541 additions and 316 deletions
+30
View File
@@ -368,4 +368,34 @@
.menu li > form > label {
@apply block w-full;
}
/* ----------------------------------------
OFFLINE MANIFEST FILTERING
Hide offline manifests by default;
show when "Show offline images" is checked
---------------------------------------- */
.manifests-list > [data-reachable="false"] {
display: none;
}
.manifests-list.show-offline > [data-reachable="false"] {
display: block;
}
/* ----------------------------------------
VULNERABILITY SEVERITY BOX STRIP
Docker Hub-style connected severity boxes
---------------------------------------- */
.vuln-strip {
@apply inline-flex items-stretch text-xs font-semibold leading-none;
}
.vuln-strip > span {
@apply px-2 py-1 min-w-[1.75rem] text-center cursor-pointer;
}
.vuln-strip > span:first-child { @apply rounded-l; }
.vuln-strip > span:last-child { @apply rounded-r; }
.vuln-box-critical { background-color: oklch(45% 0.16 20); color: oklch(97% 0.01 20); }
.vuln-box-high { background-color: oklch(58% 0.18 35); color: oklch(97% 0.01 35); }
.vuln-box-medium { background-color: oklch(72% 0.15 70); color: oklch(25% 0.05 70); }
.vuln-box-low { background-color: oklch(80% 0.1 85); color: oklch(25% 0.05 85); }
}