Making WordPress.org

Changeset 358


Ignore:
Timestamp:
01/31/2014 09:03:10 PM (11 years ago)
Author:
ocean90
Message:

Trac: Improve padding for download icons, remove icon from new ticket buttons, use Dashicon for keyword dismiss. see #272.

Location:
sites/trunk/wordpress.org/public_html/style/trac
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/style/trac/wp-trac.css

    r357 r358  
    542542}
    543543table.listing tr {
    544     line-height: 1.3; /* less information, more compact */
     544    line-height: 1.4; /* less information, more compact */
    545545}
    546546table.listing thead {
     
    10811081}
    10821082#keyword-bin span a {
    1083     margin: 3px 0 0 -13px;
     1083    margin: 1px 0 0 -15px;
    10841084    cursor: pointer;
    1085     width: 10px;
    1086     height: 10px;
     1085    width: 15px;
     1086    height: 15px;
     1087    font-size: 15px;
    10871088    display: block;
    10881089    float: left;
     1090    text-indent: 0;
     1091    overflow: hidden;
    10891092    position: absolute;
    1090     background: url(//s.w.org/wp-admin/images/xit.gif) no-repeat;
    1091     border-bottom: 0;
     1093    border: 0;
     1094    background: none;
     1095    color: #999;
     1096}
     1097#keyword-bin span a:hover {
     1098    color: #c00;
    10921099}
    10931100#edit-keywords {
     
    10961103    color: #999;
    10971104    margin: 6px 6px 0 6px;
    1098 }
    1099 #keyword-bin span a:hover {
    1100     background-position: -10px 0;
    11011105}
    11021106.has-js #field-keywords {
     
    13731377a.trac-rawlink, a.trac-ziplink {
    13741378    padding-right: 0;
    1375     margin-left: 2px;
     1379    margin-left: 4px
    13761380}
    13771381a.trac-rawlink:before, a.trac-ziplink:before,
     
    13851389a.trac-rawlink:before, a.trac-ziplink:before {
    13861390    content: "\f316"; /* dashicons-download */
    1387     padding-left: 3px;
     1391    padding: 0 1px
    13881392}
    13891393a.ext-link:before {
     
    13941398    margin-top: -5px;
    13951399    padding-right: 3px;
     1400}
     1401.create-new-ticket a.ext-link:before {
     1402    display: none;
    13961403}
    13971404a.mail-link {
  • sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js

    r351 r358  
    162162                    } else if ( ! $( '#comment' ).val() ) {
    163163                        return;
    164                    
     164
    165165                    }
    166166                    return 'The changes you made will be lost if you navigate away from this page.';
     
    221221
    222222            // Add a 'Show only commits/attachments' view option to tickets
    223             $('label[for="trac-comments-only-toggle"]').text('Show only comment text'); 
     223            $('label[for="trac-comments-only-toggle"]').text('Show only comment text');
    224224            $('form#prefs')
    225225                .has('#trac-comments-order')
     
    361361                    '<a href="//meta.trac.wordpress.org/newticket" id="new-meta-ticket">Click here</a> to copy your summary and description over.</p></div>' );
    362362            });
    363    
     363
    364364            $('#propertyform').on( 'click', '#new-meta-ticket', function() {
    365365                var url, href = $(this).attr( 'href' );
     
    480480                    if ( 1 !== keywords.length || keywords[0] !== '' ) {
    481481                        $.each( keywords, function( k, v ) {
    482                             var html = $('<span />').text(v).attr('data-keyword', v).prepend('<a href="#" />');
     482                            var html = $('<span />').text(v).attr('data-keyword', v).prepend('<a class="dashicons dashicons-dismiss" href="#" />');
    483483                            if ( v in coreKeywordList )
    484484                                html.attr('title', coreKeywordList[v]);
     
    657657                        orderedFocuses.push( focus );
    658658                    }
    659                 }); 
     659                });
    660660                field.val( orderedFocuses.join( ', ' ) );
    661661            }
     
    829829                    var ticket,
    830830                        star = $(this);
    831                    
     831
    832832                    ticket = parseInt( star.parent().siblings('td.ticket').find('a').text().replace('#', ''), 10 );
    833833                    tickets.push( ticket );
Note: See TracChangeset for help on using the changeset viewer.