MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus wiki.kometin.at
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Zeile 17: Zeile 17:
justify-content: center;
justify-content: center;
} */
} */
/* Beschriftung „Inhaltsverzeichnis“ spannt über alle Spalten */
 
.toc .toctitle { column-span: all; }
/* Kein Umbruch zwischen Abschnittsnummern und Abschnittstitel, innerhalb Abschnittstitel aber schon;
/* Spaltenanzahl */
* bewirkt, dass umbrochene Abschnittstitel links bündig sind */
.toc>ul { column-count: 5; column-width: auto; column-gap: 1em; }
.toc li { white-space: nowrap; }
/* Spaltenanzahl nach Fensterbreite; Breitenwerte anpassen!  */
.toc .tocnumber { display: inline-block; vertical-align: top; }
@media (max-width: 1540px) { .toc>ul { column-count: 4; } }
.toc .toctext { display: inline-block; vertical-align: top; white-space: normal; }
@media (max-width: 1340px) { .toc>ul { column-count: 3; } }
 
@media (max-width: 1140px) { .toc>ul { column-count: 2; } }
/* Einrückung bei unteren Ebenen veringern */
@media (max-width: 940px) { .toc>ul { column-count: 1; } }
.toc>ul ul { margin-left:.2rem !important; }
/* Zeilen ab 3. Ebenen zusammenhalten */
.toc>ul>ul ul,
.toc>ul ul>li { column-break-inside: avoid; }

Version vom 24. Februar 2024, 13:24 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
/*#mw-wrapper {
    background: hsla(221, 55%, 61%, 0.2);
}*/
#footer-places {

    display: flex;
    align-items: center;
    justify-content: center;
}

#footer-info-lastmod {
     font-size: 11px;
}
/* #footer-icons {
display: flex;
justify-content: center;
} */

/* Kein Umbruch zwischen Abschnittsnummern und Abschnittstitel, innerhalb Abschnittstitel aber schon; 
 * bewirkt, dass umbrochene Abschnittstitel links bündig sind */
.toc li		{ white-space: nowrap; }
.toc .tocnumber	{ display: inline-block; vertical-align: top; }
.toc .toctext	{ display: inline-block; vertical-align: top; white-space: normal; }

/* Einrückung bei unteren Ebenen veringern */
.toc>ul ul { margin-left:.2rem !important; }