MediaWiki:Common.css: Unterschied zwischen den Versionen
Erscheinungsbild
Admin (Diskussion | Beiträge) Die Seite wurde neu angelegt: „→Das folgende CSS wird für alle Benutzeroberflächen geladen.: .img-responsive { display: block; margin-left: auto; margin-right: auto; max-width: 100%; height: auto; }“ |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 6: | Zeile 6: | ||
max-width: 100%; | max-width: 100%; | ||
height: auto; | height: auto; | ||
} | |||
/* Responsive tables */ | |||
@media screen and (max-width: 720px) { | |||
.responsive-table, | |||
.responsive-table tbody, | |||
.responsive-table tr, | |||
.responsive-table th, | |||
.responsive-table td { | |||
display: block !important; | |||
width: 100% !important; | |||
box-sizing: border-box; | |||
} | |||
.responsive-table th { | |||
background-color: #f8f9fa; | |||
border-bottom: 2px solid #a2a9b1; | |||
} | |||
} | } | ||
Version vom 16. Februar 2026, 09:46 Uhr
/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */
.img-responsive {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
height: auto;
}
/* Responsive tables */
@media screen and (max-width: 720px) {
.responsive-table,
.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
display: block !important;
width: 100% !important;
box-sizing: border-box;
}
.responsive-table th {
background-color: #f8f9fa;
border-bottom: 2px solid #a2a9b1;
}
}