Changeset 333
- Timestamp:
- 01/30/2014 07:59:44 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-p2/page-reports.php
r332 r333 3 3 * For the /reports/ page 4 4 */ 5 6 if ( isset( $_GET['from-trac'] ) ) { 7 send_origin_headers(); 8 while ( have_posts() ) { 9 the_post(); 10 p2_load_entry(); 11 } 12 return; 13 } 5 14 ?> 15 6 16 <?php get_header(); ?> 7 17 8 18 <style> 19 /* changes to P2 */ 9 20 #main ul#postlist li { 10 21 border: 0; … … 16 27 display: block; 17 28 } 18 .report-group h3 { 29 #main .postcontent .trac-only { 30 display: none; 31 } 32 .ticket-reports .report-group h3 { 19 33 font-weight: bold; 20 34 } 21 #main .report-group h4 { 35 #main .report-group h4, 36 .ticket-reports .report-group h4 { 22 37 font-size: 1.2em; 23 38 } 24 #main .report-group h4 a { 39 #main .report-group h4 a, 40 .ticket-reports .report-group h4 a { 25 41 font-weight: normal; 26 42 } 27 . report {43 .ticket-reports .report { 28 44 float: left; 29 45 display: inline-block; … … 31 47 margin-right: 15px; 32 48 } 33 .wide .report, .report.wide { 49 .ticket-reports .wide .report, 50 .ticket-reports .report.wide { 34 51 width: 335px; 35 52 } 36 .narrow .report, .report.narrow { 53 .ticket-reports .narrow .report, 54 .ticket-reports .report.narrow { 37 55 width: 130px; 38 56 margin-right: 10px; 39 57 } 40 . report h4 {58 .ticket-reports .report h4 { 41 59 margin-bottom: 8px; 42 60 } 43 . report p {61 .ticket-reports .report p { 44 62 margin-top: 0; 45 63 } 46 . report p a {64 .ticket-reports .report p a { 47 65 border: 0; 48 66 } 49 . report-group {67 .ticket-reports .report-group { 50 68 clear: both; 51 69 overflow: auto; 52 70 margin-bottom: 30px; 53 71 } 54 . reports h3 {72 .ticket-reports .reports h3 { 55 73 margin: 0 0 10px; 56 74 } 57 75 </style> 58 <script src="https://core.trac.wordpress.org/chrome/common/js/jquery.js"></script>59 76 <script> 60 77 $(document).on( 'ready', function() {
Note: See TracChangeset
for help on using the changeset viewer.