/*
 * rediroma – TinyMCE-Toolbar: minimaler Eingriff.
 *
 * Die blauen Buttons kommen aus der generischen Template-Button-CSS (Cascade).
 * Unter J4/J5 sind die TinyMCE-Icons SVGs mit eigenem fill und bleiben sonst
 * dunkel (unsichtbar auf Blau). EINZIGE Aufgabe hier: Icon-/Textfarbe auf weiss.
 *
 * Groesse, Abstaende und Layout NICHT anfassen -> macht das oxide-Skin sauber
 * und erkennbar. (Frueheres Erzwingen kleiner Groessen hat die Icons verzerrt.)
 */
.tox .tox-tbtn svg,
.tox .tox-mbtn svg,
.tox .tox-split-button svg {
	fill: #ffffff !important;
}

.tox .tox-mbtn,
.tox .tox-tbtn,
.tox .tox-tbtn__select-label,
.tox .tox-tbtn__select-chevron svg {
	color: #ffffff !important;
}

/*
 * Kompakter als der oxide-Default (Buttons 34px / Icons 24px), aber NICHT
 * verzerrt: Icons bleiben quadratisch (18x18, gleichmaessig skaliert), Buttons
 * 28px. Nur Icon-Buttons in der Breite begrenzen – Select-Buttons (Absatz,
 * Tahoma, Schriftgroesse) und die Menueleiste behalten ihre Auto-Breite.
 */
.tox .tox-tbtn,
.tox .tox-mbtn {
	height: 28px !important;
}
.tox .tox-tbtn:not(.tox-tbtn--select) {
	width: 28px !important;
}
.tox .tox-tbtn svg,
.tox .tox-mbtn svg,
.tox .tox-icon svg {
	width: 18px !important;
	height: 18px !important;
}
