feat: Find & Replace dans l'éditeur (Ctrl+F) + corrections Toggle/Callout/Outline
Some checks failed
CI / Lint, Unit Tests & Build (push) Failing after 1m31s
CI / Deploy production (on server) (push) Has been skipped

- Find & Replace : barre flottante Ctrl+F, recherche instantanée synchrone
  - Highlights ProseMirror (jaune = match, orange = actif)
  - Scroll vers le match sans voler le focus de l'input
  - Options: sensible à la casse, regex
  - Remplacer / Tout remplacer
  - i18n FR/EN complet
- Toggle/Callout/Outline: corrections bugs + design
This commit is contained in:
Antigravity
2026-06-14 17:19:51 +00:00
parent 2723e06b80
commit 5246ed41e9
5 changed files with 348 additions and 0 deletions

View File

@@ -2985,4 +2985,18 @@ html.font-system * {
.format-pill-btn:active {
background: var(--accent);
}
/* Find & Replace highlights */
.fr-match {
background-color: rgba(250, 204, 21, 0.35) !important;
border-radius: 2px;
color: inherit;
}
.fr-active {
background-color: rgba(249, 115, 22, 0.45) !important;
border-radius: 2px;
box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.3);
color: inherit;
}