Make WordPress Core

Ticket #65449: 65286.diff

File 65286.diff, 800 bytes (added by sachinrajcp123, 2 months ago)

Attached a patch for review.

  • src/wp-admin/css/edit.css

    diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
    index 4a2b7f3..7d9e4b1 100644
    a b  
    11281128#major-publishing-actions {
    11291129    padding: 10px;
    11301130    clear: both;
    11311131    border-top: 1px solid #dcdcde;
    11321132    background: #f6f7f7;
    1133     display: flex;
    1134     align-items: center;
    1135     justify-content: space-between;
     1133
     1134    /*
     1135     * Restore the pre-7.0 layout.
     1136     *
     1137     * Using flex causes layout inconsistencies in the Classic
     1138     * editor publishing panel. A block layout preserves the
     1139     * expected button alignment and matches previous releases.
     1140     */
     1141    display: block;
    11361142}
    11371143
     1144#major-publishing-actions::after {
     1145    content: "";
     1146    display: table;
     1147    clear: both;
     1148}