Make WordPress Core

Ticket #27072: editor.css.diff

File editor.css.diff, 891 bytes (added by jackreichert, 11 years ago)

css fix to use dashicon instead of images/toggle-arrow.png

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

    diff --git src/wp-includes/css/editor.css src/wp-includes/css/editor.css
    index 2b07303..0b00554 100644
    i.mce-i-wp_page:before { 
    555555#wp-link #internal-toggle {
    556556        display: inline-block;
    557557        cursor: pointer;
    558         padding-left: 18px;
    559558}
    560559
    561 #wp-link .toggle-arrow {
    562         background: transparent url("../images/toggle-arrow.png") top left no-repeat;
    563         height: 23px;
    564         line-height: 23px;
     560#wp-link .toggle-arrow:before {
     561        content: "\f139";
     562        color: #bbb;
     563        font: normal 20px/1.2 'dashicons';
     564        speak: none;
     565        vertical-align: middle;
    565566}
    566567
    567 #wp-link .toggle-arrow-active {
    568         background-position: center left;
     568#wp-link .toggle-arrow-active.toggle-arrow:before {
     569        content: "\f140";
     570        color: #bbb;
     571        font: normal 20px/1.2 'dashicons';
     572        speak: none;
     573        vertical-align: middle;
    569574}
    570575
    571576#wp-link label input[type="text"] {