Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Zeile 6: Zeile 6:




/* In MediaWiki:Common.css einfügen */
.embedvideo,
.embedvideo, .mw-embedframe {
.embedvideo > div,
  position: relative;
.embedvideo iframe,
   width: 100%;
.mw-embedframe,
   padding-bottom: 56.25%; /* 16:9 Format */
.mw-embedframe iframe {
   height: 0;
   width: 100% !important;
   overflow: hidden;
   max-width: 100% !important;
}
   height: auto !important;
 
   aspect-ratio: 16 / 9;
.embedvideo iframe, .mw-embedframe iframe {
   display: block;
  position: absolute;
   box-sizing: border-box;
   top: 0;
   left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
}

Version vom 15. April 2025, 12:52 Uhr

/* Das folgende CSS wird für alle Benutzeroberflächen geladen. */

.tocnumber { display: none; }

.noautonum .tocnumber { display: none; }


.embedvideo,
.embedvideo > div,
.embedvideo iframe,
.mw-embedframe,
.mw-embedframe iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
  display: block;
  box-sizing: border-box;
}