Changeset 351
- Timestamp:
- 01/31/2014 07:27:04 AM (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
r350 r351 1138 1138 } 1139 1139 #properties table td#focuses { 1140 padding: .6em 0 .3em 100px;1140 padding: .6em 0 .3em 60px; 1141 1141 height: 66px; 1142 1142 } … … 1146 1146 #focuses ul { 1147 1147 float: left; 1148 width: 2 56px;1148 width: 296px; 1149 1149 margin: 0; 1150 1150 padding: 0; -
sites/trunk/wordpress.org/public_html/style/trac/wp-trac.js
r340 r351 28 28 'javascript' : 'Heavy JavaScript focus.', 29 29 // 'unit tests' : 'PHP or JS unit tests.', 30 // 'administration' : 'Dashboard related, but assigned a more specifc component.',31 // 'template' : 'Relating to theme template functions, but assigned a more specific component.',32 30 'docs' : 'Inline documentation focus.', 31 'rtl' : 'Right-to-left languages.', 32 'administration' : 'Administration related, but assigned a more specifc component.', 33 'template' : 'Relating to theme templating, but assigned a more specific component.', 33 34 'multisite' : 'Relating to multisite, but assigned a more specific component.', 34 'performance' : 'Performance or caching (but not the Cache API component).', 35 'rtl' : 'Right-to-left languages.' 35 'performance' : 'Performance or caching (but not the Cache API component).' 36 36 }; 37 37 … … 611 611 title: description, 612 612 class: classes 613 } ).html( '<a href="#">' + focus+ '</a>' ) );613 } ).html( '<a href="#">' + ( focus === 'administration' ? 'admin' : focus ) + '</a>' ) ); 614 614 }); 615 615 ul.appendTo( container );
Note: See TracChangeset
for help on using the changeset viewer.