Vorlage:If mobile/styles.css

Aus Das unsichtbare Imperium
Version vom 28. August 2024, 18:04 Uhr von Zeus (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „.ifmobile > .mobile:nth-child(2n) { display: none; } →‎Force nomobile element to display when present. Overrides skin-based css for hiding the nomobile class, e.g. Timeless skin with screen size less than 850px.: .ifmobile > .nomobile { display: inherit; →‎The fallback: display: initial; }“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
.ifmobile > .mobile:nth-child(2n) {
    display: none;
}

/*
    Force nomobile element to display when present.
    Overrides skin-based css for hiding the nomobile class, e.g. Timeless skin with screen size less than 850px.
*/
.ifmobile > .nomobile {
    display: inherit; /* The fallback */
    display: initial;
}