MediaWiki:Common.css: Porovnání verzí
Vzhled
Bez shrnutí editace |
Bez shrnutí editace |
||
| Řádek 1: | Řádek 1: | ||
/* Zde uvedené CSS bude ovlivňovat všechny vzhledy */ | /* 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; | |||
} | |||
Verze z 29. 6. 2025, 18:03
/* 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;
}