Make WordPress Core

Opened 6 months ago

Closed 6 months ago

Last modified 6 months ago

#62092 closed defect (bug) (duplicate)

Bug when editing entries or pages with macOS Sequoia - Safari 18

Reported by: artprojectgroup's profile artprojectgroup Owned by:
Milestone: Priority: normal
Severity: normal Version:
Component: General Keywords:
Focuses: ui, administration Cc:

Description

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
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

Attachments (2)

368287650-27560202-ac1a-41ab-8bab-29fa0905d8fe-2.jpeg (620.0 KB) - added by artprojectgroup 6 months ago.
368481281-aa18598f-a251-4970-b04d-52f441aebc7c.jpeg (693.6 KB) - added by artprojectgroup 6 months ago.

Download all attachments as: .zip

Change History (4)

#1 @sabernhardt
6 months ago

  • Milestone Awaiting Review deleted
  • Resolution set to duplicate
  • Status changed from new to closed
  • Version 6.6.2 deleted

Thanks for the report!

This is already tracked on #62082, and Apple has a regression report at WebKit#280063.

#2 @artprojectgroup
6 months ago

Thank you!

Best regards.

Note: See TracTickets for help on using tickets.