Przejdź do zawartości

MediaWiki:Common.css: Różnice pomiędzy wersjami

Z Encyklopedia Poznanskiego Sportu
Nie podano opisu zmian
Nie podano opisu zmian
 
Linia 4: Linia 4:
}
}


.numerowane-mecze tr {
.numerowane-mecze tbody > tr {
     counter-increment: mecz;
     counter-increment: mecz;
}
}


.numerowane-mecze tr:first-child {
.numerowane-mecze tbody > tr > td.lp::before {
     counter-increment: none;
     content: counter(mecz);
}
}


.numerowane-mecze td.lp::before {
.numerowane-mecze tbody > tr:first-child {
     content: counter(mecz);
     counter-increment: none;
}
}

Aktualna wersja na dzień 13:21, 10 maj 2026

/* Umieszczony tutaj kod CSS zostanie zastosowany we wszystkich skórkach */
.numerowane-mecze {
    counter-reset: mecz;
}

.numerowane-mecze tbody > tr {
    counter-increment: mecz;
}

.numerowane-mecze tbody > tr > td.lp::before {
    content: counter(mecz);
}

.numerowane-mecze tbody > tr:first-child {
    counter-increment: none;
}