CSS and HTML validation fixes, props Simek, fixes #7703
git-svn-id: http://svn.automattic.com/wordpress/trunk@8845 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e318656a0f
commit
dbe35378e6
|
@ -23,7 +23,7 @@ endif;
|
||||||
<form id="inbox-filter" action="" method="get">
|
<form id="inbox-filter" action="" method="get">
|
||||||
<h2><?php _e('Inbox'); ?></h2>
|
<h2><?php _e('Inbox'); ?></h2>
|
||||||
<ul class="subsubsub">
|
<ul class="subsubsub">
|
||||||
<li><a href="#" class="current"><?php _e('Messages') ?></a></li> | <li><a href="#"><?php echo sprintf(__('Archived') . ' (%s)', '42'); ?></a></li>
|
<li><a href="#" class="current"><?php _e('Messages') ?></a> | </li><li><a href="#"><?php echo sprintf(__('Archived') . ' (%s)', '42'); ?></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="tablenav">
|
<div class="tablenav">
|
||||||
<div class="alignleft">
|
<div class="alignleft">
|
||||||
|
@ -39,7 +39,7 @@ endif;
|
||||||
<table class="widefat">
|
<table class="widefat">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="check-column"><input type="checkbox"/></th>
|
<th scope="col" class="check-column"><input type="checkbox" /></th>
|
||||||
<th scope="col"><?php _e('Message'); ?></th>
|
<th scope="col"><?php _e('Message'); ?></th>
|
||||||
<th scope="col"><?php _e('Date'); ?></th>
|
<th scope="col"><?php _e('Date'); ?></th>
|
||||||
<th scope="col"><?php _e('From'); ?></th>
|
<th scope="col"><?php _e('From'); ?></th>
|
||||||
|
@ -50,7 +50,7 @@ endif;
|
||||||
<?php $crazy_posts = array( '', 'some post', 'a post', 'my cool post' ); foreach ( wp_get_inbox_items() as $k => $item ) : // crazyhorse ?>
|
<?php $crazy_posts = array( '', 'some post', 'a post', 'my cool post' ); foreach ( wp_get_inbox_items() as $k => $item ) : // crazyhorse ?>
|
||||||
|
|
||||||
<tr id="message-<?php echo $k; ?>">
|
<tr id="message-<?php echo $k; ?>">
|
||||||
<th scope="col" class="check-column"><input type="checkbox" name="messages[]" value="<?php echo $k; ?>" /></td>
|
<th scope="col" class="check-column"><input type="checkbox" name="messages[]" value="<?php echo $k; ?>" /></th>
|
||||||
<td><?php
|
<td><?php
|
||||||
if ( $item->href )
|
if ( $item->href )
|
||||||
echo "<a href='$item->href' class='no-crazy'>";
|
echo "<a href='$item->href' class='no-crazy'>";
|
||||||
|
|
|
@ -382,6 +382,7 @@ function wp_dashboard_quick_press( $sidebar_args ) {
|
||||||
|
|
||||||
function wp_dashboard_quick_press_js() {
|
function wp_dashboard_quick_press_js() {
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
/* <![CDATA[ */
|
/* <![CDATA[ */
|
||||||
var quickPressLoad = function($) {
|
var quickPressLoad = function($) {
|
||||||
|
@ -429,33 +430,6 @@ function wp_dashboard_inbox( $sidebar_args ) {
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<style type="text/css">
|
|
||||||
#inbox-filter ul {
|
|
||||||
list-style: none;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
#inbox-filter ul li {
|
|
||||||
position: relative;
|
|
||||||
padding-right: 20px;
|
|
||||||
}
|
|
||||||
#inbox-filter ul input.checkbox {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
#inbox-filter ul p {
|
|
||||||
float: left;
|
|
||||||
margin: 0;
|
|
||||||
margin-left: -40px;
|
|
||||||
width: 100%;
|
|
||||||
position: relative;
|
|
||||||
left: 50px;
|
|
||||||
}
|
|
||||||
#inbox-message {
|
|
||||||
margin:0 0 0 7.5em;
|
|
||||||
padding:5px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
jQuery( function($) {
|
jQuery( function($) {
|
||||||
$('#inbox-filter').submit( function() { return false; } )
|
$('#inbox-filter').submit( function() { return false; } )
|
||||||
|
|
|
@ -115,7 +115,7 @@ function link_cat_row( $category ) {
|
||||||
|
|
||||||
$name = ( $name_override ? $name_override : $category->name );
|
$name = ( $name_override ? $name_override : $category->name );
|
||||||
if ( current_user_can( 'manage_categories' ) ) {
|
if ( current_user_can( 'manage_categories' ) ) {
|
||||||
$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>";
|
$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>";
|
||||||
$default_cat_id = (int) get_option( 'default_link_category' );
|
$default_cat_id = (int) get_option( 'default_link_category' );
|
||||||
} else {
|
} else {
|
||||||
$edit = $name;
|
$edit = $name;
|
||||||
|
@ -302,7 +302,7 @@ function _tag_row( $tag, $class = '' ) {
|
||||||
$out .= '<tr id="tag-' . $tag->term_id . '"' . $class . '>';
|
$out .= '<tr id="tag-' . $tag->term_id . '"' . $class . '>';
|
||||||
$out .= '<th scope="row" class="check-column"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></th>';
|
$out .= '<th scope="row" class="check-column"> <input type="checkbox" name="delete_tags[]" value="' . $tag->term_id . '" /></th>';
|
||||||
$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)) . '">' .
|
$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)) . '">' .
|
||||||
$name . '</a></td>';
|
$name . '</a></strong></td>';
|
||||||
|
|
||||||
$out .= "<td class='num'>$count</td>";
|
$out .= "<td class='num'>$count</td>";
|
||||||
$out .= '</tr>';
|
$out .= '</tr>';
|
||||||
|
|
|
@ -95,13 +95,13 @@ default:
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<div class="bordertitle">
|
<div class="bordertitle">
|
||||||
<h2><?php _e('Plugin Editor'); ?></h2>
|
<h2><?php _e('Plugin Editor'); ?></h2>
|
||||||
</div>
|
</div>
|
||||||
<div class="tablenav">
|
<div class="tablenav">
|
||||||
<div class="alignleft">
|
<div class="alignleft">
|
||||||
<big><strong><?php
|
<big><?php
|
||||||
if ( is_plugin_active($file) ) {
|
if ( is_plugin_active($file) ) {
|
||||||
if ( is_writeable($real_file) )
|
if ( is_writeable($real_file) )
|
||||||
echo sprintf(__('Editing <strong>%s</strong> (active)'), $file);
|
echo sprintf(__('Editing <strong>%s</strong> (active)'), $file);
|
||||||
|
@ -113,7 +113,7 @@ default:
|
||||||
else
|
else
|
||||||
echo sprintf(__('Browsing <strong>%s</strong> (inactive)'), $file);
|
echo sprintf(__('Browsing <strong>%s</strong> (inactive)'), $file);
|
||||||
}
|
}
|
||||||
?></strong></big>
|
?></big>
|
||||||
</div>
|
</div>
|
||||||
<br class="clear" />
|
<br class="clear" />
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -101,7 +101,7 @@ $desc_header = ( $description != $file_show ) ? "$description</strong> (%s)" : "
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<div class="bordertitle">
|
<div class="bordertitle">
|
||||||
<h2><?php _e('Theme Editor'); ?></h2>
|
<h2><?php _e('Theme Editor'); ?></h2>
|
||||||
<form id="themeselector" name="theme" action="theme-editor.php" method="post">
|
<form id="themeselector" action="theme-editor.php" method="post">
|
||||||
<strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong>
|
<strong><label for="theme"><?php _e('Select theme to edit:'); ?> </label></strong>
|
||||||
<select name="theme" id="theme">
|
<select name="theme" id="theme">
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -171,7 +171,7 @@ include ('admin-header.php');
|
||||||
<div class="wrap" id="profile-page">
|
<div class="wrap" id="profile-page">
|
||||||
<h2><?php $is_profile_page? _e('Your Profile and Personal Options') : _e('Edit User'); ?></h2>
|
<h2><?php $is_profile_page? _e('Your Profile and Personal Options') : _e('Edit User'); ?></h2>
|
||||||
|
|
||||||
<form name="profile" id="your-profile" action="" method="post">
|
<form id="your-profile" action="" method="post">
|
||||||
<?php wp_nonce_field('update-user_' . $user_id) ?>
|
<?php wp_nonce_field('update-user_' . $user_id) ?>
|
||||||
<?php if ( $wp_http_referer ) : ?>
|
<?php if ( $wp_http_referer ) : ?>
|
||||||
<input type="hidden" name="wp_http_referer" value="<?php echo clean_url($wp_http_referer); ?>" />
|
<input type="hidden" name="wp_http_referer" value="<?php echo clean_url($wp_http_referer); ?>" />
|
||||||
|
|
|
@ -318,7 +318,7 @@ unset($role_links);
|
||||||
<option value="delete"><?php _e('Delete'); ?></option>
|
<option value="delete"><?php _e('Delete'); ?></option>
|
||||||
</select>
|
</select>
|
||||||
<input type="submit" value="<?php _e('Apply'); ?>" name="doaction" class="button-secondary action" />
|
<input type="submit" value="<?php _e('Apply'); ?>" name="doaction" class="button-secondary action" />
|
||||||
<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>
|
<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>
|
||||||
<input type="submit" value="<?php _e('Change'); ?>" name="changeit" class="button-secondary" />
|
<input type="submit" value="<?php _e('Change'); ?>" name="changeit" class="button-secondary" />
|
||||||
<?php wp_nonce_field('bulk-users'); ?>
|
<?php wp_nonce_field('bulk-users'); ?>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1859,6 +1859,36 @@ p#post-search-prep {
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#inbox-filter ul {
|
||||||
|
list-style: none;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inbox-filter ul li {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inbox-filter ul input.checkbox {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inbox-filter ul p {
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
margin-left: -40px;
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
left: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#inbox-message {
|
||||||
|
margin: 0 0 0 7.5em;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* media popup 0819 */
|
/* media popup 0819 */
|
||||||
#sidemenu {
|
#sidemenu {
|
||||||
margin: -30px 15px 0 315px;
|
margin: -30px 15px 0 315px;
|
||||||
|
|
Loading…
Reference in New Issue