MediaWiki:Timeless-print.css: Unterschied zwischen den Versionen

Aus BBS Wiki
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Keine Bearbeitungszusammenfassung
Markierung: Zurückgesetzt
Zeile 1: Zeile 1:
@media print {
@media print {
   /* Kopfzeile fixiert */
   /* Kopfzeile blockbasiert, Titel links, Logo rechts */
   #mw-printheader {
   #mw-printheader {
     display: flex !important;
     display: flex !important;
     justify-content: space-between;
     justify-content: space-between;
     align-items: center;
     align-items: center;
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
     padding-bottom: 5px;
     padding-bottom: 5px;
     border-bottom: 1px solid #000;
     border-bottom: 1px solid #000;
    margin-bottom: 10px;
   }
   }


  /* Titel links */
   #mw-printtitle {
   #mw-printtitle {
     font-size: 16pt;
     font-size: 16pt;
Zeile 19: Zeile 15:
   }
   }


  /* Logo rechts */
   #mw-printlogo {
   #mw-printlogo {
     max-height: 60px;
     max-height: 60px;
Zeile 25: Zeile 20:
   }
   }


   /* Platz schaffen, damit der Inhalt nicht in die Kopfzeile läuft */
   /* Abstand unter Kopfzeile */
   body {
   #mw-content {
     margin-top: 90px !important;
     margin-top: 0 !important; /* Header ist jetzt normaler Block, Margin nicht nötig */
   }
   }


   /* Unnötige Bereiche ausblenden */
   /* Navigation, Header, Footer ausblenden */
   #mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice {
   #mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice {
     display: none !important;
     display: none !important;
   }
   }
}
}

Version vom 1. Oktober 2025, 12:04 Uhr

@media print {
  /* Kopfzeile blockbasiert, Titel links, Logo rechts */
  #mw-printheader {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
  }

  #mw-printtitle {
    font-size: 16pt;
    font-weight: bold;
  }

  #mw-printlogo {
    max-height: 60px;
    max-width: 200px;
  }

  /* Abstand unter Kopfzeile */
  #mw-content {
    margin-top: 0 !important; /* Header ist jetzt normaler Block, Margin nicht nötig */
  }

  /* Navigation, Header, Footer ausblenden */
  #mw-header, #mw-footer, #mw-navigation, .mw-portlet, #siteNotice {
    display: none !important;
  }
}