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 |
||
| (Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
| 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; | |||
} | |||
} | |||
/* Force Cusdis to be tall enough to remove the scrollbar */ | |||
#cusdis_thread iframe { | |||
height: 600px !important; | |||
min-height: 600px !important; | |||
overflow: hidden !important; | |||
} | |||
/* Optional: Remove any scrollbars from the container div itself */ | |||
#cusdis_thread { | |||
height: auto !important; | |||
overflow: visible !important; | |||
} | } | ||
Aktuelle Version vom 19. Februar 2026, 08:38 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;
}
}
/* Force Cusdis to be tall enough to remove the scrollbar */
#cusdis_thread iframe {
height: 600px !important;
min-height: 600px !important;
overflow: hidden !important;
}
/* Optional: Remove any scrollbars from the container div itself */
#cusdis_thread {
height: auto !important;
overflow: visible !important;
}