Flash through red when sending an item to the trash, flash through green when undoing it, props caesarsgrunt, see #4529

git-svn-id: https://develop.svn.wordpress.org/trunk@12289 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz
2009-11-28 02:56:15 +00:00
parent bc19c30486
commit ed11892e7f
11 changed files with 19 additions and 15 deletions
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -188,7 +188,8 @@ strong .post-com-count span {
border-right-color: #99d;
}
#media-upload {
#media-upload,
#media-upload .media-item .slidetoggle {
background: #fff;
}
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -188,7 +188,8 @@ strong .post-com-count span {
border-right-color: #99d;
}
#media-upload {
#media-upload,
#media-upload .media-item .slidetoggle {
background: #fff;
}
+1 -1
View File
@@ -1164,7 +1164,7 @@ function get_media_item( $attachment_id, $args = null ) {
}
$display_title = ( !empty( $title ) ) ? $title : $filename; // $title shouldn't ever be empty, but just in case
$display_title = $show_title ? "<div class='filename new'>" . wp_html_excerpt($display_title, 60) . "</div>" : '';
$display_title = $show_title ? "<div class='filename new'><span class='title'>" . wp_html_excerpt($display_title, 60) . "</span></div>" : '';
$gallery = ( (isset($_REQUEST['tab']) && 'gallery' == $_REQUEST['tab']) || (isset($redir_tab) && 'gallery' == $redir_tab) ) ? true : false;
$order = '';
+2 -2
View File
@@ -2183,9 +2183,9 @@ function _wp_comment_row( $comment_id, $mode, $comment_status, $checkbox = true,
if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
$actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . __( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
} elseif ( 'spam' == $the_comment_status ) {
$actions['unspam'] = "<a href='$untrash_url' class='delete:the-comment-list:comment-$comment->comment_ID:ABF888:unspam=1 vim-z vim-destructive'>" . __( 'Not Spam' ) . '</a>';
$actions['unspam'] = "<a href='$untrash_url' class='delete:the-comment-list:comment-$comment->comment_ID:66cc66:unspam=1 vim-z vim-destructive'>" . __( 'Not Spam' ) . '</a>';
} elseif ( 'trash' == $the_comment_status ) {
$actions['untrash'] = "<a href='$untrash_url' class='delete:the-comment-list:comment-$comment->comment_ID:ABF888:untrash=1 vim-z vim-destructive'>" . __( 'Restore' ) . '</a>';
$actions['untrash'] = "<a href='$untrash_url' class='delete:the-comment-list:comment-$comment->comment_ID:66cc66:untrash=1 vim-z vim-destructive'>" . __( 'Restore' ) . '</a>';
}
if ( 'spam' == $the_comment_status || 'trash' == $the_comment_status || !EMPTY_TRASH_DAYS ) {
+1 -1
View File
@@ -71,7 +71,7 @@ setCommentsList = function() {
a.click(function(){
list.wpList.del(this);
$('#undo-' + id).fadeOut(300, function(){
$('#undo-' + id).css( {backgroundColor:'#6c6'} ).fadeOut(300, function(){
$(this).remove();
$('#comment-' + id).css('backgroundColor', '').fadeIn(300, function(){ $(this).show() });
});
File diff suppressed because one or more lines are too long