Make WordPress Core

Ticket #33107: 33107.patch

File 33107.patch, 688 bytes (added by sumobi, 10 years ago)

Note, the -moz-transform-origin property comes after the other two CSS properties and does not using a percentage for the first value due to a current bug in Firefox whereby it cannot calculate the origin using percentages. Since the latest release

  • src/wp-admin/css/customize-nav-menus.css

     
    515515        display: inline-block;
    516516        position: relative;
    517517        left: -2px;
    518         top: -1px;
     518        top: 0;
    519519        font: normal 20px/1 'dashicons';
    520520        vertical-align: middle;
    521521        -webkit-transition: all 0.2s;
     
    540540        -webkit-transform: rotate(45deg);
    541541        -ms-transform: rotate(45deg);
    542542        transform: rotate(45deg);
     543        -webkit-transform-origin: 50% 9px;
     544        transform-origin: 50% 9px;
     545        -moz-transform-origin: 11px 9px;
    543546}
    544547
    545548.menu-item-bar .item-delete {