Ticket #4529: 4529-colors.3.1.diff
| File 4529-colors.3.1.diff, 4.3 KB (added by caesarsgrunt, 3 years ago) |
|---|
-
wp-includes/js/swfupload/handlers.dev.js
115 115 jQuery('.filename .title', item).css('font-weight','normal'); 116 116 jQuery('a.undo', item).addClass('hidden'); 117 117 jQuery('a.describe-toggle-on, .menu_order_input', item).show(); 118 item.css( {backgroundColor:'# 3c3'} ).animate( {backgroundColor: '#fff'}, { queue: false, duration: 300, complete: function(){ jQuery(this).css({backgroundColor:''}); } }).removeClass('trash-undo');118 item.css( {backgroundColor:'#ceb'} ).animate( {backgroundColor: '#fff'}, { queue: false, duration: 500, complete: function(){ jQuery(this).css({backgroundColor:''}); } }).removeClass('undo'); 119 119 } 120 120 }); 121 121 return false; … … 154 154 // Vanish it. 155 155 jQuery('.toggle', item).toggle(); 156 156 jQuery('.slidetoggle', item).slideUp(200).siblings().removeClass('hidden'); 157 item.css( {backgroundColor:'#f 33'} ).animate( {backgroundColor:'#fff'}, {queue:false, duration:500} ).addClass('trash-undo');157 item.css( {backgroundColor:'#faa'} ).animate( {backgroundColor:'#f4f4f4'}, {queue:false, duration:500} ).addClass('undo'); 158 158 159 159 jQuery('.filename:empty', item).remove(); 160 160 jQuery('.filename .title', item).css('font-weight','bold'); -
wp-includes/js/wp-lists.dev.js
122 122 123 123 s.element = cls[2] || s.element || null; 124 124 if ( cls[3] ) { s.delColor = '#' + cls[3]; } 125 else { s.delColor = s.delColor || '# FF3333'; }125 else { s.delColor = s.delColor || '#faa'; } 126 126 127 127 if ( !s || !s.element ) { return false; } 128 128 … … 156 156 s.success = function(r) { 157 157 var res = wpAjax.parseAjaxResponse(r, s.response, s.element), o; 158 158 if ( !res || res.errors ) { 159 element.stop().stop().css( 'backgroundColor', '# FF3333' ).show().queue( function() { list.wpList.recolor(); $(this).dequeue(); } );159 element.stop().stop().css( 'backgroundColor', '#faa' ).show().queue( function() { list.wpList.recolor(); $(this).dequeue(); } ); 160 160 return false; 161 161 } 162 162 if ( $.isFunction(s.delAfter) ) { -
wp-admin/js/edit-comments.dev.js
71 71 72 72 a.click(function(){ 73 73 list.wpList.del(this); 74 $('#undo-' + id).css( {backgroundColor:'# 6c6'} ).fadeOut(300, function(){74 $('#undo-' + id).css( {backgroundColor:'#ceb'} ).fadeOut(350, function(){ 75 75 $(this).remove(); 76 76 $('#comment-' + id).css('backgroundColor', '').fadeIn(300, function(){ $(this).show() }); 77 77 }); -
wp-admin/css/colors-classic.dev.css
621 621 color: #557799; 622 622 } 623 623 624 #the-comment-list .unapproved, 625 #the-comment-list .unapproved th, 626 #the-comment-list .unapproved td { 624 #the-comment-list tr.undo, 625 #the-comment-list div.undo { 626 background-color: #f4f4f4; 627 } 628 629 #the-comment-list .unapproved { 627 630 background-color: #ffffe0; 628 631 } 629 632 -
wp-admin/css/ie.css
425 425 * html .describe .field textarea { 426 426 width: 440px; 427 427 } 428 429 #the-comment-list .unapproved, 430 #the-comment-list .unapproved tr, 431 #the-comment-list .unapproved td { 432 background-color: #ffffe0; 433 } 434 No newline at end of file -
wp-admin/css/colors-fresh.dev.css
616 616 color: #557799; 617 617 } 618 618 619 #the-comment-list .unapproved, 620 #the-comment-list .unapproved th, 621 #the-comment-list .unapproved td { 619 #the-comment-list tr.undo, 620 #the-comment-list div.undo { 621 background-color: #f4f4f4; 622 } 623 624 #the-comment-list .unapproved { 622 625 background-color: #ffffe0; 623 626 } 624 627
