debug
All checks were successful
Deploy / deploy-staging (push) Successful in 6s
Deploy / deploy-production (push) Has been skipped

This commit is contained in:
2026-04-24 23:12:19 +02:00
parent 92c9bed5bb
commit 739e4d4c42
6 changed files with 352 additions and 29 deletions

View File

@@ -1098,6 +1098,90 @@ a {
flex-wrap: wrap;
}
.module-debug {
border: 1px solid var(--line);
border-radius: 22px;
background: var(--surface);
box-shadow: 0 12px 30px rgba(1, 22, 32, 0.08);
}
.module-debug-details {
padding: 0;
}
.module-debug-summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 16px 20px;
cursor: pointer;
list-style: none;
font-weight: 700;
}
.module-debug-summary::-webkit-details-marker {
display: none;
}
.module-debug-meta,
.module-debug-entry-time {
color: var(--muted);
font-weight: 500;
font-size: 0.92rem;
}
.module-debug-body {
display: grid;
gap: 12px;
padding: 0 20px 20px;
}
.module-debug-toolbar {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
.module-debug-empty {
padding: 14px 16px;
border: 1px dashed var(--line);
border-radius: 16px;
color: var(--muted);
}
.module-debug-entry {
border: 1px solid var(--line);
border-radius: 16px;
background: color-mix(in srgb, var(--surface) 92%, var(--brand-accent-2) 8%);
}
.module-debug-entry summary {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding: 12px 14px;
cursor: pointer;
list-style: none;
}
.module-debug-entry summary::-webkit-details-marker {
display: none;
}
.module-debug-pre {
margin: 0;
padding: 0 14px 14px;
white-space: pre-wrap;
word-break: break-word;
font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
font-size: 0.86rem;
line-height: 1.5;
}
.module-box-head p {
margin: 6px 0 0;
color: var(--muted);