mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-08-10 23:31:21 +02:00
- Removed ambiguous aliases: phpstan, cs-check, syntax - Split lint-biome into lint-css and lint-js with correct paths - Added lint meta-recipe and fix recipe (biome --unsafe + php-cs-fixer) - Fixed FormBootstrap dead null check, CSS shorthand override bug - Updated phpstan baseline, suppressed noDescendingSpecificity/noInnerDeclarations - Applied ~74 biome auto-fixes across CSS/JS
49 lines
1.0 KiB
CSS
49 lines
1.0 KiB
CSS
/* ============================================================
|
|
BADGES — Status badges, access badges.
|
|
Root class: .status-badge
|
|
============================================================ */
|
|
|
|
.status-badge {
|
|
display: inline-block;
|
|
padding: var(--space-3xs) var(--space-2xs);
|
|
border-radius: var(--radius);
|
|
font-size: var(--step--2);
|
|
font-weight: 500;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
.status-published {
|
|
background: var(--green-muted-bg);
|
|
color: var(--accent-green);
|
|
}
|
|
|
|
.status-pending {
|
|
background: var(--warning-muted-bg);
|
|
color: var(--warning);
|
|
}
|
|
|
|
.status-access {
|
|
display: inline-block;
|
|
font-size: var(--step--2);
|
|
padding: var(--space-3xs) var(--space-3xs);
|
|
border-radius: var(--radius);
|
|
background: var(--bg-tertiary);
|
|
color: var(--text-secondary);
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
.status-access--libre {
|
|
background: var(--green-muted-bg);
|
|
color: var(--accent-green);
|
|
}
|
|
|
|
.status-access--interne {
|
|
background: var(--blue-muted-bg);
|
|
color: var(--accent-blue);
|
|
}
|
|
|
|
.status-access--interdit {
|
|
background: var(--error-muted-bg);
|
|
color: var(--error);
|
|
}
|