MediaWiki:Common.js: mudanças entre as edições
De Letropédia
Limpou toda a página Etiqueta: Anulando |
Sem resumo de edição Etiqueta: Revertido |
||
Linha 1: | Linha 1: | ||
$(function () { | |||
$.get(mw.util.getUrl('MediaWiki:Top-bar', { action: 'render' }), function (data) { | |||
$('<div id="top-bar">') | |||
.html(data) | |||
.css({ | |||
background: '#004080', | |||
color: '#fff', | |||
padding: '10px', | |||
position: 'fixed', | |||
top: 0, | |||
left: 0, | |||
right: 0, | |||
'z-index': 9999 | |||
}) | |||
.prependTo('body'); | |||
$('body').css('padding-top', '60px'); | |||
}); | |||
}); |
Edição das 02h30min de 31 de julho de 2025
$(function () { $.get(mw.util.getUrl('MediaWiki:Top-bar', { action: 'render' }), function (data) { $('<div id="top-bar">') .html(data) .css({ background: '#004080', color: '#fff', padding: '10px', position: 'fixed', top: 0, left: 0, right: 0, 'z-index': 9999 }) .prependTo('body'); $('body').css('padding-top', '60px'); }); });