Make WordPress Core

Ticket #35612: 35612.diff

File 35612.diff, 1.3 KB (added by paulwilde, 9 years ago)
  • wp-includes/css/editor.css

    diff --git a/wp-includes/css/editor.css b/wp-includes/css/editor.css
    index af0f7ce..5cee8a1 100644
    a b div.mce-menu .mce-menu-item-sep, 
    632632        -webkit-border-radius: 3px;
    633633        border-radius: 3px;
    634634        white-space: nowrap;
    635         -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
    636         box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
     635        -webkit-box-shadow: 0 1px 0 #ccc;
     636        box-shadow: 0 1px 0 #ccc;
    637637}
    638638
    639639/* Remove the dotted border on :focus and the extra padding in Firefox */
    div.mce-menu .mce-menu-item-sep, 
    652652}
    653653
    654654.mce-window .mce-btn:focus {
    655         -webkit-box-shadow:
    656                 0 0 0 1px #5b9dd9,
    657                 0 0 2px 1px rgba( 30, 140, 190, 0.8 );
    658         box-shadow:
    659                 0 0 0 1px #5b9dd9,
    660                 0 0 2px 1px rgba( 30, 140, 190, 0.8 );
     655        border-color: #5b9dd9;
     656        -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
     657        box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    661658}
    662659
    663660.mce-window .mce-btn:active {
    664661        background: #eee;
    665662        border-color: #999;
    666         color: #32373c;
    667663        -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    668664        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
     665        -webkit-transform: translateY(1px);
     666        -ms-transform: translateY(1px);
     667        transform: translateY(1px);
    669668}
    670669
    671670.mce-window .mce-btn.mce-disabled {