Make WordPress Core

Ticket #28844: 28844.9.diff

File 28844.9.diff, 3.1 KB (added by ocean90, 10 years ago)
  • src/wp-includes/css/media-views.css

     
    13641364        padding: 0;
    13651365        margin: 0;
    13661366        -webkit-box-shadow: none;
    1367         box-shadow: none; 
     1367        box-shadow: none;
    13681368}
    13691369
    13701370.media-selection .attachment .thumbnail {
     
    14961496
    14971497.attachment-info .details .setting .name {
    14981498        float: left;
    1499         margin: 8px 1% 0 1% !important;
     1499        margin: 1px 0 0 0 !important;
    15001500        padding: 0;
    15011501        line-height: 1.1;
    15021502}
     
    15051505        padding-top: 3px;
    15061506}
    15071507
    1508 .attachment-info .setting .value {
    1509         font-style: italic;
    1510 }
    1511 
    15121508.attachment-info .filename {
    15131509        font-weight: bold;
    15141510        color: #464646;
     
    28172813        margin: 1px 0;
    28182814}
    28192815
     2816.edit-attachment-frame .attachment-info .details .setting {
     2817        margin: 0;
     2818}
     2819
    28202820.edit-attachment-frame .attachment-info .setting label {
    28212821        display: block;
    28222822}
     
    28542854        color: #666;
    28552855}
    28562856
     2857.edit-attachment-frame .attachment-info .details .setting span {
     2858        padding-top: 0;
     2859}
     2860
    28572861.edit-attachment-frame .attachment-info .setting input[type="text"],
    28582862.edit-attachment-frame .attachment-info .setting input[type="password"],
    28592863.edit-attachment-frame .attachment-info .setting input[type="email"],
     
    28712875        box-sizing: border-box;
    28722876}
    28732877
     2878.edit-attachment-frame .attachment-info .details .setting .value {
     2879        margin: 0;
     2880}
     2881
    28742882.edit-attachment-frame .attachment-info .setting textarea {
    28752883        height: 62px;
    28762884        resize: vertical;
  • src/wp-includes/media-template.php

     
    311311                                <span class="saved"><?php esc_html_e('Saved.'); ?></span>
    312312                        </span>
    313313                        <div class="details">
    314                                 <h3><?php _e('Attachment Details'); ?></h3>
    315314                                <div class="filename setting">
    316315                                        <span class="name"><?php _e( 'File name' ); ?></span> <span class="value">{{ data.filename }}</span>
    317316                                </div>
     
    343342                                        </div>
    344343                                <# } #>
    345344
    346                                 <label class="url setting" data-setting="url">
    347                                         <span class="name"><?php _e( 'URL' ); ?></span>
    348                                         <input type="text" value="{{ data.url }}" readonly />
    349                                 </label>
    350 
    351345                                <div class="compat-meta">
    352346                                        <# if ( data.compat && data.compat.meta ) { #>
    353347                                                {{{ data.compat.meta }}}
     
    356350                        </div>
    357351
    358352                        <div class="settings advanced-section">
    359                                 <h3><a class="advanced-toggle" href="#"><?php _e( 'Attachment Meta' ); ?></a></h3>
    360                                 <div class="advanced-settings hidden">
     353                                <div class="advanced-settings">
    361354                                        <# var maybeReadOnly = data.can.save || data.allowLocalEdits ? '' : 'readonly'; #>
     355                                        <label class="url setting" data-setting="url">
     356                                                <span class="name"><?php _e( 'URL' ); ?></span>
     357                                                <input type="text" value="{{ data.url }}" readonly />
     358                                        </label>
    362359                                        <label class="setting" data-setting="title">
    363360                                                <span class="name"><?php _e( 'Title' ); ?></span>
    364361                                                <input type="text" value="{{ data.title }}" {{ maybeReadOnly }} />