Podręcznik:$wgLogoHD
Ta przestarzała funkcja nie powinna być już dłużej używana, ale jest nadal dostępna ze względu na wsteczną kompatybilność. Ta funkcja została zdeprecjonowana w wersji 1.35.0. Proszę zobaczyć na $wgLogos jako alternatywny sposób na użycie tej funkcji. |
Server URLs and file paths: $wgLogoHD | |
---|---|
URLs for HD versions of the site logo. |
|
Wprowadzono w wersji: | 1.25.0 (Gerrit change 195195; git #b5f2cf2d) |
Przestarzałe w wersji: | 1.35.0 (Gerrit change 562588; git #8cd2e133) |
Usunięto w wersji: | nadal w użyciu |
Dozwolone wartości: | (array of factors and relative paths or urls) |
Domyślna wartość: | false |
Inne ustawienia: Alfabetycznie | Według funkcji |
Szczegóły
Array with factors and their associated relative paths or URL paths to HD versions of the wiki logo. The scaled logo size should be under 135x135 pixels, the same as the size should be for the file of $wgLogo .
Only 1.5x and 2x versions are supported. That means e.g. the 2x version should be a square and should maximally have 270x270 pixels.
Przykład:
$wgLogoHD = [
"1.5x" => "path/to/1.5x_version.png",
"2x" => "path/to/2x_version.png"
];
Older MediaWiki versions
If you're using MediaWiki versions older than 1.25, you can add the following snippet to your MediaWiki:Common.css:
@media (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
#p-logo a {
background-image: url(//path/to/1.5x_version.png);
}
}
@media (-webkit-min-device-pixel-ratio: 2), (min--moz-device-pixel-ratio: 2), (min-resolution: 2dppx), (min-resolution: 192dpi) {
#p-logo a {
background-image: url(//path/to/2x_version.png);
}
}