Stop the fade-out of the Undo notices on Edit Comments screen, props caesarsgrunt, fixes #11259, see #4529

git-svn-id: https://develop.svn.wordpress.org/trunk@12278 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-11-26 04:37:39 +00:00
parent d6c576bc1f
commit f066b7dc39
11 changed files with 33 additions and 38 deletions
File diff suppressed because one or more lines are too long
+2 -6
View File
@@ -634,8 +634,8 @@ tr.inactive + tr.plugin-update-tr .plugin-update {
color: #d98500;
}
table.widefat .delete a,
table.widefat .trash a,
table.widefat span.delete a,
table.widefat span.trash a,
#dashboard_recent_comments .delete a,
#dashboard_recent_comments .trash a {
color: #bc0b0b;
@@ -1685,10 +1685,6 @@ div.widgets-sortables,
opacity: 0.4;
}
.trash-undo {
background-color: #ebffe0;
}
#dashboard_recent_comments .trash-undo {
border-top-color: #dfdfdf;
}
File diff suppressed because one or more lines are too long
+2 -6
View File
@@ -629,8 +629,8 @@ tr.inactive + tr.plugin-update-tr .plugin-update {
color: #d98500;
}
table.widefat .delete a,
table.widefat .trash a,
table.widefat span.delete a,
table.widefat span.trash a,
#dashboard_recent_comments .delete a,
#dashboard_recent_comments .trash a {
color: #bc0b0b;
@@ -1674,10 +1674,6 @@ div.widgets-sortables,
opacity: 0.4;
}
.trash-undo {
background-color: #ebffe0;
}
#dashboard_recent_comments .trash-undo {
border-top-color: #dfdfdf;
}
+6 -12
View File
@@ -32,7 +32,7 @@ setCommentsList = function() {
// Send current total, page, per_page and url
delBefore = function( settings, list ) {
var cl = $(settings.target).attr('className'), id, el, n, h, a, to, author;
var cl = $(settings.target).attr('className'), id, el, n, h, a, author;
settings.data._total = totalInput.val() || 0;
settings.data._per_page = perPageInput.val() || 0;
@@ -49,19 +49,20 @@ setCommentsList = function() {
if ( el.is('tr') ) {
n = el.children(':visible').length;
author = $('.author strong', el).html();
h = $('<tr id="trashundo-' + id + '" style="display:none;"><td class="trash-undo" colspan="' + n + '">' + note + '</td></tr>');
author = $('.author strong', el).text();
h = $('<tr id="trashundo-' + id + '" class="trash-undo" style="display:none;"><td colspan="' + n + '">' + note + '</td></tr>');
} else {
author = $('.comment-author', el).html();
author = $('.comment-author', el).text();
h = $('<div id="trashundo-' + id + '" style="display:none;" class="trash-undo">' + note + '</div>');
}
el.before(h);
$('strong', '#trashundo-' + id).html(author + ' ');
$('strong', '#trashundo-' + id).text(author + ' ');
a = $('a.undo-trash', '#trashundo-' + id);
a.attr('href', 'comment.php?action=untrashcomment&c=' + id + '&_ajax_nonce=' + settings.data._ajax_nonce);
a.attr('className', 'delete:the-comment-list:comment-' + id + '::untrash=1 vim-z vim-destructive');
$('.avatar', el).clone().prependTo('#trashundo-' + id + ' .trash-undo-inside');
a.click(function(){
list.wpList.del(this);
@@ -71,13 +72,6 @@ setCommentsList = function() {
});
return false;
});
if ( to )
window.clearTimeout(to);
to = window.setTimeout( function(){
$('#trashundo-' + id).fadeOut('slow', function(){ $(this).remove(); });
}, 7000 );
}
return settings;
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+11 -2
View File
@@ -3520,11 +3520,20 @@ span.imgedit-scale-warn {
border-top-style: solid;
border-top-width: 1px;
margin: 0 -10px;
padding: 3px;
padding: 3px 8px;
font-size: 11px;
}
.trash-undo-inside {
margin: 3px 8px;
margin: 1px 8px 1px 0;
line-height: 16px;
}
.trash-undo-inside .avatar {
height: 20px;
width: 20px;
margin-right: 8px;
vertical-align: middle;
}
/* tag hints */