refactor: Uniformisation complète police et style lignes 2-3

- Retiré font-weight: 600 du titre section
- Lignes 2 et 3 ont maintenant exactement le même style
- Police par défaut, pas de variations de graisse
- Présentation ultra-simplifiée et cohérente
- Seule différence : couleurs (accent vs text-strong)
This commit is contained in:
2026-01-02 00:01:59 +01:00
parent a8dbe40d50
commit 77473f9060

View File

@@ -205,7 +205,7 @@
<!-- Ligne 3 : Titre section + icône --> <!-- Ligne 3 : Titre section + icône -->
<div style="display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap;"> <div style="display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap;">
<span style="color: var(--color-accent);">📂</span> <span style="color: var(--color-accent);">📂</span>
<span style="color: var(--color-text-strong); font-weight: 600;">{{ section.title[:120] }}{% if section.title|length > 120 %}...{% endif %}</span> <span style="color: var(--color-text-strong);">{{ section.title[:120] }}{% if section.title|length > 120 %}...{% endif %}</span>
</div> </div>
{% if section.summary_text and section.summary_text != section.title and section.summary_text != section.section_path %} {% if section.summary_text and section.summary_text != section.title and section.summary_text != section.section_path %}
<p class="summary-text" style="margin: 0.75rem 0 0 0; padding: 0.75rem; background: rgba(255, 255, 255, 0.5); border-radius: 4px; font-size: 0.9em; color: var(--color-text-main); font-style: italic; line-height: 1.6;">{{ section.summary_text[:250] }}{% if section.summary_text|length > 250 %}...{% endif %}</p> <p class="summary-text" style="margin: 0.75rem 0 0 0; padding: 0.75rem; background: rgba(255, 255, 255, 0.5); border-radius: 4px; font-size: 0.9em; color: var(--color-text-main); font-style: italic; line-height: 1.6;">{{ section.summary_text[:250] }}{% if section.summary_text|length > 250 %}...{% endif %}</p>