Récapitulatif admin: sections → fieldsets, fichiers en table, marges + pas de thumbnails

This commit is contained in:
Pontoporeia
2026-05-19 22:32:26 +02:00
parent defc919cd0
commit 42222abe7c
4 changed files with 164 additions and 52 deletions

View File

@@ -2075,6 +2075,14 @@ th.admin-ap-col {
/* ── Récapitulatif sections ───────────────────────────────── */
.admin-main--recap > fieldset {
margin-bottom: var(--space-l);
}
.admin-main--recap > fieldset:last-of-type {
margin-bottom: 0;
}
.recap-synopsis,
.recap-long-text {
max-width: 70ch;

View File

@@ -1354,6 +1354,105 @@ legend {
font-style: italic;
}
/* ── Recap files table ─────────────────────────────────────────── */
.recap-files-table {
width: 100%;
border-collapse: collapse;
font-size: var(--step--1);
}
.recap-files-table thead th {
text-align: left;
font-weight: 600;
color: var(--text-secondary);
font-size: var(--step--2);
text-transform: uppercase;
letter-spacing: 0.05em;
padding: var(--space-xs) var(--space-s);
border-bottom: 2px solid var(--border-primary);
}
.recap-files-table tbody td {
padding: var(--space-xs) var(--space-s);
border-bottom: 1px solid var(--border-secondary);
vertical-align: middle;
}
.recap-files-table tbody tr:last-child td {
border-bottom: none;
}
.recap-files-icon {
width: 1px;
white-space: nowrap;
}
.recap-files-icon-emoji {
font-size: 1.3rem;
display: inline-flex;
align-items: center;
justify-content: center;
width: 2.2rem;
height: 2.2rem;
background: var(--accent-muted);
border-radius: var(--radius);
}
.recap-files-thumb {
max-width: 80px;
max-height: 60px;
object-fit: cover;
border-radius: var(--radius);
}
.recap-files-name {
font-weight: 500;
}
.recap-files-name a {
color: var(--text-primary);
text-decoration: none;
}
.recap-files-name a:hover {
text-decoration: underline;
color: var(--accent);
}
.recap-files-peertube-id {
display: block;
font-size: var(--step--2);
color: var(--text-tertiary);
font-family: monospace;
}
.recap-files-label {
display: block;
font-size: var(--step--2);
color: var(--text-secondary);
font-style: italic;
}
.recap-files-type {
font-size: var(--step--2);
color: var(--text-tertiary);
white-space: nowrap;
}
.recap-files-size {
font-size: var(--step--2);
color: var(--text-tertiary);
white-space: nowrap;
font-variant-numeric: tabular-nums;
}
.recap-files-date {
font-size: var(--step--2);
color: var(--text-tertiary);
white-space: nowrap;
}
/* ── File browser (relink) ──────────────────────────────────────── */
.file-browser-trigger {