MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
mNo edit summary
Tag: Reverted
mNo edit summary
Tag: Reverted
Line 7: Line 7:
     width: 195px;
     width: 195px;
     height: 30px;
     height: 30px;
}
/* Any JavaScript here will be loaded for all users on every page load. */
$('li#pt-anon_oauth_login a').click(function(){
articlePath = mw.config.get('wgArticlePath');
url = articlePath.replace('$1', 'Special:OAuth2Client/redirect?returnto=Special:OAuth2Client/close');
var left = (screen.width/2) - 200;
var above = (screen.height/2) - 200;
newwindow = window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=yes, width=400, height=400, top="+above+", left="+left);
return false;
})
if (mw.config.get('wgTitle') == 'OAuth2Client/close') {
window.opener.location.reload();
window.close();
}
}

Revision as of 22:50, 29 February 2024

/* Style oAuth Login link with 'LOG IN with EVE Online' image */
a.btn_mwevesso_login{
    background-image: url(https://web.ccpgamescdn.com/eveonlineassets/developers/eve-sso-login-black-small.png);
    display: block;
    margin: -10px auto;
    text-indent: -9999px;
    width: 195px;
    height: 30px;
}

/* Any JavaScript here will be loaded for all users on every page load. */
$('li#pt-anon_oauth_login a').click(function(){
	articlePath = mw.config.get('wgArticlePath');
	url = articlePath.replace('$1', 'Special:OAuth2Client/redirect?returnto=Special:OAuth2Client/close');
	var left = (screen.width/2) - 200;
	var above = (screen.height/2) - 200;
	newwindow = window.open(url, "_blank", "resizable=yes, scrollbars=yes, titlebar=yes, width=400, height=400, top="+above+", left="+left);
	return false;
})

if (mw.config.get('wgTitle') == 'OAuth2Client/close') {
	window.opener.location.reload();
	window.close();
}