Changeset 5927
- Timestamp:
- 08/23/2007 06:04:15 PM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-post-rows.php
r5821 r5927 79 79 case 'control_view': 80 80 ?> 81 <td><a href="<?php the_permalink(); ?>" rel="permalink" class=" edit"><?php _e('View'); ?></a></td>81 <td><a href="<?php the_permalink(); ?>" rel="permalink" class="view"><?php _e('View'); ?></a></td> 82 82 <?php 83 83 break; -
trunk/wp-admin/includes/template.php
r5836 r5927 188 188 <td><?php the_author() ?></td> 189 189 <td><?php if ( '0000-00-00 00:00:00' ==$post->post_modified ) _e('Unpublished'); else echo mysql2date( __('Y-m-d g:i a'), $post->post_modified ); ?></td> 190 <td><a href="<?php the_permalink(); ?>" rel="permalink" class=" edit"><?php _e( 'View' ); ?></a></td>190 <td><a href="<?php the_permalink(); ?>" rel="permalink" class="view"><?php _e( 'View' ); ?></a></td> 191 191 <td><?php if ( current_user_can( 'edit_page', $id ) ) { echo "<a href='page.php?action=edit&post=$id' class='edit'>" . __( 'Edit' ) . "</a>"; } ?></td> 192 192 <td><?php if ( current_user_can( 'delete_page', $id ) ) { echo "<a href='" . wp_nonce_url( "page.php?action=delete&post=$id", 'delete-page_' . $id ) . "' class='delete' onclick=\"return deleteSomething( 'page', " . $id . ", '" . js_escape(sprintf( __("You are about to delete the '%s' page.\n'OK' to delete, 'Cancel' to stop." ), get_the_title() ) ) . "' );\">" . __( 'Delete' ) . "</a>"; } ?></td> -
trunk/wp-admin/wp-admin.css
r5913 r5927 104 104 } 105 105 106 a. edit, a.delete, a.edit:hover, a.delete:hover {106 a.view, a.edit, a.delete, a.view:hover, a.edit:hover, a.delete:hover { 107 107 border-bottom: none; 108 108 display: block; … … 111 111 } 112 112 113 a. edit:hover {113 a.view:hover, a.edit:hover { 114 114 background: #ccc; 115 115 color: #036;
Note: See TracChangeset
for help on using the changeset viewer.