[wp-trac] [WordPress Trac] #62092: Bug when editing entries or pages with macOS Sequoia - Safari 18

WordPress Trac noreply at wordpress.org
Sat Sep 21 04:20:50 UTC 2024


#62092: Bug when editing entries or pages with macOS Sequoia - Safari 18
--------------------------------+-----------------------------
 Reporter:  artprojectgroup     |      Owner:  (none)
     Type:  defect (bug)        |     Status:  new
 Priority:  normal              |  Milestone:  Awaiting Review
Component:  General             |    Version:  6.6.2
 Severity:  normal              |   Keywords:
  Focuses:  ui, administration  |
--------------------------------+-----------------------------
 For some reason the float property is not being applied correctly in the
 layer with id postbox-container-2. After several tests we have been able
 to verify that if the property is deactivated and re-activated it does
 apply it well, so for the moment we have created this temporary code that
 solves the problem:
 {{{#!php
 <?php
 add_action( 'admin_footer', function () {
 ?>
 <script>
 jQuery(document).ready(function($){
     $("#postbox-container-2").css('float','none');
     setTimeout(function() {
         $("#postbox-container-2").css('float','left');
     }, 100);
 });
 </script>
 <?php
 } );
 }}}

 We hope that you find the reason why the float property is not applied
 since we have not found it so far.

 By the way, the issue affects the Classic Editor only.

 Thank you in advance.

 Best regards.

 P.S: We already reported it at: [https://github.com/WordPress
 /Documentation-Issue-Tracker/issues/1686]

-- 
Ticket URL: <https://core.trac.wordpress.org/ticket/62092>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform


More information about the wp-trac mailing list