mirror of
https://tangled.org/evan.jarrett.net/at-container-registry
synced 2026-09-26 04:04:15 +00:00
more did:plc fixes, more vulnerability scanner fixes
This commit is contained in:
@@ -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); }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user