Document deployment and expose weight manifest

This commit is contained in:
2026-06-30 16:53:55 +08:00
parent 143572825a
commit 1d3891d949
8 changed files with 367 additions and 33 deletions

View File

@@ -1314,6 +1314,75 @@ meter {
line-height: 1;
}
.weightVerify {
margin-top: 10px;
padding: 7px 8px;
border-radius: 6px;
border: 1px solid var(--line);
font-size: 12px;
}
.weightVerify.ok {
color: var(--green);
border-color: rgba(157, 226, 111, 0.34);
background: rgba(157, 226, 111, 0.08);
}
.weightVerify.bad {
color: var(--red);
border-color: rgba(240, 113, 103, 0.45);
background: rgba(240, 113, 103, 0.08);
}
.weightFamilies {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 12px;
}
.weightFamilies span {
padding: 5px 7px;
border-radius: 999px;
border: 1px solid var(--line);
background: #080a08;
color: var(--muted);
font-size: 11px;
}
.weightList {
display: grid;
gap: 7px;
max-height: 220px;
margin-top: 12px;
overflow: auto;
}
.weightList a {
min-width: 0;
display: grid;
gap: 3px;
padding: 8px;
border-radius: 6px;
border: 1px solid var(--line);
background: #080a08;
color: var(--ink);
text-decoration: none;
}
.weightList span,
.weightList small {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.weightList small {
color: var(--muted);
font-size: 11px;
}
.chips {
display: flex;
flex-wrap: wrap;