Feature: WYSIWYG-Editor, Gitea-Sync, Signaturen-Verwaltung

- WYSIWYG-Editor mit contenteditable statt Textarea (MDI-Icons, System-Fonts, Farbwähler)
- Gitea-Sync: Templates per Abteilung aus Git-Repo laden/hochladen mit Commit-Author
- Abteilungsordner + _gemeinsam Ordner, einzelnes Pull/Push pro Vorlage
- Sync-Status pro Vorlage (grün/rot/grau Ampel), persistent über Neustarts
- Signaturen-Tab: Identitäten bearbeiten, aus Datei laden, Sync über signatures/ Ordner
- Persönliche Signaturen für geteilte E-Mail-Adressen (pro Mitarbeiter)
- Tab-Navigation: Vorlagen, Signaturen, Synchronisierung
- Auto-Pull beim Thunderbird-Start (Templates + Signaturen)
This commit is contained in:
Kendrick Bollens
2026-04-20 16:30:40 +02:00
parent e57f863d9a
commit cf051458bb
13 changed files with 2171 additions and 306 deletions

View File

@@ -59,6 +59,26 @@
color: #4a7c59;
text-decoration: underline;
}
.prefix-section {
padding: 8px 10px;
border-bottom: 1px solid #e0e0e0;
background: #f3f3f3;
}
.prefix-section label {
display: block;
font-size: 11px;
color: #666;
margin-bottom: 4px;
}
.prefix-section select {
width: 100%;
padding: 5px 8px;
font-size: 12px;
border: 1px solid #ccc;
border-radius: 4px;
background: white;
color: #333;
}
.empty-state {
padding: 20px 14px;
text-align: center;
@@ -75,6 +95,12 @@
</head>
<body>
<div class="header">Vorlage auswählen</div>
<div id="prefix-section" class="prefix-section" style="display:none;">
<label for="prefix-select">Voranstellung (optional)</label>
<select id="prefix-select">
<option value="">— Keine —</option>
</select>
</div>
<div id="template-list"></div>
<script src="popup.js"></script>
</body>