Make WordPress Core

Ticket #27072: editor.css.smoothing.diff

File editor.css.smoothing.diff, 1.1 KB (added by jackreichert, 12 years ago)

per irc discussion smoothing added

  • src/wp-includes/css/editor.css

    diff --git a/src/wp-includes/css/editor.css b/src/wp-includes/css/editor.css
    index 079086f..8776f9c 100644
    a b i.mce-caret:before { 
    909909#wp-link #internal-toggle {
    910910        display: inline-block;
    911911        cursor: pointer;
    912         padding-left: 18px;
    913912}
    914913
    915 #wp-link .toggle-arrow {
    916         background: transparent url("../images/toggle-arrow.png") top left no-repeat;
    917         height: 23px;
    918         line-height: 23px;
    919 }
     914#wp-link .toggle-arrow:before {
     915        content: "\f139";
     916        color: #bbb;
     917        font: normal 20px/1.2 'dashicons';
     918        speak: none;
     919        vertical-align: middle;
     920        -webkit-font-smoothing: antialiased;
     921        -moz-osx-font-smoothing: grayscale;
     922        text-decoration: none !important;       
     923}
    920924
    921 #wp-link .toggle-arrow-active {
    922         background-position: center left;
     925#wp-link .toggle-arrow-active.toggle-arrow:before {
     926        content: "\f140";
     927        color: #bbb;
     928        font: normal 20px/1.2 'dashicons';
     929        speak: none;
     930        vertical-align: middle;
     931        -webkit-font-smoothing: antialiased;
     932        -moz-osx-font-smoothing: grayscale;
     933        text-decoration: none !important;       
    923934}
    924935
    925936#wp-link label input[type="text"] {