- 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)
29 lines
1.0 KiB
CSS
29 lines
1.0 KiB
CSS
@font-face {
|
|
font-family: "Material Design Icons";
|
|
src: url("materialdesignicons-webfont.woff2") format("woff2");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
.mdi {
|
|
display: inline-block;
|
|
font: normal normal normal 18px/1 "Material Design Icons";
|
|
text-rendering: auto;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
.mdi-format-bold::before { content: "\F0264"; }
|
|
.mdi-format-italic::before { content: "\F0277"; }
|
|
.mdi-format-underline::before { content: "\F0287"; }
|
|
.mdi-format-strikethrough::before { content: "\F0280"; }
|
|
.mdi-format-color-text::before { content: "\F069E"; }
|
|
.mdi-format-color-highlight::before { content: "\F0E31"; }
|
|
.mdi-format-list-numbered::before { content: "\F027B"; }
|
|
.mdi-format-list-bulleted::before { content: "\F0279"; }
|
|
.mdi-format-align-left::before { content: "\F0262"; }
|
|
.mdi-format-align-center::before { content: "\F0260"; }
|
|
.mdi-format-align-right::before { content: "\F0263"; }
|
|
.mdi-link::before { content: "\F0337"; }
|
|
.mdi-format-clear::before { content: "\F0265"; }
|