Changeset 28940
- Timestamp:
- 07/01/2014 04:22:32 PM (11 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r28843 r28940 706 706 707 707 .widget .widget-top, 708 .postbox h3,709 .stuffbox h3,708 .postbox .hndle, 709 .stuffbox .hndle, 710 710 .control-section .accordion-section-title, 711 711 h3.dashboard-widget-title, … … 730 730 } 731 731 732 .postbox h3, 733 #namediv h3, 734 #submitdiv h3 { 732 .postbox .hndle, 733 .stuffbox .hndle { 735 734 border-bottom: 1px solid #eee; 736 735 } … … 1350 1349 } 1351 1350 1351 .js .widget .widget-top, 1352 1352 .js .postbox .hndle { 1353 1353 cursor: move; … … 1381 1381 } 1382 1382 1383 .postbox h3, 1384 . stuffbox h3 {1385 margin-top: 1px; 1383 /* user-select is not a part of the CSS standard - may change behavior in the future */ 1384 .postbox .hndle, 1385 .stuffbox .hndle { 1386 1386 -webkit-user-select: none; 1387 1387 -moz-user-select: none; 1388 1388 -ms-user-select: none; 1389 1389 user-select: none; 1390 }1391 1392 .js .widget .widget-top,1393 .js .postbox h3 {1394 cursor: move;1395 1390 } 1396 1391 -
trunk/src/wp-admin/css/ie.css
r28142 r28940 261 261 } 262 262 263 #wpbody-content .postbox h3{263 #wpbody-content .postbox .hndle { 264 264 margin-bottom: -1px; 265 265 } -
trunk/src/wp-admin/js/postbox.js
r26822 r28940 10 10 self.init(page, args); 11 11 12 $('.postbox h3, .postbox .handlediv').bind('click.postboxes', function() {12 $('.postbox .hndle, .postbox .handlediv').bind('click.postboxes', function() { 13 13 var p = $(this).parent('.postbox'), id = p.attr('id'); 14 14 … … 29 29 }); 30 30 31 $('.postbox h3a').click( function(e) {31 $('.postbox .hndle a').click( function(e) { 32 32 e.stopPropagation(); 33 33 });
Note: See TracChangeset
for help on using the changeset viewer.