מדיה ויקי:ColorProtected.js: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
ויקיציטוט>Krenair |
(אין הבדלים)
|
גרסה מ־05:25, 26 באוקטובר 2016
/*
* Colors the "edit" tab according to protection level:
* Gray: Move for sysop only.
* Yellow: Semi-protected.
* Red: Full protection.
*
* Created by [[User:Yonidebest]]
*
*/
function colorProtected() {
var caEdit = document.getElementById('ca-edit');
if (wgRestrictionEdit[0] && wgRestrictionEdit[0] == "autoconfirmed")
caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#FCFFE5';
else if (wgRestrictionEdit[0] && wgRestrictionEdit[0] == "sysop")
caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#FFE5E5';
else if (wgRestrictionMove[0]&& wgRestrictionMove[0] == "sysop")
caEdit.getElementsByTagName('A')[0].style.backgroundColor = '#E5E5E5';
}
$(colorProtected);