מדיה ויקי:ColorProtected.js: הבדלים בין גרסאות בדף
קפיצה לניווט
קפיצה לחיפוש
ויקיציטוט>Krenair |
מ (גרסה אחת יובאה) |
| (גרסת ביניים אחת של אותו משתמש אינה מוצגת) | |
(אין הבדלים)
| |
גרסה אחרונה מ־09:47, 21 בספטמבר 2025
/*
* 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);