Ticket #28485: 28485.2.patch
| File 28485.2.patch, 1.9 KB (added by , 12 years ago) |
|---|
-
src/wp-admin/css/common.css
705 705 ------------------------------------------------------------------------------*/ 706 706 707 707 .widget .widget-top, 708 .postbox h3,709 .stuffbox h3,708 .postbox > h3, 709 .stuffbox > h3, 710 710 .control-section .accordion-section-title, 711 711 h3.dashboard-widget-title, 712 712 h3.dashboard-widget-title span, … … 729 729 color: #222; 730 730 } 731 731 732 .postbox h3, 733 #namediv h3, 734 #submitdiv h3 { 732 .postbox > h3, 733 .stuffbox > h3 { 735 734 border-bottom: 1px solid #eee; 736 735 } 737 736 … … 1380 1379 line-height: 1; 1381 1380 } 1382 1381 1383 .postbox h3,1384 .stuffbox h3 {1382 .postbox > h3, 1383 .stuffbox > h3 { 1385 1384 margin-top: 1px; 1386 1385 -webkit-user-select: none; 1387 1386 -moz-user-select: none; … … 1390 1389 } 1391 1390 1392 1391 .js .widget .widget-top, 1393 .js .postbox h3 {1392 .js .postbox > h3 { 1394 1393 cursor: move; 1395 1394 } 1396 1395 -
src/wp-admin/css/ie.css
260 260 border: 1px solid #dfdfdf; 261 261 } 262 262 263 #wpbody-content .postbox h3 {263 #wpbody-content .postbox > h3 { 264 264 margin-bottom: -1px; 265 265 } 266 266 -
src/wp-admin/js/postbox.js
9 9 10 10 self.init(page, args); 11 11 12 $('.postbox h3, .postbox .handlediv').bind('click.postboxes', function() {12 $('.postbox > h3, .postbox .handlediv').bind('click.postboxes', function() { 13 13 var p = $(this).parent('.postbox'), id = p.attr('id'); 14 14 15 15 if ( 'dashboard_browser_nag' == id ) … … 28 28 } 29 29 }); 30 30 31 $('.postbox h3 a').click( function(e) {31 $('.postbox > h3 a').click( function(e) { 32 32 e.stopPropagation(); 33 33 }); 34 34