Changeset 358
- Timestamp:
- 01/31/2014 09:03:10 PM (11 years ago)
- 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 542 542 } 543 543 table.listing tr { 544 line-height: 1. 3; /* less information, more compact */544 line-height: 1.4; /* less information, more compact */ 545 545 } 546 546 table.listing thead { … … 1081 1081 } 1082 1082 #keyword-bin span a { 1083 margin: 3px 0 0 -13px;1083 margin: 1px 0 0 -15px; 1084 1084 cursor: pointer; 1085 width: 10px; 1086 height: 10px; 1085 width: 15px; 1086 height: 15px; 1087 font-size: 15px; 1087 1088 display: block; 1088 1089 float: left; 1090 text-indent: 0; 1091 overflow: hidden; 1089 1092 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; 1092 1099 } 1093 1100 #edit-keywords { … … 1096 1103 color: #999; 1097 1104 margin: 6px 6px 0 6px; 1098 }1099 #keyword-bin span a:hover {1100 background-position: -10px 0;1101 1105 } 1102 1106 .has-js #field-keywords { … … 1373 1377 a.trac-rawlink, a.trac-ziplink { 1374 1378 padding-right: 0; 1375 margin-left: 2px;1379 margin-left: 4px 1376 1380 } 1377 1381 a.trac-rawlink:before, a.trac-ziplink:before, … … 1385 1389 a.trac-rawlink:before, a.trac-ziplink:before { 1386 1390 content: "\f316"; /* dashicons-download */ 1387 padding -left: 3px;1391 padding: 0 1px 1388 1392 } 1389 1393 a.ext-link:before { … … 1394 1398 margin-top: -5px; 1395 1399 padding-right: 3px; 1400 } 1401 .create-new-ticket a.ext-link:before { 1402 display: none; 1396 1403 } 1397 1404 a.mail-link { -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r351 r358 162 162 } else if ( ! $( '#comment' ).val() ) { 163 163 return; 164 164 165 165 } 166 166 return 'The changes you made will be lost if you navigate away from this page.'; … … 221 221 222 222 // 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'); 224 224 $('form#prefs') 225 225 .has('#trac-comments-order') … … 361 361 '<a href="//meta.trac.wordpress.org/newticket" id="new-meta-ticket">Click here</a> to copy your summary and description over.</p></div>' ); 362 362 }); 363 363 364 364 $('#propertyform').on( 'click', '#new-meta-ticket', function() { 365 365 var url, href = $(this).attr( 'href' ); … … 480 480 if ( 1 !== keywords.length || keywords[0] !== '' ) { 481 481 $.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="#" />'); 483 483 if ( v in coreKeywordList ) 484 484 html.attr('title', coreKeywordList[v]); … … 657 657 orderedFocuses.push( focus ); 658 658 } 659 }); 659 }); 660 660 field.val( orderedFocuses.join( ', ' ) ); 661 661 } … … 829 829 var ticket, 830 830 star = $(this); 831 831 832 832 ticket = parseInt( star.parent().siblings('td.ticket').find('a').text().replace('#', ''), 10 ); 833 833 tickets.push( ticket );
Note: See TracChangeset
for help on using the changeset viewer.