Changeset 14251
- Timestamp:
- 12/09/2024 05:06:28 AM (11 months ago)
- Location:
- sites/trunk
- Files:
-
- 3 edited
-
trac.wordpress.org/templates/site.html (modified) (1 diff)
-
wordpress.org/public_html/style/trac/wp-trac.css (modified) (2 diffs)
-
wordpress.org/public_html/style/trac/wp-trac.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/trac.wordpress.org/templates/site.html
r14028 r14251 5 5 6 6 <?python 7 scripts_version = '22 0'7 scripts_version = '221' 8 8 project_slug = req.environ['HTTP_HOST'].split(':')[0].split('.')[0] 9 9 wporg_endpoint = 'https://make.wordpress.org/' + project_slug + '/' -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.css
r14028 r14251 2490 2490 display: table; 2491 2491 margin: 0; 2492 max-width: 56em;2493 2492 padding: 0 1em; 2494 2493 position: relative; … … 2503 2502 #github-prs ul.pull-requests li div { 2504 2503 display: table-cell; 2505 padding: 0.5em 0; 2504 padding: 0.5em 0.25em; 2505 } 2506 #github-prs ul.pull-requests li div:first-of-type { 2507 padding-left: 0; 2508 } 2509 #github-prs ul.pull-requests li div:last-of-type { 2510 white-space: nowrap; 2511 padding-right: 0; 2506 2512 } 2507 2513 #github-prs ul.pull-requests li > div:first-of-type > a:first-of-type { -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r13519 r14251 635 635 636 636 author = $el.find( '.username' ).data( 'username' ); 637 $commit.append( ' by <a href="https://profiles.wordpress.org/' + author + '">@' + author + '</a>' );637 $commit.append( ' by <a href="https://profiles.wordpress.org/' + author + '">@' + author + '</a>' ); 638 638 639 639 date = $el.find( '.time-ago' ).html(); … … 1958 1958 '#' + data.number + ' ' + data.title 1959 1959 ) + 1960 ' by ' +1960 ' by ' + 1961 1961 htmlElement( 'a', { href: data.user.url }, '@' + data.user.name ) + 1962 1962 '</div>' +
Note: See TracChangeset
for help on using the changeset viewer.