Fix typos blanches admin lightmode + hero audience
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

- Remplace color:white → hsl(var(--color-text)) dans tous les composants admin
  (AdminFieldText, AdminFieldTextarea, AdminFormSection, AdminMarkdownEditor,
  AdminMediaBrowser, AdminSidebar, book/index, book/[slug], login, messages, site, songs)
- Conserve color:white uniquement sur fond primary (AdminSaveButton, login-btn)
- Hero home : ajout bloc audience/addressees (clé distincte pour éviter conflit YAML)
- home.yml : réordonne axes (citoyenne en premier — effet triangle)
- TypewriterText : affiche le second bloc avec séparateur fin

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Yvv
2026-03-15 16:08:03 +01:00
parent 8f548afb17
commit 9d92c4a5b3
17 changed files with 53 additions and 19 deletions

View File

@@ -129,7 +129,7 @@ const renderedHtml = computed(() => {
}
.md-tab--active {
color: white;
color: hsl(var(--color-text));
background: hsl(var(--color-surface));
}
@@ -139,7 +139,7 @@ const renderedHtml = computed(() => {
transition: color 0.2s;
}
.md-fullscreen:hover,
.md-fullscreen--active { color: white; }
.md-fullscreen--active { color: hsl(var(--color-text)); }
.md-body {
display: flex;
@@ -171,7 +171,7 @@ const renderedHtml = computed(() => {
padding: 1rem;
border: none;
background: hsl(var(--color-bg));
color: white;
color: hsl(var(--color-text));
font-family: var(--font-mono, monospace);
font-size: 0.85rem;
line-height: 1.7;