Make submitted-on a class instead of an id. Fixes #15426

git-svn-id: http://svn.automattic.com/wordpress/trunk@16375 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu 2010-11-14 20:28:55 +00:00
parent 4d75041199
commit 14fa85ba94
6 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -564,7 +564,7 @@ input.readonly, textarea.readonly {
#edit-slug-box strong,
.tablenav .displaying-num,
#submitted-on {
.submitted-on {
color: #777;
}

File diff suppressed because one or more lines are too long

View File

@ -564,7 +564,7 @@ input.readonly, textarea.readonly {
#edit-slug-box strong,
.tablenav .displaying-num,
#submitted-on {
.submitted-on {
color: #777;
}

View File

@ -333,7 +333,7 @@ class WP_Comments_List_Table extends WP_List_Table {
$delete_url = esc_url( $url . "&action=deletecomment&$del_nonce" );
}
echo '<div id="submitted-on">';
echo '<div class="submitted-on">';
/* translators: 2: comment date, 3: comment time */
printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url,
/* translators: comment date format. See http://php.net/date */ get_comment_date( __( 'Y/m/d' ) ),

View File

@ -476,7 +476,7 @@ function wp_default_styles( &$styles ) {
$styles->add_data( 'ie', 'conditional', 'lte IE 7' );
// all colors stylesheets need to have the same query strings (cache manifest compat)
$colors_version = '20101111';
$colors_version = '20101114';
// Register "meta" stylesheet for admin colors. All colors-* style sheets should have the same version string.
$styles->add( 'colors', true, array(), $colors_version );