Make WordPress Core

Ticket #47318: 47318.3.diff

File 47318.3.diff, 2.6 KB (added by afercia, 5 years ago)
  • src/wp-admin/css/common.css

     
    206206        background: #fff;
    207207}
    208208
     209.no-js .wp-editor-container {
     210        background: transparent;
     211}
     212
    209213/* general */
    210214html,
    211215body {
  • src/wp-admin/css/edit.css

     
    4747        cursor: text;
    4848}
    4949
     50.no-js #titlediv label {
     51        cursor: auto;
     52}
     53
    5054#titlediv div.inside {
    5155        margin: 0;
    5256}
     
    7276        position: absolute;
    7377        font-size: 1.7em;
    7478        padding: 11px 10px;
     79        pointer-events: none;
    7580}
    7681
     82.no-js #titlediv #title-prompt-text.screen-reader-text {
     83        position: static;
     84        -webkit-clip-path: none;
     85        clip-path: none;
     86        display: inline-block;
     87        width: auto;
     88        height: auto;
     89        margin: 0;
     90        padding: 6px 0;
     91        font-size: inherit;
     92        color: inherit;
     93        pointer-events: auto;
     94        cursor: auto;
     95}
     96
     97.wp-editor-content-label {
     98        display: none;
     99}
     100
     101.no-js .wp-editor-content-label {
     102        display: inline-block;
     103        padding: 6px 0;
     104        cursor: auto;
     105}
     106
    77107input#link_description,
    78108input#link_url {
    79109        width: 98%;
  • src/wp-includes/class-wp-editor.php

     
    263263                        'the_editor',
    264264                        '<div id="wp-' . $editor_id_attr . '-editor-container" class="wp-editor-container">' .
    265265                        $quicktags_toolbar .
     266                        '<label for="' . $editor_id_attr . '" class="wp-editor-content-label">' . __( 'Content' ) . '</label>' .
    266267                        '<textarea' . $editor_class . $height . $tabindex . $autocomplete . ' cols="40" name="' . esc_attr( $set['textarea_name'] ) . '" ' .
    267268                        'id="' . $editor_id_attr . '">%s</textarea></div>'
    268269                );
  • src/wp-includes/css/editor.css

     
    10851085        border: 1px solid #e5e5e5;
    10861086}
    10871087
     1088.no-js .wp-editor-container {
     1089        border: none;
     1090}
     1091
     1092.no-js .wp-editor-container textarea {
     1093        border: 1px solid #e5e5e5;
     1094}
     1095
     1096.no-js .wp-editor-container textarea:focus {
     1097        border-color: #5b9dd9;
     1098        box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
     1099        /* Only visible in Windows High Contrast mode */
     1100        outline: 2px solid transparent;
     1101}
     1102
    10881103.wp-editor-area {
    10891104        font-family: Consolas, Monaco, monospace;
    10901105        font-size: 13px;