MediaWiki:Common.js: Difference between revisions

From Ikwipedia
No edit summary
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.using('mediawiki.util').then(function() {
mw.loader.using('mediawiki.util').then(function() {
     if (mw.config.get('wgNamespaceNumber') == -1) { // Target only Special pages
    // Check if the current page is a Special page
        // Apply background color to the whole page
     if (mw.config.get('wgNamespaceNumber') === -1) {  
        document.body.style.backgroundColor = 'yellow';
 
        // Target and style the logo element
         var logo = document.querySelector('.mw-wiki-logo');
         var logo = document.querySelector('.mw-wiki-logo');
         if (logo) {
         if (logo) {
            // Apply inline styles directly to ensure they take effect
             logo.style.width = '135px';
             logo.style.width = '135px';
             logo.style.height = '135px';
             logo.style.height = '135px';

Revision as of 03:54, 4 November 2024

/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.using('mediawiki.util').then(function() {
    // Check if the current page is a Special page
    if (mw.config.get('wgNamespaceNumber') === -1) { 
        var logo = document.querySelector('.mw-wiki-logo');
        if (logo) {
            // Apply inline styles directly to ensure they take effect
            logo.style.width = '135px';
            logo.style.height = '135px';
            logo.style.backgroundSize = 'contain';
            logo.style.backgroundPosition = 'center';
            logo.style.backgroundRepeat = 'no-repeat';
        }
    }
});