MediaWiki:Vector-2022.js: Difference between revisions
Appearance
testing - background for vector |
m fixing the last edit |
||
| Line 1: | Line 1: | ||
// create body overlay | $(function() { | ||
$('body').children().wrapAll('<div class="mw-body-overlay"></div>'); | // create body overlay | ||
$('body').children().wrapAll('<div class="mw-body-overlay"></div>'); | |||
// create object just for packground | // create object just for packground | ||
$('.mw-body-overlay').prepend('<div class="custom-background"></div>'); | $('.mw-body-overlay').prepend('<div class="custom-background"></div>'); | ||
$('.custom_background').css({'height': $('.mw-body-overlay').outerHeight()}); | $('.custom_background').css({'height': $('.mw-body-overlay').outerHeight()}); | ||
}); | |||
Revision as of 09:14, 8 November 2025
$(function() {
// create body overlay
$('body').children().wrapAll('<div class="mw-body-overlay"></div>');
// create object just for packground
$('.mw-body-overlay').prepend('<div class="custom-background"></div>');
$('.custom_background').css({'height': $('.mw-body-overlay').outerHeight()});
});