Changeset 8845
- Timestamp:
- 09/08/2008 06:01:33 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/inbox.php
r8691 r8845 24 24 <h2><?php _e('Inbox'); ?></h2> 25 25 <ul class="subsubsub"> 26 <li><a href="#" class="current"><?php _e('Messages') ?></a> </li> |<li><a href="#"><?php echo sprintf(__('Archived') . ' (%s)', '42'); ?></a></li>26 <li><a href="#" class="current"><?php _e('Messages') ?></a> | </li><li><a href="#"><?php echo sprintf(__('Archived') . ' (%s)', '42'); ?></a></li> 27 27 </ul> 28 28 <div class="tablenav"> … … 40 40 <thead> 41 41 <tr> 42 <th scope="col" class="check-column"><input type="checkbox" /></th>42 <th scope="col" class="check-column"><input type="checkbox" /></th> 43 43 <th scope="col"><?php _e('Message'); ?></th> 44 44 <th scope="col"><?php _e('Date'); ?></th> … … 51 51 52 52 <tr id="message-<?php echo $k; ?>"> 53 <th scope="col" class="check-column"><input type="checkbox" name="messages[]" value="<?php echo $k; ?>" /></t d>53 <th scope="col" class="check-column"><input type="checkbox" name="messages[]" value="<?php echo $k; ?>" /></th> 54 54 <td><?php 55 55 if ( $item->href ) -
trunk/wp-admin/includes/dashboard.php
r8751 r8845 383 383 function wp_dashboard_quick_press_js() { 384 384 ?> 385 385 386 <script type="text/javascript"> 386 387 /* <![CDATA[ */ … … 430 431 ?> 431 432 432 <style type="text/css">433 #inbox-filter ul {434 list-style: none;435 margin: 0;436 padding: 0;437 position: relative;438 }439 #inbox-filter ul li {440 position: relative;441 padding-right: 20px;442 }443 #inbox-filter ul input.checkbox {444 float: left;445 }446 #inbox-filter ul p {447 float: left;448 margin: 0;449 margin-left: -40px;450 width: 100%;451 position: relative;452 left: 50px;453 }454 #inbox-message {455 margin:0 0 0 7.5em;456 padding:5px;457 }458 </style>459 433 <script type="text/javascript"> 460 434 jQuery( function($) { -
trunk/wp-admin/includes/template.php
r8777 r8845 116 116 $name = ( $name_override ? $name_override : $category->name ); 117 117 if ( current_user_can( 'manage_categories' ) ) { 118 $edit = "<a class='row-title' href='link-category.php?action=edit&cat_ID=$category->term_id' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "' class='edit'>$name</a>";118 $edit = "<a class='row-title' href='link-category.php?action=edit&cat_ID=$category->term_id' title='" . attribute_escape(sprintf(__('Edit "%s"'), $category->name)) . "'>$name</a>"; 119 119 $default_cat_id = (int) get_option( 'default_link_category' ); 120 120 } else { … … 303 303 $out .= '<th scope="row" class="check-column"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></th>'; 304 304 $out .= '<td><strong><a class="row-title" href="edit-tags.php?action=edit&tag_ID=' . $tag->term_id . '" title="' . attribute_escape(sprintf(__('Edit "%s"'), $name)) . '">' . 305 $name . '</a></ td>';305 $name . '</a></strong></td>'; 306 306 307 307 $out .= "<td class='num'>$count</td>"; -
trunk/wp-admin/plugin-editor.php
r8656 r8845 96 96 </div> 97 97 <?php endif; ?> 98 98 <div class="wrap"> 99 99 <div class="bordertitle"> 100 100 <h2><?php _e('Plugin Editor'); ?></h2> … … 102 102 <div class="tablenav"> 103 103 <div class="alignleft"> 104 <big>< strong><?php104 <big><?php 105 105 if ( is_plugin_active($file) ) { 106 106 if ( is_writeable($real_file) ) … … 114 114 echo sprintf(__('Browsing <strong>%s</strong> (inactive)'), $file); 115 115 } 116 ?></ strong></big>116 ?></big> 117 117 </div> 118 118 <br class="clear" /> -
trunk/wp-admin/theme-editor.php
r8717 r8845 102 102 <div class="bordertitle"> 103 103 <h2><?php _e('Theme Editor'); ?></h2> 104 <form id="themeselector" name="theme"action="theme-editor.php" method="post">104 <form id="themeselector" action="theme-editor.php" method="post"> 105 105 <strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong> 106 106 <select name="theme" id="theme"> -
trunk/wp-admin/user-edit.php
r8733 r8845 172 172 <h2><?php $is_profile_page? _e('Your Profile and Personal Options') : _e('Edit User'); ?></h2> 173 173 174 <form name="profile"id="your-profile" action="" method="post">174 <form id="your-profile" action="" method="post"> 175 175 <?php wp_nonce_field('update-user_' . $user_id) ?> 176 176 <?php if ( $wp_http_referer ) : ?> -
trunk/wp-admin/users.php
r8839 r8845 319 319 </select> 320 320 <input type="submit" value="<?php _e('Apply'); ?>" name="doaction" class="button-secondary action" /> 321 <label class="hidden" for="new_role"><?php _e('Change role to…') ?></label><select name="new_role" id="new_role"><option value=''><?php _e('Change role to…') ?></option> "<?php wp_dropdown_roles(); ?></select>321 <label class="hidden" for="new_role"><?php _e('Change role to…') ?></label><select name="new_role" id="new_role"><option value=''><?php _e('Change role to…') ?></option><?php wp_dropdown_roles(); ?></select> 322 322 <input type="submit" value="<?php _e('Change'); ?>" name="changeit" class="button-secondary" /> 323 323 <?php wp_nonce_field('bulk-users'); ?> -
trunk/wp-admin/wp-admin.css
r8827 r8845 1860 1860 } 1861 1861 1862 #inbox-filter ul { 1863 list-style: none; 1864 margin: 0; 1865 padding: 0; 1866 position: relative; 1867 } 1868 1869 #inbox-filter ul li { 1870 position: relative; 1871 } 1872 1873 #inbox-filter ul input.checkbox { 1874 float: left; 1875 } 1876 1877 #inbox-filter ul p { 1878 float: left; 1879 margin: 0; 1880 margin-left: -40px; 1881 width: 100%; 1882 position: relative; 1883 left: 50px; 1884 } 1885 1886 #inbox-message { 1887 margin: 0 0 0 7.5em; 1888 padding: 5px; 1889 } 1890 1891 1862 1892 /* media popup 0819 */ 1863 1893 #sidemenu {
Note: See TracChangeset
for help on using the changeset viewer.