Moved initPopupWindow CSS out of JS in Realtime plugin

This commit is contained in:
Sarven Capadisli 2009-11-24 13:10:34 +00:00
parent 9f6b3daaec
commit 84ed094f40
2 changed files with 29 additions and 18 deletions

View File

@ -1,3 +1,32 @@
.realtime-popup address {
display:none;
}
.realtime-popup #content {
width:93.5%;
}
.realtime-popup #form_notice {
margin:18px 0 18px 1.795%;
width:93%;
max-width:451px;
}
.realtime-popup #form_notice label[for=notice_data-text],
.realtime-popup h1 {
display:none;
}
.realtime-popup #form_notice label[for=notice_data-attach],
.realtime-popup #form_notice #notice_data-attach {
top:0;
}
.realtime-popup #form_notice #notice_data-attach {
left:auto;
right:0;
}
#notices_primary { #notices_primary {
position:relative; position:relative;
} }

View File

@ -276,24 +276,6 @@ RealtimeUpdate = {
initPopupWindow: function() initPopupWindow: function()
{ {
$('address').hide();
$('#content').css({'width':'93.5%'});
$('#form_notice').css({
'margin':'18px 0 18px 1.795%',
'width':'93%',
'max-width':'451px'
});
$('#form_notice label[for=notice_data-text], h1').css({'display': 'none'});
$('#form_notice label[for="notice_data-attach"], #form_notice #notice_data-attach').css({'top':'0'});
$('#form_notice #notice_data-attach').css({
'left':'auto',
'right':'0'
});
$('.notices .entry-title a, .notices .entry-content a').bind('click', function() { $('.notices .entry-title a, .notices .entry-content a').bind('click', function() {
window.open(this.href, ''); window.open(this.href, '');