Make WordPress Core

Ticket #18348: 18348.patch

File 18348.patch, 5.6 KB (added by ocean90, 13 years ago)
  • wp-admin/includes/template.php

     
    344344<?php else : ?>
    345345<div id="com-reply" style="display:none;"><div id="replyrow" style="display:none;">
    346346<?php endif; ?>
    347         <div id="replyhead" style="display:none;"><?php _e('Reply to Comment'); ?></div>
     347        <div id="replyhead" style="display:none;"><h5><?php _e( 'Reply to Comment' ); ?></h5></div>
    348348
    349349        <div id="edithead" style="display:none;">
     350                <h5><?php _e( 'Quick Edit' ); ?></h5>
    350351                <div class="inside">
    351352                <label for="author"><?php _e('Name') ?></label>
    352353                <input type="text" name="newcomment_author" size="50" value="" tabindex="101" id="author" />
     
    364365                <div style="clear:both;"></div>
    365366        </div>
    366367
    367         <div id="replycontainer"><textarea rows="8" cols="40" name="replycontent" tabindex="104" id="replycontent"></textarea></div>
     368        <div id="replycontainer">
     369        <?php
     370        $quicktags_settings = array( 'quicktags_buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close' );
     371        wp_editor( '', 'replycontent', array( 'media_buttons' => false, 'tinymce' => false, 'quicktags' => $quicktags_settings ) );
     372        ?>
     373        </div>
    368374
    369375        <p id="replysubmit" class="submit">
    370376        <a href="#comments-form" class="cancel button-secondary alignleft" tabindex="106"><?php _e('Cancel'); ?></a>
  • wp-admin/js/edit-comments.dev.js

     
    366366                        $('.error', '#replysubmit').html('').hide();
    367367                        $('.waiting', '#replysubmit').hide();
    368368
    369                         if ( $.browser.msie )
    370                                 $('#replycontainer, #replycontent').css('height', '120px');
    371                         else
    372                                 $('#replycontainer').resizable('destroy').css('height', '120px');
    373 
    374369                        this.cid = '';
    375370                }
    376371        },
     
    398393                        $('#edithead, #savebtn', editRow).show();
    399394                        $('#replyhead, #replybtn', editRow).hide();
    400395
    401                         h = c.height();
    402                         if ( h > 220 )
    403                                 if ( $.browser.msie )
    404                                         $('#replycontainer, #replycontent', editRow).height(h-105);
    405                                 else
    406                                         $('#replycontainer', editRow).height(h-105);
    407 
    408396                        c.after( editRow ).fadeOut('fast', function(){
    409397                                $('#replyrow').fadeIn(300, function(){ $(this).show() });
    410398                        });
     
    548536        commentReply.init();
    549537        $(document).delegate('span.delete a.delete', 'click', function(){return false;});
    550538
    551         if ( typeof QTags != 'undefined' )
    552                 quicktags({id: 'replycontent', buttons: 'strong,em,link,block,del,ins,img,ul,ol,li,code,spell,close'});
    553539
    554540        if ( typeof $.table_hotkeys != 'undefined' ) {
    555541                make_hotkeys_redirect = function(which) {
  • wp-admin/css/colors-fresh.dev.css

     
    6060#your-profile fieldset,
    6161#rightnow,
    6262div.dashboard-widget,
    63 #dashboard-widgets p.dashboard-widget-links,
    64 #replyrow #ed_reply_toolbar input {
     63#dashboard-widgets p.dashboard-widget-links {
    6564        border-color: #ccc;
    6665}
    6766
     
    12591258        color: #000;
    12601259}
    12611260
    1262 #replysubmit {
    1263         background-color: #f1f1f1;
    1264         border-top-color: #ddd;
    1265 }
    1266 
    12671261#replyerror {
    12681262        border-color: #ddd;
    12691263        background-color: #f9f9f9;
    12701264}
    12711265
    1272 #edithead,
    1273 #replyhead {
    1274         background-color: #f1f1f1;
    1275 }
    1276 
    1277 #ed_reply_toolbar {
    1278         background-color: #e9e9e9;
    1279 }
    1280 
    12811266/* table vim shortcuts */
    12821267.vim-current,
    12831268.vim-current th,
     
    13251310/* inline editor */
    13261311.inline-edit-row fieldset input[type="text"],
    13271312.inline-edit-row fieldset textarea,
    1328 #bulk-titles,
    1329 #replyrow input {
     1313#bulk-titles {
    13301314        border-color: #ddd;
    13311315}
    13321316
     
    13481332        background-color: #f1f1f1;
    13491333}
    13501334
    1351 #replyrow #ed_reply_toolbar input:hover {
    1352         border-color: #aaa;
    1353         background: #ddd;
    1354 }
    1355 
    13561335fieldset.inline-edit-col-right .inline-edit-col {
    13571336        border-color: #dfdfdf;
    13581337}
  • wp-admin/css/wp-admin.dev.css

     
    35903590}
    35913591
    35923592/* reply to comments */
    3593 #replyrow {
    3594         font-size: 11px;
    3595 }
    3596 
    35973593#replyrow input {
    35983594        border-width: 1px;
    35993595        border-style: solid;
     
    36033599        padding: 2px;
    36043600}
    36053601
    3606 #replyrow .wp-editor-container {
    3607         border: 0 none;
    3608 }
    3609 
    36103602#replysubmit {
    36113603        margin: 0;
    36123604        padding: 3px 7px;
    3613         text-align:center;
     3605        text-align: center;
    36143606}
    36153607
    36163608#replysubmit img.waiting,
     
    36253617}
    36263618
    36273619#replysubmit .error {
    3628         color:red;
    3629         line-height:21px;
    3630         text-align:center;
    3631         vertical-align:center;
     3620        color: red;
     3621        line-height: 21px;
     3622        text-align: center;
     3623        vertical-align: center;
    36323624}
    36333625
    3634 #replyrow #editor-toolbar {
    3635         display: none;
     3626#replyrow h5 {
     3627        margin: .2em 0;
     3628        padding: 0 5px;
     3629        line-height: 23px;
     3630        text-transform: uppercase;
     3631        font-size: 1em;
    36363632}
    36373633
    3638 #replyhead {
    3639         font-size: 12px;
    3640         font-weight: bold;
    3641         padding: 2px 10px 4px;
    3642 }
    3643 
    36443634#edithead .inside {
    36453635        float: left;
    36463636        padding: 3px 0 2px 5px;
    36473637        margin: 0;
    36483638        text-align: center;
    3649         font-size: 11px;
    36503639}
    36513640
    36523641#edithead .inside input {
    36533642        width: 180px;
    3654         font-size: 11px;
    36553643}
    36563644
    36573645#edithead label {
     
    36603648
    36613649#replycontainer {
    36623650        padding: 5px;
    3663         border: 0 none;
    3664         height: 120px;
    3665         overflow: hidden;
    3666         position: relative;
    36673651}
    36683652
    36693653#replycontent {
    3670         resize: none;
    3671         margin: 0;
    3672         width: 100%;
    3673         height: 100%;
    3674         padding: 0;
    3675         line-height: 150%;
    3676         border: 0 none;
    3677         outline: none;
    3678         font-size: 12px;
     3654        border: none;
     3655        height: 150px;
    36793656}
    36803657
    3681 #replyrow #ed_reply_toolbar {
    3682         margin: 0;
    3683         padding: 2px 3px;
    3684 }
    3685 
    36863658.comment-ays {
    36873659        margin-bottom: 0;
    36883660        border-style: solid;