MediaWiki:Common.css: Unterschied zwischen den Versionen

Aus StaBue Testumgebung
Zur Navigation springenZur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 6: Zeile 6:


/* Textausrichtung in Titelzeilen /*
/* Textausrichtung in Titelzeilen /*
  table.asbtable tr th {
table.asbtable tr th, table.asbtable_special tr th {
    text-align: left;
  text-align: left;
  }
}


/* Spaltenbreite für Kennzeichen */
/* Spaltenbreite für Kennzeichen */
  table.asbtable tr:nth-child(1) th:nth-child(1), table.asbtable tr:nth-child(1) td:nth-child(1) {
table.asbtable tr:nth-child(1) th:nth-child(1), table.asbtable tr:nth-child(1) td:nth-child(1) {
    width: 5em;
  width: 5em;
  }
}


/* Spaltenbreite für Titel */
/* Spaltenbreite für Titel */
  table.asbtable tr:nth-child(1) th:nth-child(2), table.asbtable tr:nth-child(1) td:nth-child(2) {
table.asbtable tr:nth-child(1) th:nth-child(2), table.asbtable tr:nth-child(1) td:nth-child(2) {
    width: 35em;
  width: 35em;
  }
}


/* Spaltenbreite für Kommentare */
/* Spaltenbreite für Kommentare */
  table.asbtable tr:nth-child(1) th:nth-child(3), table.asbtable tr:nth-child(1) td:nth-child(3) {
table.asbtable tr:nth-child(1) th:nth-child(3), table.asbtable tr:nth-child(1) td:nth-child(3) {
    min-width: 30em;
  min-width: 30em;
  }
}


/* Spaltenbreite für Kennzeichen bei besonderen Sachgruppen (bspw. Wirtschaft, SL Romane) */
/* Spaltenbreite für Kennzeichen bei besonderen Sachgruppen (bspw. Wirtschaft, SL Romane) */
  table.asbtable_special tr:nth-child(1) th:nth-child(1), table.asbtable_special tr:nth-child(1) td:nth-child(1) {
table.asbtable_special tr:nth-child(1) th:nth-child(1), table.asbtable_special tr:nth-child(1) td:nth-child(1) {
    width: 10em;
  width: 10em;
  }
}


/* Spaltenbreite für Titel bei besonderen Sachruppen (bspw. Wirtschaft, SL Romane) */
/* Spaltenbreite für Titel bei besonderen Sachruppen (bspw. Wirtschaft, SL Romane) */
  table.asbtable_special tr:nth-child(1) th:nth-child(2), table.asbtable_special tr:nth-child(1) td:nth-child(2) {
table.asbtable_special tr:nth-child(1) th:nth-child(2), table.asbtable_special tr:nth-child(1) td:nth-child(2) {
    width: 30em;
  width: 30em;
  }
}


/* Spaltenbreite für Kommentare bei besonderen Sachruppen (bspw. Wirtschaft, SL Romane) */
/* Spaltenbreite für Kommentare bei besonderen Sachruppen (bspw. Wirtschaft, SL Romane) */
  table.asbtable_special tr:nth-child(1) th:nth-child(3), table.asbtable_special tr:nth-child(1) td:nth-child(3) {
table.asbtable_special tr:nth-child(1) th:nth-child(3), table.asbtable_special tr:nth-child(1) td:nth-child(3) {
    min-width: 30em;
  min-width: 30em;
  }
}

Version vom 31. Mai 2024, 15:30 Uhr

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

/* ------------------------------------ */
/* Tabellen für ASB und Notensystematik */
/* ------------------------------------ */

/* Textausrichtung in Titelzeilen /*
table.asbtable tr th, table.asbtable_special tr th {
  text-align: left;
}

/* Spaltenbreite für Kennzeichen */
table.asbtable tr:nth-child(1) th:nth-child(1), table.asbtable tr:nth-child(1) td:nth-child(1) {
  width: 5em;
}

/* Spaltenbreite für Titel */
table.asbtable tr:nth-child(1) th:nth-child(2), table.asbtable tr:nth-child(1) td:nth-child(2) {
  width: 35em;
}

/* Spaltenbreite für Kommentare */
table.asbtable tr:nth-child(1) th:nth-child(3), table.asbtable tr:nth-child(1) td:nth-child(3) {
  min-width: 30em;
}

/* Spaltenbreite für Kennzeichen bei besonderen Sachgruppen (bspw. Wirtschaft, SL Romane) */
table.asbtable_special tr:nth-child(1) th:nth-child(1), table.asbtable_special tr:nth-child(1) td:nth-child(1) {
  width: 10em;
}

/* Spaltenbreite für Titel bei besonderen Sachruppen (bspw. Wirtschaft, SL Romane) */
table.asbtable_special tr:nth-child(1) th:nth-child(2), table.asbtable_special tr:nth-child(1) td:nth-child(2) {
  width: 30em;
}

/* Spaltenbreite für Kommentare bei besonderen Sachruppen (bspw. Wirtschaft, SL Romane) */
table.asbtable_special tr:nth-child(1) th:nth-child(3), table.asbtable_special tr:nth-child(1) td:nth-child(3) {
  min-width: 30em;
}