Korisnik:Vago
Izgled
Babilonske korisničke informacije | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Korisnici po jeziku |
/* Please replace */
function LinkFA() { if ( document.getElementById( "p-lang" ) ) { var InterwikiLinks = document.getElementById( "p-lang" ).getElementsByTagName( "li" ); for ( var i = 0; i < InterwikiLinks.length; i++ ) { if ( document.getElementById( InterwikiLinks[i].className + "-fa" ) ) { InterwikiLinks[i].className += " FA" InterwikiLinks[i].title = ""; } else if ( document.getElementById( InterwikiLinks[i].className + "-ga" ) ) { InterwikiLinks[i].className += " GA" InterwikiLinks[i].title = ""; } } } } $( LinkFA );
/* with */
function LinkFA(){ var pLang = document.getElementById('p-lang') if (!pLang) return var list = { 'fa':'Сјајан чланак', 'ga':'Добар чланак'} var iw = pLang.getElementsByTagName('li') for (var i=0; i<iw.length; i++) for (var s in list) if (document.getElementById(iw[i].className+'-'+s)){ iw[i].className += ' ' + s.toUpperCase() iw[i].title = list[s] + ' in another language' } } $( LinkFA );
.portal li.GA {
background: url('http://upload.wikimedia.org/wikipedia/commons/6/6f/QS_blue_star_small.png') right top no-repeat; margin-right: 10px !important;
} .portal li.FA {
background: url('http://upload.wikimedia.org/wikipedia/commons/3/33/Small_skew_star.gif') right top no-repeat; margin-right: 10px !important;
}
/*{Link FA}*/ .portlet li.FA {list-style-image:url('http://upload.wikimedia.org/wikipedia/en/d/d4/Monobook-bullet-star.png')} .portlet li.GA {list-style-image:url('http://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/QS_blue_star_small.png/9px-QS_blue_star_small.png')}