MediaWiki:Common.js: Difference between revisions

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';