Ticket #17209: 17209.diff
| File 17209.diff, 4.6 KB (added by , 12 years ago) |
|---|
-
wp-admin/css/list-tables-rtl.css
363 363 padding-right: 5px; 364 364 } 365 365 366 .sorting-indicator { 367 display: none; 368 width: 10px; 369 height: 4px; 370 margin-top: 8px; 371 margin-right: 7px; 366 th.sortable a.sorting-indicator span, 367 th.sorted a.sorting-indicator span { 368 float: none; 369 position: relative; 372 370 } 373 371 374 .sorting-indicator:before { 372 .sorting-indicator span:after { 373 position: absolute; 374 top: 4px; 375 left: -18px; 375 376 background: none; 376 377 content: '\f142'; 377 378 font: normal 20px/1 'dashicons'; 378 379 speak: none; 379 display: inline-block; 380 padding: 0; 381 top: -4px; 382 right: -8px; 380 display: none; 383 381 color: #444; 384 382 line-height: 10px; 385 position: relative; 386 vertical-align: top; 383 vertical-align: middle; 387 384 -webkit-font-smoothing: antialiased; 388 385 -moz-osx-font-smoothing: grayscale; 389 386 text-decoration: none !important; 390 387 color: #444; 391 388 } 392 389 393 .column-comments .sorting-indicator:before { 390 th.sorted .sorting-indicator span:after, 391 .sorting-indicator:hover span:after { 392 display: inline-block; 393 } 394 395 .column-comments .sorting-indicator span:after { 394 396 top: 0; 395 397 right: -10px; 396 398 } 397 399 398 th.sorted.asc .sorting-indicator :before,399 th.desc:hover span.sorting-indicator :before{400 th.sorted.asc .sorting-indicator span:after, 401 th.desc:hover span.sorting-indicator span:after { 400 402 content: '\f142'; 401 403 } 402 404 403 th.sorted.desc .sorting-indicator :before,404 th.asc:hover span.sorting-indicator :before{405 th.sorted.desc .sorting-indicator span:after, 406 th.asc:hover span.sorting-indicator span:after { 405 407 content: '\f140'; 406 408 } 407 409 -
wp-admin/css/list-tables.css
363 363 padding-left: 5px; 364 364 } 365 365 366 .sorting-indicator { 367 display: none; 368 width: 10px; 369 height: 4px; 370 margin-top: 8px; 371 margin-left: 7px; 366 th.sortable a.sorting-indicator span, 367 th.sorted a.sorting-indicator span { 368 float: none; 369 position: relative; 372 370 } 373 371 374 .sorting-indicator:before { 372 .sorting-indicator span:after { 373 position: absolute; 374 top: 4px; 375 right: -16px; 375 376 background: none; 376 377 content: '\f142'; 377 378 font: normal 20px/1 'dashicons'; 378 379 speak: none; 379 display: inline-block; 380 padding: 0; 381 top: -4px; 382 left: -8px; 380 display: none; 383 381 color: #444; 384 382 line-height: 10px; 385 position: relative; 386 vertical-align: top; 383 vertical-align: middle; 387 384 -webkit-font-smoothing: antialiased; 388 385 -moz-osx-font-smoothing: grayscale; 389 386 text-decoration: none !important; 390 387 color: #444; 391 388 } 392 389 393 .column-comments .sorting-indicator:before { 390 th.sorted .sorting-indicator span:after, 391 .sorting-indicator:hover span:after { 392 display: inline-block; 393 } 394 395 .column-comments .sorting-indicator span:after { 394 396 top: 0; 395 397 left: -10px; 396 398 } 397 399 398 th.sorted.asc .sorting-indicator :before,399 th.desc:hover span.sorting-indicator :before{400 th.sorted.asc .sorting-indicator span:after, 401 th.desc:hover span.sorting-indicator span:after { 400 402 content: '\f142'; 401 403 } 402 404 403 th.sorted.desc .sorting-indicator :before,404 th.asc:hover span.sorting-indicator :before{405 th.sorted.desc .sorting-indicator span:after, 406 th.asc:hover span.sorting-indicator span:after { 405 407 content: '\f140'; 406 408 } 407 409 -
wp-admin/includes/class-wp-list-table.php
741 741 $class[] = $desc_first ? 'asc' : 'desc'; 742 742 } 743 743 744 $column_display_name = '<a href="' . esc_url( add_query_arg( compact( 'orderby', 'order' ), $current_url ) ) . '"><span>' . $column_display_name . '</span><span class="sorting-indicator"></span></a>';744 $column_display_name = '<a class="sorting-indicator" href="' . esc_url( add_query_arg( compact( 'orderby', 'order' ), $current_url ) ) . '"><span>' . $column_display_name . '</span></a>'; 745 745 } 746 746 747 747 $id = $with_id ? "id='$column_key'" : ''; -
wp-admin/includes/class-wp-terms-list-table.php
128 128 $columns['links'] = __( 'Links' ); 129 129 } else { 130 130 $post_type_object = get_post_type_object( $this->screen->post_type ); 131 $columns['posts'] = $post_type_object ? $post_type_object->labels->name : __( 'Posts' );131 $columns['posts'] = __( '#' ); 132 132 } 133 133 134 134 return $columns;
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)