Přeskočit na obsah

MediaWiki:Common.css: Porovnání verzí

Z The Last Kingdom UO Wiki
Bez shrnutí editace
značka: revertováno
Bez shrnutí editace
značka: revertováno
Řádek 37: Řádek 37:
html.client-darkmode img[src$=".webp"],
html.client-darkmode img[src$=".webp"],
html.client-darkmode img[src$=".svg"] {
html.client-darkmode img[src$=".svg"] {
     filter: none !important;
     filter: white !important;
}
}

Verze z 20. 12. 2025, 20:43

/* Zde uvedené CSS bude ovlivňovat všechny vzhledy */
/* Default tables: no borders, background, shadows unless specified */
table {
    border: none;
    background: transparent;
    box-shadow: none;
    border-collapse: collapse;
}

/* Table cells default */
table td, table th {
    border: none;
    background: transparent;
    box-shadow: none;
}

/* Only apply styles if explicitly defined */
table[style*="border"], 
table[style*="background"], 
td[style*="border"], 
td[style*="background"], 
th[style*="border"], 
th[style*="background"] {
    all: revert;
}

/* Undo darkmode inversion ONLY for safe formats */
html.client-darkmode img[src$=".jpg"],
html.client-darkmode img[src$=".jpeg"],
html.client-darkmode img[src$=".webp"] {
    filter: invert(1) hue-rotate(180deg) !important;
}

/* Leave PNG / SVG untouched */
html.client-darkmode img[src$=".png"],
html.client-darkmode img[src$=".jpg"],
html.client-darkmode img[src$=".webp"],
html.client-darkmode img[src$=".svg"] {
    filter: white !important;
}