GNU GENERAL PUBLIC LICENSE\r
Version 2, June 1991\r
\r
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.\r
- 675 Mass Ave, Cambridge, MA 02139, USA\r
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc. \r
+ 51 Franklin St, Fifth Floor, Boston, MA 02110, USA\r
+\r
Everyone is permitted to copy and distribute verbatim copies\r
of this license document, but changing it is not allowed.\r
\r
<body>
<h1 id="logo" style="text-align: center">
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
- <br /> Version 2.6.1
+ <br /> Version 2.7
</h1>
<p style="text-align: center">Semantic Personal Publishing Platform</p>
<h1>Upgrading</h1>
<p>Before you upgrade anything, make sure you have backup copies of any files you may have modified such as <code>index.php</code>.</p>
-<h2>Upgrading from any previous WordPress to 2.6.1:</h2>
+<h2>Upgrading from any previous WordPress to 2.7:</h2>
<ol>
<li>Delete your old WP files, saving ones you've modified.</li>
<li>Upload the new files.</li>
<?php
+/**
+ * WordPress AJAX Process Execution.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/**
+ * Executing AJAX process.
+ *
+ * @since unknown
+ */
define('DOING_AJAX', true);
+define('WP_ADMIN', true);
require_once('../wp-load.php');
require_once('includes/admin.php');
-if ( !is_user_logged_in() )
+if ( ! is_user_logged_in() ) {
+
+ if ( $_POST['action'] == 'autosave' ) {
+ $id = isset($_POST['post_ID'])? (int) $_POST['post_ID'] : 0;
+
+ if ( ! $id )
+ die('-1');
+
+ $message = sprintf( __('<strong>ALERT: You are logged out!</strong> Could not save draft. <a href="%s" target="blank">Please log in again.</a>'), wp_login_url() );
+ $x = new WP_Ajax_Response( array(
+ 'what' => 'autosave',
+ 'id' => $id,
+ 'data' => $message
+ ) );
+ $x->send();
+ }
+
die('-1');
+}
-if ( isset($_GET['action']) && 'ajax-tag-search' == $_GET['action'] ) {
+if ( isset( $_GET['action'] ) ) :
+switch ( $action = $_GET['action'] ) :
+case 'ajax-tag-search' :
if ( !current_user_can( 'manage_categories' ) )
die('-1');
$s = $_GET['q']; // is this slashed already?
- if ( strstr( $s, ',' ) ) {
- $s = explode( ',', $s );
- $s = $s[count( $s ) - 1];
+ if ( false !== strpos( $s, ',' ) ) {
+ $s = explode( ',', $s );
+ $s = $s[count( $s ) - 1];
}
$s = trim( $s );
if ( strlen( $s ) < 2 )
- die; // require 2 chars for matching
- $results = $wpdb->get_col( "SELECT name FROM $wpdb->terms WHERE name LIKE ('%". $s . "%')" );
+ die; // require 2 chars for matching
+ $results = $wpdb->get_col( "SELECT t.name FROM $wpdb->term_taxonomy AS tt INNER JOIN $wpdb->terms AS t ON tt.term_id = t.term_id WHERE tt.taxonomy = 'post_tag' AND t.name LIKE ('%". $s . "%')" );
echo join( $results, "\n" );
die;
-}
+ break;
+default :
+ do_action( 'wp_ajax_' . $_GET['action'] );
+ die('0');
+ break;
+endswitch;
+endif;
$id = isset($_POST['id'])? (int) $_POST['id'] : 0;
switch ( $action = $_POST['action'] ) :
if ( $_POST['new'] == $current )
die('1');
- if ( 'unapproved' == $current ) {
+ if ( in_array( $current, array( 'unapproved', 'spam' ) ) ) {
check_ajax_referer( "approve-comment_$id" );
if ( wp_set_comment_status( $comment->comment_ID, 'approve' ) )
die('1');
) );
$x->send();
}
-
+
$cat = wp_insert_category( $_POST, true );
if ( is_wp_error($cat) ) {
$x = new WP_Ajax_Response( array(
'what' => 'cat',
'id' => $cat->term_id,
+ 'position' => -1,
'data' => _cat_row( $cat, $level, $cat_full_name ),
'supplemental' => array('name' => $cat_full_name, 'show-link' => sprintf(__( 'Category <a href="#%s">%s</a> added' ), "cat-$cat->term_id", $cat_full_name))
) );
$x = new WP_Ajax_Response( array(
'what' => 'link-cat',
'id' => $term_id,
+ 'position' => -1,
'data' => $link_cat
) );
$x->send();
$x = new WP_Ajax_Response( array(
'what' => 'tag',
'id' => $tag->term_id,
+ 'position' => '-1',
'data' => _tag_row( $tag ),
'supplemental' => array('name' => $tag_full_name, 'show-link' => sprintf(__( 'Tag <a href="#%s">%s</a> added' ), "tag-$tag->term_id", $tag_full_name))
) );
$x->send();
break;
+case 'get-tagcloud' :
+ if ( !current_user_can( 'manage_categories' ) )
+ die('-1');
+
+ $tags = get_tags( array( 'number' => 45, 'orderby' => 'count', 'order' => 'DESC' ) );
+
+ if ( empty( $tags ) )
+ die( __('No tags found!') );
+
+ if ( is_wp_error($tags) )
+ die($tags->get_error_message());
+
+ foreach ( $tags as $key => $tag ) {
+ $tags[ $key ]->link = '#';
+ $tags[ $key ]->id = $tag->term_id;
+ }
+
+ $return = wp_generate_tag_cloud( $tags );
+
+ if ( empty($return) )
+ die('0');
+
+ echo $return;
+
+ exit;
+ break;
case 'add-comment' :
check_ajax_referer( $action );
if ( !current_user_can( 'edit_post', $id ) )
$start = isset($_POST['page']) ? intval($_POST['page']) * 25 - 1: 24;
$status = isset($_POST['comment_status']) ? $_POST['comment_status'] : false;
$mode = isset($_POST['mode']) ? $_POST['mode'] : 'detail';
-
- list($comments, $total) = _wp_get_comment_list( $status, $search, $start, 1 );
+ $p = isset($_POST['p']) ? $_POST['p'] : 0;
+ $comment_type = isset($_POST['comment_type']) ? $_POST['comment_type'] : '';
+ list($comments, $total) = _wp_get_comment_list( $status, $search, $start, 1, $p, $comment_type );
if ( get_option('show_avatars') )
add_filter( 'comment_author', 'floated_admin_avatar' );
foreach ( (array) $comments as $comment ) {
get_comment( $comment );
ob_start();
- _wp_comment_row( $comment->comment_ID, $mode, $status );
+ _wp_comment_row( $comment->comment_ID, $mode, $status, true, true );
$comment_list_item = ob_get_contents();
ob_end_clean();
$x->add( array(
'data' => $comment_list_item
) );
}
+ $x->send();
+ break;
+case 'get-comments' :
+ check_ajax_referer( $action );
+
+ $post_ID = (int) $_POST['post_ID'];
+ if ( !current_user_can( 'edit_post', $post_ID ) )
+ die('-1');
+
+ $start = isset($_POST['start']) ? intval($_POST['start']) : 0;
+ $num = isset($_POST['num']) ? intval($_POST['num']) : 10;
+
+ list($comments, $total) = _wp_get_comment_list( false, false, $start, $num, $post_ID );
+
+ if ( !$comments )
+ die('1');
+
+ $comment_list_item = '';
+ $x = new WP_Ajax_Response();
+ foreach ( (array) $comments as $comment ) {
+ get_comment( $comment );
+ ob_start();
+ _wp_comment_row( $comment->comment_ID, 'single', false, false );
+ $comment_list_item .= ob_get_contents();
+ ob_end_clean();
+ }
+ $x->add( array(
+ 'what' => 'comments',
+ 'data' => $comment_list_item
+ ) );
+ $x->send();
+ break;
+case 'replyto-comment' :
+ check_ajax_referer( $action );
+
+ $comment_post_ID = (int) $_POST['comment_post_ID'];
+ if ( !current_user_can( 'edit_post', $comment_post_ID ) )
+ die('-1');
+
+ $status = $wpdb->get_var( $wpdb->prepare("SELECT post_status FROM $wpdb->posts WHERE ID = %d", $comment_post_ID) );
+
+ if ( empty($status) )
+ die('1');
+ elseif ( in_array($status, array('draft', 'pending') ) )
+ die( __('Error: you are replying to a comment on a draft post.') );
+
+ $user = wp_get_current_user();
+ if ( $user->ID ) {
+ $comment_author = $wpdb->escape($user->display_name);
+ $comment_author_email = $wpdb->escape($user->user_email);
+ $comment_author_url = $wpdb->escape($user->user_url);
+ $comment_content = trim($_POST['content']);
+ if ( current_user_can('unfiltered_html') ) {
+ if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) {
+ kses_remove_filters(); // start with a clean slate
+ kses_init_filters(); // set up the filters
+ }
+ }
+ } else {
+ die( __('Sorry, you must be logged in to reply to a comment.') );
+ }
+
+ if ( '' == $comment_content )
+ die( __('Error: please type a comment.') );
+
+ $comment_parent = absint($_POST['comment_ID']);
+ $commentdata = compact('comment_post_ID', 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'comment_parent', 'user_ID');
+
+ $comment_id = wp_new_comment( $commentdata );
+ $comment = get_comment($comment_id);
+ if ( ! $comment ) die('1');
+
+ $modes = array( 'single', 'detail', 'dashboard' );
+ $mode = isset($_POST['mode']) && in_array( $_POST['mode'], $modes ) ? $_POST['mode'] : 'detail';
+ $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1';
+ $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0;
+
+ if ( get_option('show_avatars') && 'single' != $mode )
+ add_filter( 'comment_author', 'floated_admin_avatar' );
+
+ $x = new WP_Ajax_Response();
+
+ ob_start();
+ if ( 'dashboard' == $mode ) {
+ require_once( ABSPATH . 'wp-admin/includes/dashboard.php' );
+ _wp_dashboard_recent_comments_row( $comment, false );
+ } else {
+ _wp_comment_row( $comment->comment_ID, $mode, false, $checkbox );
+ }
+ $comment_list_item = ob_get_contents();
+ ob_end_clean();
+
+ $x->add( array(
+ 'what' => 'comment',
+ 'id' => $comment->comment_ID,
+ 'data' => $comment_list_item,
+ 'position' => $position
+ ));
+
+ $x->send();
+ break;
+case 'edit-comment' :
+ check_ajax_referer( 'replyto-comment' );
+
+ $comment_post_ID = (int) $_POST['comment_post_ID'];
+ if ( ! current_user_can( 'edit_post', $comment_post_ID ) )
+ die('-1');
+
+ if ( '' == $_POST['content'] )
+ die( __('Error: please type a comment.') );
+
+ $comment_id = (int) $_POST['comment_ID'];
+ $_POST['comment_status'] = $_POST['status'];
+ edit_comment();
+
+ $mode = ( isset($_POST['mode']) && 'single' == $_POST['mode'] ) ? 'single' : 'detail';
+ $position = ( isset($_POST['position']) && (int) $_POST['position']) ? (int) $_POST['position'] : '-1';
+ $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0;
+
+ if ( get_option('show_avatars') && 'single' != $mode )
+ add_filter( 'comment_author', 'floated_admin_avatar' );
+
+ $x = new WP_Ajax_Response();
+
+ ob_start();
+ _wp_comment_row( $comment_id, $mode, true, $checkbox );
+ $comment_list_item = ob_get_contents();
+ ob_end_clean();
+
+ $x->add( array(
+ 'what' => 'edit_comment',
+ 'id' => $comment->comment_ID,
+ 'data' => $comment_list_item,
+ 'position' => $position
+ ));
+
$x->send();
break;
case 'add-meta' :
$do_lock = true;
$data = '';
- $message = sprintf( __('Draft Saved at %s.'), date( __('g:i:s a'), current_time( 'timestamp', true ) ) );
+ $message = sprintf( __('Draft Saved at %s.'), date_i18n( __('g:i:s a') ) );
$supplemental = array();
check_ajax_referer( 'closedpostboxes', 'closedpostboxesnonce' );
$closed = isset( $_POST['closed'] )? $_POST['closed'] : '';
$closed = explode( ',', $_POST['closed'] );
+ $hidden = isset( $_POST['hidden'] )? $_POST['hidden'] : '';
+ $hidden = explode( ',', $_POST['hidden'] );
+ $page = isset( $_POST['page'] )? $_POST['page'] : '';
+ if ( !preg_match( '/^[a-z-_]+$/', $page ) ) {
+ die(-1);
+ }
+ $current_user = wp_get_current_user();
+ if ( is_array($closed) )
+ update_usermeta($current_user->ID, 'closedpostboxes_'.$page, $closed);
+ if ( is_array($hidden) )
+ update_usermeta($current_user->ID, 'meta-box-hidden_'.$page, $hidden);
+break;
+case 'hidden-columns' :
+ check_ajax_referer( 'hiddencolumns', 'hiddencolumnsnonce' );
+ $hidden = isset( $_POST['hidden'] )? $_POST['hidden'] : '';
+ $hidden = explode( ',', $_POST['hidden'] );
$page = isset( $_POST['page'] )? $_POST['page'] : '';
- if ( !preg_match( '/^[a-z-]+$/', $page ) ) {
+ if ( !preg_match( '/^[a-z-_]+$/', $page ) ) {
die(-1);
}
- if (!is_array($closed)) break;
$current_user = wp_get_current_user();
- update_usermeta($current_user->ID, 'closedpostboxes_'.$page, $closed);
+ if ( is_array($hidden) )
+ update_usermeta($current_user->ID, "manage-$page-columns-hidden", $hidden);
break;
case 'get-permalink':
check_ajax_referer( 'getpermalink', 'getpermalinknonce' );
$slug = isset($_POST['new_slug'])? $_POST['new_slug'] : '';
die(get_sample_permalink_html($post_id, $title, $slug));
break;
+case 'inline-save':
+ check_ajax_referer( 'inlineeditnonce', '_inline_edit' );
+
+ if ( ! isset($_POST['post_ID']) || ! ( $post_ID = (int) $_POST['post_ID'] ) )
+ exit;
+
+ if ( 'page' == $_POST['post_type'] ) {
+ if ( ! current_user_can( 'edit_page', $post_ID ) )
+ die( __('You are not allowed to edit this page.') );
+ } else {
+ if ( ! current_user_can( 'edit_post', $post_ID ) )
+ die( __('You are not allowed to edit this post.') );
+ }
+
+ if ( $last = wp_check_post_lock( $post_ID ) ) {
+ $last_user = get_userdata( $last );
+ $last_user_name = $last_user ? $last_user->display_name : __( 'Someone' );
+ printf( $_POST['post_type'] == 'page' ? __( 'Saving is disabled: %s is currently editing this page.' ) : __( 'Saving is disabled: %s is currently editing this post.' ), wp_specialchars( $last_user_name ) );
+ exit;
+ }
+
+ $data = &$_POST;
+ $post = get_post( $post_ID, ARRAY_A );
+ $data['content'] = $post['post_content'];
+ $data['excerpt'] = $post['post_excerpt'];
+
+ // rename
+ $data['user_ID'] = $GLOBALS['user_ID'];
+
+ if ( isset($data['post_parent']) )
+ $data['parent_id'] = $data['post_parent'];
+
+ // status
+ if ( isset($data['keep_private']) && 'private' == $data['keep_private'] )
+ $data['post_status'] = 'private';
+ else
+ $data['post_status'] = $data['_status'];
+
+ if ( empty($data['comment_status']) )
+ $data['comment_status'] = 'closed';
+ if ( empty($data['ping_status']) )
+ $data['ping_status'] = 'closed';
+
+ // update the post
+ $_POST = $data;
+ edit_post();
+
+ $post = array();
+ if ( 'page' == $_POST['post_type'] ) {
+ $post[] = get_post($_POST['post_ID']);
+ page_rows($post);
+ } elseif ( 'post' == $_POST['post_type'] ) {
+ $mode = $_POST['post_view'];
+ $post[] = get_post($_POST['post_ID']);
+ post_rows($post);
+ }
+
+ exit;
+ break;
+case 'inline-save-tax':
+ check_ajax_referer( 'taxinlineeditnonce', '_inline_edit' );
+
+ if ( ! current_user_can('manage_categories') )
+ die( __('Cheatin’ uh?') );
+
+ if ( ! isset($_POST['tax_ID']) || ! ( $id = (int) $_POST['tax_ID'] ) )
+ die(-1);
+
+ switch ($_POST['tax_type']) {
+ case 'cat' :
+ $data = array();
+ $data['cat_ID'] = $id;
+ $data['cat_name'] = $_POST['name'];
+ $data['category_nicename'] = $_POST['slug'];
+ if ( isset($_POST['parent']) && (int) $_POST['parent'] > 0 )
+ $data['category_parent'] = $_POST['parent'];
+
+ $cat = get_category($id, ARRAY_A);
+ $data['category_description'] = $cat['category_description'];
+
+ $updated = wp_update_category($data);
+
+ if ( $updated && !is_wp_error($updated) )
+ echo _cat_row( $updated, 0 );
+ else
+ die( __('Category not updated.') );
+
+ break;
+ case 'link-cat' :
+ $updated = wp_update_term($id, 'link_category', $_POST);
+
+ if ( $updated && !is_wp_error($updated) )
+ echo link_cat_row($updated['term_id']);
+ else
+ die( __('Category not updated.') );
+
+ break;
+ case 'tag' :
+ $updated = wp_update_term($id, 'post_tag', $_POST);
+ if ( $updated && !is_wp_error($updated) ) {
+ $tag = get_term( $updated['term_id'], 'post_tag' );
+ if ( !$tag || is_wp_error( $tag ) )
+ die( __('Tag not updated.') );
+
+ echo _tag_row($tag);
+ } else {
+ die( __('Tag not updated.') );
+ }
+
+ break;
+ }
+
+ exit;
+ break;
+case 'meta-box-order':
+ check_ajax_referer( 'meta-box-order' );
+ update_user_option( $GLOBALS['current_user']->ID, "meta-box-order_$_POST[page]", $_POST['order'] );
+ die('1');
+ break;
+case 'find_posts':
+ check_ajax_referer( 'find-posts' );
+
+ if ( empty($_POST['ps']) )
+ exit;
+
+ $what = isset($_POST['pages']) ? 'page' : 'post';
+ $s = stripslashes($_POST['ps']);
+ preg_match_all('/".*?("|$)|((?<=[\\s",+])|^)[^\\s",+]+/', $s, $matches);
+ $search_terms = array_map(create_function('$a', 'return trim($a, "\\"\'\\n\\r ");'), $matches[0]);
+
+ $searchand = $search = '';
+ foreach( (array) $search_terms as $term) {
+ $term = addslashes_gpc($term);
+ $search .= "{$searchand}(($wpdb->posts.post_title LIKE '%{$term}%') OR ($wpdb->posts.post_content LIKE '%{$term}%'))";
+ $searchand = ' AND ';
+ }
+ $term = $wpdb->escape($s);
+ if ( count($search_terms) > 1 && $search_terms[0] != $s )
+ $search .= " OR ($wpdb->posts.post_title LIKE '%{$term}%') OR ($wpdb->posts.post_content LIKE '%{$term}%')";
+
+ $posts = $wpdb->get_results( "SELECT ID, post_title, post_status, post_date FROM $wpdb->posts WHERE post_type = '$what' AND $search ORDER BY post_date_gmt DESC LIMIT 50" );
+
+ if ( ! $posts )
+ exit( __('No posts found.') );
+
+ $html = '<table class="widefat"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Time').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
+ foreach ( $posts as $post ) {
+
+ switch ( $post->post_status ) {
+ case 'publish' :
+ case 'private' :
+ $stat = __('Published');
+ break;
+ case 'future' :
+ $stat = __('Scheduled');
+ break;
+ case 'pending' :
+ $stat = __('Pending Review');
+ break;
+ case 'draft' :
+ $stat = __('Unpublished');
+ break;
+ }
+
+ if ( '0000-00-00 00:00:00' == $post->post_date ) {
+ $time = '';
+ } else {
+ $time = mysql2date(__('Y/m/d'), $post->post_date);
+ }
+
+ $html .= '<tr class="found-posts"><td class="found-radio"><input type="radio" id="found-'.$post->ID.'" name="found_post_id" value="'.$post->ID.'"></td>';
+ $html .= '<td><label for="found-'.$post->ID.'">'.wp_specialchars($post->post_title, true).'</label></td><td>'.wp_specialchars($time, true).'</td><td>'.wp_specialchars($stat, true).'</td></tr>'."\n\n";
+ }
+ $html .= '</tbody></table>';
+
+ $x = new WP_Ajax_Response();
+ $x->add( array(
+ 'what' => $what,
+ 'data' => $html
+ ));
+ $x->send();
+
+ break;
default :
do_action( 'wp_ajax_' . $_POST['action'] );
die('0');
-</div><!-- wpbody -->
-</div><!-- wpcontent -->
+<?php
+/**
+ * WordPress Administration Template Footer
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+?>
+
+<div class="clear"></div></div><!-- wpbody-content -->
+<div class="clear"></div></div><!-- wpbody -->
+<div class="clear"></div></div><!-- wpcontent -->
</div><!-- wpwrap -->
+
<div id="footer">
-<p><?php
-do_action('in_admin_footer', '');
+<p id="footer-left" class="alignleft"><?php
+do_action( 'in_admin_footer' );
$upgrade = apply_filters( 'update_footer', '' );
-echo __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>').' | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>').' '.$upgrade;
-?></p>
+echo '<span id="footer-thankyou">' . __('Thank you for creating with <a href="http://wordpress.org/">WordPress</a>.').'</span> | '.__('<a href="http://codex.wordpress.org/">Documentation</a>').' | '.__('<a href="http://wordpress.org/support/forum/4">Feedback</a>'); ?>
+</p>
+<?php // if ( $is_IE ) browse_happy(); ?>
+<p id="footer-upgrade" class="alignright"><?php echo $upgrade; ?></p>
+<div class="clear"></div>
</div>
<?php do_action('admin_footer', ''); ?>
<script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script>
</body>
-</html>
+</html>
\ No newline at end of file
<?php
-// Deprecated. Use includes/admin.php.
+/**
+ * Administration Functions
+ *
+ * This file is deprecated, use 'wp-admin/includes/admin.php' instead.
+ *
+ * @deprecated 2.5
+ * @package WordPress
+ * @subpackage Administration
+ */
+
_deprecated_file( basename(__FILE__), '2.5', 'wp-admin/includes/admin.php' );
+
+/** WordPress Administration API: Includes all Administration functions. */
require_once(ABSPATH . 'wp-admin/includes/admin.php');
-?>
+?>
\ No newline at end of file
<?php
+/**
+ * WordPress Administration Template Header
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
@header('Content-Type: ' . get_option('html_type') . '; charset=' . get_option('blog_charset'));
if (!isset($_GET["page"])) require_once('admin.php');
-if ( $editing ) {
- if ( user_can_richedit() )
- wp_enqueue_script( 'wp_tiny_mce' );
-}
-wp_enqueue_script( 'wp-gears' );
-
-$min_width_pages = array( 'post.php', 'post-new.php', 'page.php', 'page-new.php', 'widgets.php', 'comment.php', 'link.php' );
-$the_current_page = preg_replace('|^.*/wp-admin/|i', '', $_SERVER['PHP_SELF']);
-$ie6_no_scrollbar = true;
-
-function add_minwidth($c) {
- return $c . 'minwidth ';
-}
-
-if ( in_array( $the_current_page, $min_width_pages ) ) {
- $ie6_no_scrollbar = false;
- add_filter( 'admin_body_class', 'add_minwidth' );
-}
get_admin_page_title();
-
+$title = wp_specialchars( strip_tags( $title ) );
+wp_user_settings();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
-<title><?php bloginfo('name') ?> › <?php echo wp_specialchars( strip_tags( $title ) ); ?> — WordPress</title>
+<title><?php bloginfo('name') ?> › <?php echo $title; ?> — WordPress</title>
<?php
wp_admin_css( 'css/global' );
<script type="text/javascript">
//<![CDATA[
addLoadEvent = function(func) {if (typeof jQuery != "undefined") jQuery(document).ready(func); else if (typeof wpOnload!='function'){wpOnload=func;} else {var oldonload=wpOnload; wpOnload=function(){oldonload();func();}}};
+
+function convertEntities(o) {
+ var c = function(s) {
+ if (/&[^;]+;/.test(s)) {
+ var e = document.createElement("div");
+ e.innerHTML = s;
+ return !e.firstChild ? s : e.firstChild.nodeValue;
+ }
+ return s;
+ }
+
+ if ( typeof o === 'string' )
+ return c(o);
+ else if ( typeof o === 'object' )
+ for (var v in o) {
+ if ( typeof o[v] === 'string' )
+ o[v] = c(o[v]);
+ }
+ return o;
+};
//]]>
</script>
-<?php if ( ($parent_file != 'link-manager.php') && ($parent_file != 'options-general.php') && $ie6_no_scrollbar ) : ?>
-<style type="text/css">* html { overflow-x: hidden; }</style>
-<?php endif;
+<?php
-$hook_suffixes = array();
+if ( in_array( $pagenow, array('post.php', 'post-new.php', 'page.php', 'page-new.php') ) ) {
+ add_action( 'admin_head', 'wp_tiny_mce' );
+}
+$hook_suffix = '';
if ( isset($page_hook) )
- $hook_suffixes[] = "-$page_hook";
+ $hook_suffix = "$page_hook";
else if ( isset($plugin_page) )
- $hook_suffixes[] = "-$plugin_page";
+ $hook_suffix = "$plugin_page";
else if ( isset($pagenow) )
- $hook_suffixes[] = "-$pagenow";
-
-$hook_suffixes[] = '';
+ $hook_suffix = "$pagenow";
-foreach ( $hook_suffixes as $hook_suffix )
- do_action("admin_print_styles$hook_suffix"); // do_action( 'admin_print_styles-XXX' ); do_action( 'admin_print_styles' );
-foreach ( $hook_suffixes as $hook_suffix )
- do_action("admin_print_scripts$hook_suffix"); // do_action( 'admin_print_scripts-XXX' ); do_action( 'admin_print_scripts' );
-foreach ( $hook_suffixes as $hook_suffix )
- do_action("admin_head$hook_suffix"); // do_action( 'admin_head-XXX' ); do_action( 'admin_head' );
-unset($hook_suffixes, $hook_suffix);
+do_action("admin_print_styles-$hook_suffix");
+do_action('admin_print_styles');
+do_action("admin_print_scripts-$hook_suffix");
+do_action('admin_print_scripts');
+do_action("admin_head-$hook_suffix");
+do_action('admin_head');
-?>
+if ( $is_iphone ) { ?>
+<style type="text/css">.row-actions{visibility:visible;}</style>
+<?php } ?>
</head>
<body class="wp-admin <?php echo apply_filters( 'admin_body_class', '' ); ?>">
+
<div id="wpwrap">
<div id="wpcontent">
<div id="wphead">
-<h1><?php if ( '' == get_bloginfo('name', 'display') ) echo ' '; else echo get_bloginfo('name', 'display'); ?><span id="viewsite"><a href="<?php echo trailingslashit( get_option('home') ); ?>"><?php _e('Visit Site') ?></a></span></h1>
-</div>
-
<?php
-if ( ! $is_opera ) {
+$blog_name = get_bloginfo('name', 'display');
+if ( '' == $blog_name ) {
+ $blog_name = ' ';
+} else {
+ $blog_name_excerpt = wp_html_excerpt($blog_name, 40);
+ if ( $blog_name != $blog_name_excerpt )
+ $blog_name_excerpt = trim($blog_name_excerpt) . '…';
+ $blog_name = $blog_name_excerpt;
+}
+$title_class = '';
+if ( function_exists('mb_strlen') ) {
+ if ( mb_strlen($blog_name, 'UTF-8') > 30 )
+ $title_class = 'class="long-title"';
+} else {
+ if ( strlen($blog_name) > 30 )
+ $title_class = 'class="long-title"';
+}
?>
- <div id="gears-info-box" class="info-box" style="display:none;">
- <img src="images/gear.png" title="Gear" alt="" class="gears-img" />
- <div id="gears-msg1">
- <h3 class="info-box-title"><?php _e('Speed up WordPress'); ?></h3>
- <p><?php _e('WordPress now has support for Gears, which adds new features to your web browser.'); ?><br />
- <a href="http://gears.google.com/" target="_blank" style="font-weight:normal;"><?php _e('More information...'); ?></a></p>
- <p><?php _e('After you install and enable Gears most of WordPress’ images, scripts, and CSS files will be stored locally on your computer. This speeds up page load time.'); ?></p>
- <p><strong><?php _e('Don’t install on a public or shared computer.'); ?></strong></p> <div class="submit"><button onclick="window.location = 'http://gears.google.com/?action=install&return=<?php echo urlencode( admin_url() ); ?>';" class="button"><?php _e('Install Now'); ?></button>
- <button class="button" style="margin-left:10px;" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Cancel'); ?></button></div>
- </div>
-
- <div id="gears-msg2" style="display:none;">
- <h3 class="info-box-title"><?php _e('Gears Status'); ?></h3>
- <p><?php _e('Gears is installed on this computer but is not enabled for use with WordPress.'); ?></p>
- <p><?php
-
- if ( $is_safari )
- _e('To enable it, make sure this web site is not on the denied list in Gears Settings under the Safari menu, then click the button below.');
- else
- _e('To enable it, make sure this web site is not on the denied list in Gears Settings under your browser Tools menu, then click the button below.');
-
- ?></p>
- <p><strong><?php _e('However if this is a public or shared computer, Gears should not be enabled.'); ?></strong></p>
- <div class="submit"><button class="button" onclick="wpGears.getPermission();"><?php _e('Enable Gears'); ?></button>
- <button class="button" style="margin-left:10px;" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Cancel'); ?></button></div>
- </div>
-
- <div id="gears-msg3" style="display:none;">
- <h3 class="info-box-title"><?php _e('Gears Status'); ?></h3>
- <p><?php
-
- if ( $is_safari )
- _e('Gears is installed and enabled on this computer. You can disable it from the Safari menu.');
- else
- _e('Gears is installed and enabled on this computer. You can disable it from your browser Tools menu.');
-
- ?></p>
- <p><?php _e('If there are any errors, try disabling Gears, then reload the page and enable it again.'); ?></p>
- <p><?php _e('Local storage status:'); ?> <span id="gears-wait"><span style="color:#f00;"><?php _e('Please wait! Updating files:'); ?></span> <span id="gears-upd-number"></span></span></p>
- <div class="submit"><button class="button" onclick="document.getElementById('gears-info-box').style.display='none';"><?php _e('Close'); ?></button></div>
- </div>
- </div>
+
+<img id="header-logo" src="../wp-includes/images/blank.gif" alt="" width="32" height="32" /> <h1 <?php echo $title_class ?>><a href="<?php echo trailingslashit( get_bloginfo('url') ); ?>" title="<?php _e('Visit site') ?>"><?php echo $blog_name ?> <span>← <?php _e('Visit site') ?></span></a></h1>
+
+<div id="wphead-info">
+<div id="user_info">
+<p><?php printf(__('Howdy, <a href="%1$s" title="Edit your profile">%2$s</a>'), 'profile.php', $user_identity) ?>
+<?php if ( ! $is_opera ) { ?><span class="turbo-nag hidden"> | <a href="tools.php"><?php _e('Turbo') ?></a></span><?php } ?> |
+<a href="<?php echo wp_logout_url() ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a></p>
+</div>
+
+<?php favorite_actions(); ?>
+</div>
+</div>
+
+<?php if ( get_user_setting('mfold') == 'f' ) { ?>
+<script type="text/javascript">jQuery('#wpcontent').addClass('folded');</script>
<?php } ?>
-<div id="user_info"><p><?php printf(__('Howdy, <a href="%1$s">%2$s</a>!'), 'profile.php', $user_identity) ?> | <a href="<?php echo site_url('wp-login.php?action=logout', 'login') ?>" title="<?php _e('Log Out') ?>"><?php _e('Log Out'); ?></a> | <?php _e('<a href="http://codex.wordpress.org/">Help</a>') ?> | <?php _e('<a href="http://wordpress.org/support/">Forums</a>'); if ( ! $is_opera ) { ?> | <span id="gears-menu"><a href="#" onclick="wpGears.message(1);return false;"><?php _e('Turbo') ?></a></span><?php } ?></p></div>
+<div id="wpbody">
+<?php require(ABSPATH . 'wp-admin/menu-header.php'); ?>
+<div id="wpbody-content">
<?php
-require(ABSPATH . 'wp-admin/menu-header.php');
+screen_meta($hook_suffix);
+
+do_action('admin_notices');
if ( $parent_file == 'options-general.php' ) {
require(ABSPATH . 'wp-admin/options-head.php');
}
-?>
-<div id="wpbody">
<?php
-define('WP_ADMIN', TRUE);
+/**
+ * WordPress Administration Generic POST Handler.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** We are located in WordPress Administration Panels */
+define('WP_ADMIN', true);
if ( defined('ABSPATH') )
require_once(ABSPATH . 'wp-load.php');
<?php
+/**
+ * WordPress Administration Bootstrap
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/**
+ * In WordPress Administration Panels
+ *
+ * @since unknown
+ */
define('WP_ADMIN', TRUE);
if ( defined('ABSPATH') )
wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'popuptitle', 'popupurl', 'text', 'trackback', 'pingback'));
-wp_admin_css_color('classic', __('Classic'), admin_url("css/colors-classic.css"), array('#07273E', '#14568A', '#D54E21', '#2683AE'));
-wp_admin_css_color('fresh', __('Fresh'), admin_url("css/colors-fresh.css"), array('#464646', '#CEE1EF', '#D54E21', '#2683AE'));
+wp_admin_css_color('classic', __('Blue'), admin_url("css/colors-classic.css"), array('#073447', '#21759B', '#EAF3FA', '#BBD8E7'));
+wp_admin_css_color('fresh', __('Gray'), admin_url("css/colors-fresh.css"), array('#464646', '#6D6D6D', '#F1F1F1', '#DFDFDF'));
wp_enqueue_script( 'common' );
wp_enqueue_script( 'jquery-color' );
// Handle plugin admin pages.
if (isset($plugin_page)) {
- $page_hook = get_plugin_page_hook($plugin_page, $pagenow);
+ if( ! $page_hook = get_plugin_page_hook($plugin_page, $pagenow) ) {
+ $page_hook = get_plugin_page_hook($plugin_page, $plugin_page);
+ // backwards compatibility for plugins using add_management_page
+ if ( empty( $page_hook ) && 'edit.php' == $pagenow && '' != get_plugin_page_hook($plugin_page, 'tools.php') ) {
+ // There could be plugin specific params on the URL, so we need the whole query string
+ if ( !empty($_SERVER[ 'QUERY_STRING' ]) )
+ $query_string = $_SERVER[ 'QUERY_STRING' ];
+ else
+ $query_string = 'page=' . $plugin_page;
+ wp_redirect( 'tools.php?' . $query_string );
+ exit;
+ }
+ }
if ( $page_hook ) {
do_action('load-' . $page_hook);
}
// Allow plugins to define importers as well
- if (! is_callable($wp_importers[$importer][2]))
+ if ( !isset($wp_importers) || !isset($wp_importers[$importer]) || ! is_callable($wp_importers[$importer][2]))
{
if (! file_exists(ABSPATH . "wp-admin/import/$importer.php"))
{
include(ABSPATH . "wp-admin/import/$importer.php");
}
- $parent_file = 'edit.php';
+ $parent_file = 'tools.php';
$submenu_file = 'import.php';
$title = __('Import');
include(ABSPATH . 'wp-admin/admin-footer.php');
+ // Make sure rules are flushed
+ global $wp_rewrite;
+ $wp_rewrite->flush_rules();
+
exit();
} else {
do_action("load-$pagenow");
<?php
-
-/* This accepts file uploads from swfupload or other asynchronous upload methods.
-
-*/
+/**
+ * Accepts file uploads from swfupload or other asynchronous upload methods.
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
if ( defined('ABSPATH') )
require_once(ABSPATH . 'wp-load.php');
if ( !current_user_can('upload_files') )
wp_die(__('You do not have permission to upload files.'));
-// just fetch the detail form for that attachment
-if ( ($id = intval($_REQUEST['attachment_id'])) && $_REQUEST['fetch'] ) {
- echo get_media_item($id);
+// just fetch the detail form for that attachment
+if ( isset($_REQUEST['attachment_id']) && ($id = intval($_REQUEST['attachment_id'])) && $_REQUEST['fetch'] ) {
+ if ( 2 == $_REQUEST['fetch'] ) {
+ add_filter('attachment_fields_to_edit', 'media_single_attachment_fields_to_edit', 10, 2);
+ echo get_media_item($id, array( 'send' => false, 'delete' => false ));
+ } else {
+ echo get_media_item($id);
+ }
exit;
}
echo apply_filters("async_upload_{$type}", $id);
}
-?>
+?>
\ No newline at end of file
<?php
+/**
+ * Categories Management Panel
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** Load WordPress Bootstrap */
require_once('admin.php');
$title = __('Categories');
-$parent_file = 'edit.php';
-wp_reset_vars(array('action', 'cat'));
+wp_reset_vars( array('action', 'cat') );
-if ( isset($_GET['deleteit']) && isset($_GET['delete']) )
+if ( isset( $_GET['action'] ) && isset($_GET['delete']) && ( 'delete' == $_GET['action'] || 'delete' == $_GET['action2'] ) )
$action = 'bulk-delete';
switch($action) {
}
$sendback = wp_get_referer();
- $sendback = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $sendback);
wp_redirect($sendback);
exit();
break;
case 'edit':
+ $title = __('Edit Category');
+
require_once ('admin-header.php');
$cat_ID = (int) $_GET['cat_ID'];
$category = get_category_to_edit($cat_ID);
if ( !current_user_can('manage_categories') )
wp_die(__('Cheatin’ uh?'));
+ $location = 'categories.php';
+ if ( $referer = wp_get_original_referer() ) {
+ if ( false !== strpos($referer, 'categories.php') )
+ $location = $referer;
+ }
+
if ( wp_update_category($_POST) )
- wp_redirect('categories.php?message=3');
+ $location = add_query_arg('message', 3, $location);
else
- wp_redirect('categories.php?message=5');
+ $location = add_query_arg('message', 5, $location);
+
+ wp_redirect($location);
exit;
break;
default:
-if ( !empty($_GET['_wp_http_referer']) ) {
- wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI'])));
+if ( isset($_GET['_wp_http_referer']) && ! empty($_GET['_wp_http_referer']) ) {
+ wp_redirect( remove_query_arg( array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']) ) );
exit;
}
-wp_enqueue_script( 'admin-categories' );
-wp_enqueue_script('admin-forms');
+wp_enqueue_script('admin-categories');
+if ( current_user_can('manage_categories') )
+ wp_enqueue_script('inline-edit-tax');
require_once ('admin-header.php');
$messages[5] = __('Category not updated.');
?>
-<?php if (isset($_GET['message'])) : ?>
-<div id="message" class="updated fade"><p><?php echo $messages[$_GET['message']]; ?></p></div>
+<div class="wrap nosubsub">
+<?php screen_icon(); ?>
+<h2><?php echo wp_specialchars( $title );
+if ( isset($_GET['s']) && $_GET['s'] )
+ printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', wp_specialchars( stripslashes($_GET['s']) ) ); ?>
+</h2>
+
+<?php
+if ( isset($_GET['message']) && ( $msg = (int) $_GET['message'] ) ) : ?>
+<div id="message" class="updated fade"><p><?php echo $messages[$msg]; ?></p></div>
<?php $_SERVER['REQUEST_URI'] = remove_query_arg(array('message'), $_SERVER['REQUEST_URI']);
endif; ?>
-<div class="wrap">
-<form id="posts-filter" action="" method="get">
-<?php if ( current_user_can('manage_categories') ) : ?>
- <h2><?php printf(__('Manage Categories (<a href="%s">add new</a>)'), '#addcat') ?> </h2>
-<?php else : ?>
- <h2><?php _e('Manage Categories') ?> </h2>
-<?php endif; ?>
-
-<p id="post-search">
- <label class="hidden" for="post-search-input"><?php _e('Search Categories'); ?>:</label>
- <input type="text" id="post-search-input" name="s" value="<?php echo attribute_escape(stripslashes($_GET['s'])); ?>" />
+<form class="search-form topmargin" action="" method="get">
+<p class="search-box">
+ <label class="hidden" for="category-search-input"><?php _e('Search Categories'); ?>:</label>
+ <input type="text" class="search-input" id="category-search-input" name="s" value="<?php _admin_search_query(); ?>" />
<input type="submit" value="<?php _e( 'Search Categories' ); ?>" class="button" />
</p>
-
+</form>
<br class="clear" />
+<div id="col-container">
+
+<div id="col-right">
+<div class="col-wrap">
+<form id="posts-filter" action="" method="get">
<div class="tablenav">
<?php
-$pagenum = absint( $_GET['pagenum'] );
+$pagenum = isset( $_GET['pagenum'] ) ? absint( $_GET['pagenum'] ) : 0;
if ( empty($pagenum) )
$pagenum = 1;
-if( !$catsperpage || $catsperpage < 0 )
+if( ! isset( $catsperpage ) || $catsperpage < 0 )
$catsperpage = 20;
$page_links = paginate_links( array(
'base' => add_query_arg( 'pagenum', '%#%' ),
'format' => '',
+ 'prev_text' => __('«'),
+ 'next_text' => __('»'),
'total' => ceil(wp_count_terms('category') / $catsperpage),
'current' => $pagenum
));
echo "<div class='tablenav-pages'>$page_links</div>";
?>
-<div class="alignleft">
-<input type="submit" value="<?php _e('Delete'); ?>" name="deleteit" class="button-secondary delete" />
+<div class="alignleft actions">
+<select name="action">
+<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
+<option value="delete"><?php _e('Delete'); ?></option>
+</select>
+<input type="submit" value="<?php _e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" />
<?php wp_nonce_field('bulk-categories'); ?>
</div>
<br class="clear" />
</div>
-<br class="clear" />
+<div class="clear"></div>
-<table class="widefat">
+<table class="widefat fixed" cellspacing="0">
<thead>
<tr>
- <th scope="col" class="check-column"><input type="checkbox" /></th>
- <th scope="col"><?php _e('Name') ?></th>
- <th scope="col"><?php _e('Description') ?></th>
- <th scope="col" class="num"><?php _e('Posts') ?></th>
+<?php print_column_headers('categories'); ?>
</tr>
</thead>
+
+ <tfoot>
+ <tr>
+<?php print_column_headers('categories', false); ?>
+ </tr>
+ </tfoot>
+
<tbody id="the-list" class="list:cat">
<?php
cat_rows(0, 0, 0, $pagenum, $catsperpage);
?>
</tbody>
</table>
-</form>
<div class="tablenav">
-
<?php
if ( $page_links )
echo "<div class='tablenav-pages'>$page_links</div>";
?>
-<br class="clear" />
+
+<div class="alignleft actions">
+<select name="action2">
+<option value="" selected="selected"><?php _e('Bulk Actions'); ?></option>
+<option value="delete"><?php _e('Delete'); ?></option>
+</select>
+<input type="submit" value="<?php _e('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" />
+<?php wp_nonce_field('bulk-categories'); ?>
</div>
-<br class="clear" />
+<br class="clear" />
</div>
-<?php if ( current_user_can('manage_categories') ) : ?>
-<div class="wrap">
+</form>
+
+<div class="form-wrap">
<p><?php printf(__('<strong>Note:</strong><br />Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category <strong>%s</strong>.'), apply_filters('the_category', get_catname(get_option('default_category')))) ?></p>
<p><?php printf(__('Categories can be selectively converted to tags using the <a href="%s">category to tag converter</a>.'), 'admin.php?import=wp-cat2tag') ?></p>
</div>
-<?php include('edit-category-form.php'); ?>
+</div>
+</div><!-- /col-right -->
+
+<div id="col-left">
+<div class="col-wrap">
+
+<?php if ( current_user_can('manage_categories') ) { ?>
+<?php $category = (object) array(); $category->parent = 0; do_action('add_category_form_pre', $category); ?>
+
+<div class="form-wrap">
+<h3><?php _e('Add Category'); ?></h3>
+<div id="ajax-response"></div>
+<form name="addcat" id="addcat" method="post" action="categories.php" class="add:the-list: validate">
+<input type="hidden" name="action" value="addcat" />
+<?php wp_original_referer_field(true, 'previous'); wp_nonce_field('add-category'); ?>
+
+<div class="form-field form-required">
+ <label for="cat_name"><?php _e('Category Name') ?></label>
+ <input name="cat_name" id="cat_name" type="text" value="" size="40" aria-required="true" />
+ <p><?php _e('The name is used to identify the category almost everywhere, for example under the post or in the category widget.'); ?></p>
+</div>
+
+<div class="form-field">
+ <label for="category_nicename"><?php _e('Category Slug') ?></label>
+ <input name="category_nicename" id="category_nicename" type="text" value="" size="40" />
+ <p><?php _e('The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.'); ?></p>
+</div>
+
+<div class="form-field">
+ <label for="category_parent"><?php _e('Category Parent') ?></label>
+ <?php wp_dropdown_categories(array('hide_empty' => 0, 'name' => 'category_parent', 'orderby' => 'name', 'selected' => $category->parent, 'hierarchical' => true, 'show_option_none' => __('None'))); ?>
+ <p><?php _e('Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.'); ?></p>
+</div>
+
+<div class="form-field">
+ <label for="category_description"><?php _e('Description') ?></label>
+ <textarea name="category_description" id="category_description" rows="5" cols="40"></textarea>
+ <p><?php _e('The description is not prominent by default, however some themes may show it.'); ?></p>
+</div>
+
+<p class="submit"><input type="submit" class="button" name="submit" value="<?php _e('Add Category'); ?>" /></p>
+<?php do_action('edit_category_form', $category); ?>
+</form></div>
-<?php endif; ?>
+<?php } ?>
+
+</div>
+</div><!-- /col-left -->
+
+</div><!-- /col-container -->
+</div><!-- /wrap -->
+
+<script type="text/javascript">
+/* <![CDATA[ */
+(function($){
+ $(document).ready(function(){
+ $('#doaction, #doaction2').click(function(){
+ if ( $('select[name^="action"]').val() == 'delete' ) {
+ var m = '<?php echo js_escape(__("You are about to delete the selected categories.\n 'Cancel' to stop, 'OK' to delete.")); ?>';
+ return showNotice.warn(m);
+ }
+ });
+ });
+})(jQuery);
+/* ]]> */
+</script>
<?php
+inline_edit_term_row('categories');
+
break;
}
<?php
+/**
+ * Comment Management Panel
+ *
+ * @package WordPress
+ * @subpackage Administration
+ */
+
+/** Load WordPress Bootstrap */
require_once('admin.php');
$parent_file = 'edit-comments.php';
if ( isset( $_POST['deletecomment'] ) )
$action = 'deletecomment';
-function comment_footer_die( $msg ) { // $msg is assumed to contain HTML and be sanitized
+/**
+ * Display error message at bottom of comments.
+ *
+ * @param string $msg Error Message. Assumed to contain HTML and be sanitized.
+ */
+function comment_footer_die( $msg ) { //
echo "<div class='wrap'><p>$msg</p></div>";
include('admin-footer.php');
die;
$title = __('Edit Comment');
wp_enqueue_script('comment');
-
require_once('admin-header.php');
$comment_id = absint( $_GET['c'] );
</tr>
<?php } ?>
<tr>
-<th scope="row" valign="top"><?php _e('Comment'); ?></th>
+<th scope="row" valign="top"><?php echo _c('Comment|noun'); ?></th>
<td><?php echo $comment->comment_content; ?></td>
</tr>
</table>
if ( '' != wp_get_referer() && false == $noredir )
wp_redirect( wp_get_referer() );
else
- wp_redirect( admin_url('edit.php?p=' . absint( $comment->comment_post_ID ) . '#comments') );
+ wp_redirect( admin_url('edit-comments.php?p=' . absint( $comment->comment_post_ID ) . '#comments') );
exit();
break;
if ( '' != wp_get_referer() && false == $noredir )
wp_redirect( wp_get_referer() );
else
- wp_redirect( admin_url('edit.php?p=' . absint( $comment->comment_post_ID ) . '#comments') );
+ wp_redirect( admin_url('edit-comments.php?p=' . absint( $comment->comment_post_ID ) . '#comments') );
exit();
break;
edit_comment();
- $location = ( empty( $_POST['referredby'] ) ? "edit.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
+ $location = ( empty( $_POST['referredby'] ) ? "edit-comments.php?p=$comment_post_id" : $_POST['referredby'] ) . '#comment-' . $comment_id;
$location = apply_filters( 'comment_edit_redirect', $location, $comment_id );
wp_redirect( $location );
include('admin-footer.php');
-?>
+?>
\ No newline at end of file
-.post-com-count {
-}
-#adminmenu li a #awaiting-mod, #sidemenu li a #update-plugins {
- background-image: url(../images/comment-stalk-rtl.gif);
- background-position:right bottom;
-}
-#footer {
- background-position:99% 10px;
-}
-#poststuff .closed .togbox, #poststuff .togbox {
- background-image: url(../images/toggle-arrow-rtl.gif) !important;
-}
.bar {
border-right-color: transparent;
border-left-color: #99d;
}
+
.plugins .togl {
border-right-color: transparent;
border-left-color: #ccc;
}
+
+.post-com-count {
+ background-image: url(../images/bubble_bg-rtl.gif);
+}
+.tablenav .tablenav-pages a {
+ background: #eee url('../images/menu-bits-rtl.gif') repeat-x scroll right -379px;
+}
#upload-menu li.current {
border-right-color: transparent;
border-left-color: #448abd;
}
+
+#adminmenu .wp-submenu .current a.current {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat scroll right -289px;
+}
+
+#adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
+}
+
+.folded #adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
+}
+
+#adminmenu li.wp-has-current-submenu .wp-menu-toggle,
+#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
+ background: transparent url(../images/menu-bits-rtl.gif) repeat-x scroll right -207px;
+}
+
+#adminmenu .wp-has-current-submenu ul li a.current {
+ background: url(../images/menu-dark-rtl.gif) top right no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
+#adminmenu .menu-top .current {
+ background: url(../images/menu-bits-rtl.gif) top right repeat-x;
+}
+
+#adminmenu li.wp-has-current-submenu ul li a {
+ background: url(../images/menu-dark-rtl.gif) bottom right no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle, #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat right -207px;
+}
+
+#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
+#adminmenu .wp-menu-open .wp-menu-toggle {
+ background: transparent url(../images/menu-bits-rtl.gif) repeat-x scroll right -109px;
+}
+
+#adminmenu a.wp-has-submenu {
+ background: #f1f1f1 url(../images/menu-bits-rtl.gif) repeat-x scroll right -379px;
+}
+
+#adminmenu .wp-submenu a {
+ background: #FFFFFF url(../images/menu-bits-rtl.gif) no-repeat scroll right -310px;
+}
+
+#adminmenu li.current a,
+#adminmenu .wp-submenu a:hover {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat scroll right -289px;
+}
+
+#adminmenu li.wp-has-current-submenu a.wp-has-submenu {
+ background: #b5b5b5 url(../images/menu-bits-rtl.gif) repeat-x scroll right top;
+}
+
+.meta-box-sortables .postbox:hover .handlediv {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat scroll right -111px;
+}
+html {
+ background-color: #F5FCFD;
+}
+
+.find-box-search {
+ border-color: #dfdfdf;
+ background-color: #f1f1f1;
+}
+
+.find-box {
+ background-color: #f1f1f1;
+}
+
+.find-box-inside {
+ background-color: #fff;
+}
+
a.page-numbers:hover {
border-color: #999;
}
-body, .form-table .pre {
- background-color: #fff;
+body,
+#wpbody,
+.form-table .pre {
color: #333;
}
border-bottom-color: #fff;
}
-div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
+kbd, code {
+ background: #eaeaea;
+}
+
+div#current-widgets,
+#postcustomstuff table,
+#your-profile fieldset,
+#rightnow,
+div.dashboard-widget,
+#dashboard-widgets p.dashboard-widget-links,
+#replyrow #ed_reply_toolbar input {
border-color: #ccc;
}
+#poststuff .inside label.spam {
+ color: red;
+}
+
+#poststuff .inside label.waiting {
+ color: orange;
+}
+
+#poststuff .inside label.approved {
+ color: green;
+}
+
+#postcustomstuff table {
+ border-color: #dfdfdf;
+ background-color: #F9F9F9;
+}
+
+#postcustomstuff thead th {
+ background-color: #F1F1F1;
+}
+
+#postcustomstuff table input,
+#postcustomstuff table textarea {
+ border-color: #dfdfdf;
+ background-color: #fff;
+}
+
+.widefat {
+ border-color: #BBD8E7;
+ background-color: #fff;
+}
+
div.dashboard-widget-error {
background-color: #c43;
}
div.dashboard-widget-notice {
- background-color: #F0F6FB;
+ background-color: #cfe1ef;
}
-div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
+div.dashboard-widget-submit,
+ul.widget-control-list div.widget-control-actions {
border-top-color: #ccc;
}
-input.disabled, textarea.disabled {
- background-color: #ccc;
+div.ui-tabs-panel {
+ border-color: #f1f1f1;
+}
+
+ul#category-tabs li.ui-tabs-selected {
+ background-color: #f1f1f1;
}
-#user_info a:hover, li.widget-list-control-item h4.widget-title a:hover, .submit a, #dashmenu a:hover, #footer a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
+input.disabled,
+textarea.disabled {
+ background-color: #ccc;
+}
+/* #upload-menu li a.upload-tab-link, */
+li.widget-list-control-item h4.widget-title a:hover,
+li.widget-list-control-item h4.widget-title a,
#dragHelper li.widget-list-control-item h4.widget-title a,
-#draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
+#draghelper li.widget-list-control-item h4.widget-title a:visited,
+.login #backtoblog a:hover,
+#plugin-information .action-button a,
+#plugin-information .action-button a:hover,
+#plugin-information .action-button a:visited {
color: #fff;
}
-ul#category-tabs li.ui-tabs-selected, li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form, h3.info-box-title {
- background-color: #cfebf7;
+li.widget-list-control-item div.widget-control {
+ background-color: #fff;
+ border-color: #dfdfdf;
}
-div.ui-tabs-panel {
- border-color: #cfebf7;
+.metabox-holder .postbox h3,
+#poststuff .postbox h3,
+#poststuff .stuffbox h3 {
+ background: #dfdfdf url("../images/blue-grad.png") repeat-x left top;
+ text-shadow: #fff 0 1px 0;
+}
+
+.form-table th,
+.form-wrap label {
+ color: #222;
+ text-shadow: #fff 0 1px 0;
+}
+
+.setting-description, .form-wrap p {
+ color: #666;
}
select {
background-color: #fff;
- border-color: #ddd;
+ border-color: #8CBDD5;
}
strong .post-com-count span {
- background-color: #2583ad;
-}
-
-.button-secondary, #login form .submit input {
- background-color: #8ebddc !important;
+ background-color: #21759b;
}
ul#widget-list li.widget-list-item h4.widget-title {
background-color: #ccf3fa;
}
-.ac_match, .subsubsub a.current, h2 {
+.ac_match, .subsubsub a.current {
color: #000;
}
+.wrap h2 {
+ color: #093E56;
+}
+
.ac_over {
background-color: #f0f0b8;
}
color: #101010;
}
-.alternate {
- background-color: #f9f9f9;
+.alternate, .alt {
+ background-color: #EDFBFC;
}
.available-theme a.screenshot {
background-color: #f1f1f1;
- border-color: #ccc;
+ border-color: #ddd;
}
.bar {
border-right-color: #99d;
}
-.describe {
- border-top-color: #d0d0d0;
+#media-upload {
+ background: #fff;
+}
+#media-upload .slidetoggle {
+ border-top-color: #dfdfdf;
}
.error, #login #login_error {
border-color: #c00 !important;
}
-.form-table input, .form-table textarea {
- border-color: #c6d9e9;
-}
-
-.form-table td, .form-table th {
- border-bottom-color: #fff;
+.form-table input,
+.form-table textarea,
+.search-input,
+.form-field input,
+.form-field textarea,
+.submit {
+ border-color: #8CBDD5;
}
.highlight {
- background-color: #cfebf7;
+ background-color: #e4f2fd;
color: #d54e21;
}
-.howto, .nonessential, #sidemenu, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
- color: #999;
-}
-
-#dashmenu a, #user_info a {
- color: #88b4d7;
+.howto,
+.nonessential,
+#edit-slug-box,
+.form-input-tip,
+.rss-widget span.rss-date,
+.subsubsub {
+ color: #666;
}
.media-item {
- border-bottom-color: #d0d0d0;
+ border-bottom-color: #dfdfdf;
}
-.media-upload-form label.form-help, td.help {
- color: #9a9a9a;
+#wpbody-content #media-items .describe {
+ border-top-color: #dfdfdf;
}
-.page-numbers {
- background-color: #fff;
- border-color: #fff;
+.describe input[type="text"],
+.describe textarea {
+ border-color: #dfdfdf;
}
-.page-numbers.current {
- background-color: #328ab2;
- border-color: #328ab2;
- color: #fff;
+.media-upload-form label.form-help,
+td.help {
+ color: #9a9a9a;
}
.post-com-count {
color: #666;
}
-.submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
- background-color: #e5e5e5;
- color: #07273e;
- border-color: #a3a3a3;
+.button,
+.button-secondary,
+.submit input,
+input[type=button],
+input[type=submit] {
+ border-color: #8CBDD5;
+ color: #093E56;
}
-.button[disabled], .button:disabled {
- background-color: #999;
+.button:hover,
+.button-secondary:hover,
+.submit input:hover,
+input[type=button]:hover,
+input[type=submit]:hover {
+ color: #000;
+ border-color: #21759B;
}
-.tablenav .button-secondary {
- border-color: #5396c5;
+.button,
+.submit input,
+.button-secondary {
+ background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
}
-.submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
- border-color: #535353;
+.button:active,
+.submit input:active,
+.button-secondary:active {
+ background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
}
-.submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover, #media-upload a.del-link:hover {
+.button-primary,
+.submit .button-primary,
+#login form .submit input {
+ border-color: #298cba !important;
+ font-weight: bold;
+ color: #FFF !important;
+ background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
+}
+
+.button-primary:active,
+#login form .submit input:active {
+ background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top !important;
+}
+
+.button[disabled],
+.button:disabled,
+.button-secondary[disabled],
+.button-secondary:disabled,
+a.button.disabled {
+ color: #ccc !important;
+ border-color: #ccc;
+}
+
+.button-primary[disabled],
+.button-primary:disabled {
+ color: #2fa0d5 !important;
+}
+
+a:active,
+a:focus {
color: #d54e21;
}
-#adminmenu a:hover, #sidemenu a:hover, .ui-tabs-nav a:hover {
- color: #97c4d8;
+a:hover,
+#wphead #viewsite a:hover,
+#adminmenu a:hover,
+#adminmenu ul.wp-submenu a:hover,
+#the-comment-list .comment a:hover,
+#rightnow a:hover,
+.subsubsub a:hover,
+.subsubsub a.current:hover,
+#login form .submit input:hover,
+div.dashboard-widget-submit input:hover,
+#media-upload a.del-link:hover,
+.ui-tabs-nav a:hover {
+ color: #d54e21;
}
-.button-secondary:hover, #login form .submit input:hover {
- border-color: #328ab2;
- background-color: #a6d2e5 !important;
+#the-comment-list .comment-item,
+#dashboard-widgets #dashboard_quick_press form p.submit {
+ border-color: #dfdfdf;
}
-.submitbox #autosave .error, ul.view-switch li.current a {
- color: #333;
+.button-primary:hover,
+#login form .submit input:hover {
+ border-color: #13455b !important;
+ color: #EAF2FA !important;
}
-.submitbox #previewview {
- background-color: #5488af;
+#side-info-column #category-tabs .ui-tabs-selected a {
+ color: #333;
}
-.submitbox #previewview a, #rightnow .rbutton {
+#rightnow .rbutton {
background-color: #ebebeb;
color: #264761;
}
color: #ccc;
}
-.submitbox .submitdelete {
- border-bottom-color: #999;
+.submitbox .submitdelete, a.delete {
+ color: #f00;
+ border-bottom-color: #f00;
}
.submitbox .submitdelete:hover,
border-bottom-color: #f00;
}
+#normal-sortables .submitbox .submitdelete:hover {
+ color: #000;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
.tablenav .dots {
- background-color: #cfebf7;
- border-color: #cfebf7;
+ border-color: transparent;
}
-.tablenav .next, .tablenav .prev{
- background-color: #cfebf7;
- border-bottom-color: #cfebf7;
- border-color: #cfebf7;
- color: #2583ad;
+.tablenav .next,
+.tablenav .prev {
+ border-color: transparent;
+ color: #21759b;
}
-.tablenav .next:hover, .tablenav .prev:hover {
- border-bottom-color: #d54e21;
- border-color: #cfebf7;
+.tablenav .next:hover,
+.tablenav .prev:hover {
+ border-color: transparent;
color: #d54e21;
}
-.updated, .login #login_error, .login .message {
+.updated,
+.login #login_error,
+.login .message {
background-color: #ffffe0;
border-color: #e6db55;
}
-.updated a {
- border-bottom-color: #2583ad;
+a.page-numbers {
+ border-bottom-color: #B8D3E2;
}
-.widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
+div#available-widgets-filter,
+ul#widget-list li.widget-list-item,
+.commentlist li {
border-bottom-color: #ccc;
}
-.widefat thead, .thead {
- background-color: #464646;
- color: #d7d7d7;
+.widefat td,
+.widefat th {
+ border-bottom-color: #BBD8E7;
}
-.widget-control-save, .widget-control-remove {
- background-color: #83b4d5;
- color: #246;
+.widefat th {
+ text-shadow: rgba(255,255,255,0.8) 0 1px 0;
}
-.wrap h2 {
- border-bottom-color: #dadada;
- color: #5a5a5a;
+.widefat thead tr th,
+.widefat tfoot tr th,
+h3.dashboard-widget-title,
+h3.dashboard-widget-title span,
+h3.dashboard-widget-title small,
+.find-box-head {
+ color: #333;
+ background: #dfdfdf url(../images/blue-grad.png) repeat-x scroll left top;
}
-#poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, #media-upload a.del-link, #media-upload a.delete, a {
- color: #2e7ca0;
+h3.dashboard-widget-title small a {
+ color: #d7d7d7;
}
-#adminmenu a, .ui-tabs-nav a {
- color: #cfebf6;
+h3.dashboard-widget-title small a:hover {
+ color: #fff;
}
-#submenu a {
- color: #2782af
+#adminmenu a,
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML,
+#the-comment-list p.comment-author strong a,
+#media-upload a.del-link,
+#media-upload a.delete,
+.ui-tabs-nav a, a {
+ color: #1C6280;
}
+
/* Because we don't want visited on these links */
-#adminmenu a.current, #sidemenu a.current, body.press-this .ui-tabs-selected a, body.press-this .ui-tabs-selected a:hover {
+body.press-this .ui-tabs-selected a,
+body.press-this .ui-tabs-selected a:hover {
background-color: #fff;
- border-color: #07273e;
+ border-color: #c6d9e9;
border-bottom-color: #fff;
color: #d54e21;
- font-weight: bold;
}
-#adminmenu li a #awaiting-mod, #sidemenu li a #update-plugins {
- background-image: url(../images/comment-stalk-classic.gif);
-}
-
-#adminmenu li a #awaiting-mod span, #sidemenu li a #update-plugins span {
+#adminmenu #awaiting-mod,
+#adminmenu .update-plugins,
+#sidemenu a .update-plugins,
+#rightnow .reallynow,
+#plugin-information .action-button {
background-color: #d54e21;
color: #fff;
}
-#rightnow .reallynow {
- background-color: #114973;
+#adminmenu li a:hover #awaiting-mod,
+#adminmenu li a:hover .update-plugins,
+#sidemenu li a:hover .update-plugins {
+ background-color: #264761;
color: #fff;
}
+#adminmenu li.current a #awaiting-mod,
+#adminmenu li.current a .update-plugins,
+#adminmenu li.wp-has-current-submenu a .update-plugins,
+#adminmenu li.wp-has-current-submenu a .update-plugins {
+ background-color: #ddd;
+ color: #000;
+ text-shadow: none;
+ -moz-box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+ -khtml-box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+ -webkit-box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+ box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+}
+
+#adminmenu li.current a:hover #awaiting-mod,
+#adminmenu li.current a:hover .update-plugins,
+#adminmenu li.wp-has-current-submenu a:hover #awaiting-mod,
+#adminmenu li.wp-has-current-submenu a:hover .update-plugins {
+ background-color: #264761;
+ color: #fff;
+}
-#adminmenu li a:hover #awaiting-mod span, #sidemenu li a:hover #update-plugins span {
- background-color: #07273E;
+div#media-upload-header {
+ background-color: #f9f9f9;
+ border-bottom-color: #dfdfdf;
}
-#adminmenu, div#media-upload-header {
- background-color: #14568a;
- border-bottom-color: #07273e;
+div#plugin-information-header {
+ background-color: #e4f2fd;
+ border-bottom-color: #c6d9e9;
}
#currenttheme img {
background-color: #f9f9f9;
}
-input.readonly {
+input.readonly, textarea.readonly {
background-color: #ddd;
}
-#dashmenu a.current {
- background-color: #14568a;
- color: #cfebf6;
-}
-
-#dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
+#dragHelper h4.widget-title,
+li.widget-list-control-item h4,
+#dragHelper li.widget-list-control-item h4 {
background-color: #2683ae;
color: #fff;
}
-#ed_toolbar input {
- background: url( ../images/fade-butt.png ) #fff repeat-x 0 -2px;
+#ed_toolbar input,
+#ed_reply_toolbar input {
+ background: #fff url("../images/fade-butt.png") repeat-x 0 -2px;
}
#editable-post-name {
background-color: #fffbcc;
}
-#edit-slug-box strong, .login #nav a {
+#edit-slug-box strong,
+.tablenav .displaying-num,
+#submitted-on {
color: #777;
}
-#edit-slug-buttons a.save {
- background-color: #ebebeb;
+.login #nav a {
+ color: #21759b !important;
+}
+
+.login #nav a:hover {
+ color: #d54e21 !important;
}
-#footer {
- background: url(../images/logo-ghost.png) #464646 no-repeat 20px 10px;
+#footer,
+#footer-upgrade {
+ background: #073447;
color: #999;
}
#media-items {
- border-color: #c0c0c0;
+ border-color: #dfdfdf;
}
#pass-strength-result {
- background-color: #e3e3e3;
- border-color: #000;
+ background-color: #eee;
+ border-color: #ddd !important;
}
#pass-strength-result.bad {
- background-color: #ffeff7;
- border-color: #c69;
+ background-color: #ffb78c;
+ border-color: #ff853c !important;
}
#pass-strength-result.good {
- background-color: #effff4;
- border-color: #66cc87;
+ background-color: #ffec8b;
+ border-color: #fc0 !important;
}
#pass-strength-result.short {
- background-color: #e3e3e3;
+ background-color: #ffa0a0;
+ border-color: #f04040 !important;
}
#pass-strength-result.strong {
- background-color: #59ef86;
- border-color: #319f52;
+ background-color: #c3ff88;
+ border-color: #8dff1c !important;
}
-.checkbox, .side-info, #your-profile #rich_editing {
+.checkbox,
+.side-info,
+#your-profile #rich_editing {
background-color: #fff;
}
-.plugins .active {
- background-color: #BBEEBB;
+.plugins .active,
+.plugins .active th,
+.plugins .active td {
+ background-color: #e7f7d3;
}
-.plugins .togl {
- border-right-color: #ccc;
+#the-comment-list .unapproved,
+#the-comment-list .unapproved th,
+#the-comment-list .unapproved td {
+ background-color: #ffffe0;
}
-#the-comment-list .unapproved {
- background-color: #ffffe0;
+#the-comment-list .approve a {
+ color: #006505;
+}
+
+#the-comment-list .unapprove a {
+ color: #d98500;
+}
+
+#the-comment-list .delete a {
+ color: #bc0b0b;
}
.plugins tr {
background-color: #fff;
}
-#poststuff #editor-toolbar .active {
- background-color: #83b4d5;
- color: #333;
+.metabox-holder .postbox,
+#poststuff .postbox,
+#titlediv,
+#poststuff .postarea,
+#poststuff .stuffbox,
+.postbox input[type="text"],
+.postbox textarea,
+.stuffbox input[type="text"],
+.stuffbox textarea {
+ border-color: #BBD8E7;
}
-#poststuff .closed .togbox {
- background-color: #2583ad;
- background-image: url(../images/toggle-arrow.gif);
+.metabox-holder .postbox,
+#poststuff .postbox {
+ background-color: #FFF;
}
-#poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
- border-color: #ebebeb;
- border-right-color: #ccc;
- border-bottom-color: #ccc;
+.ui-sortable .postbox h3 {
+ color: #093E56;
+}
+
+.ui-sortable .postbox h3:hover {
+ color: #000;
}
-#poststuff .togbox {
- background-color: #b2b2b2;
- background-image: url(../images/toggle-arrow.gif);
+.curtime #timestamp {
+ background-image: url(../images/date-button.gif);
}
#quicktags #ed_link {
color: #448abd;
}
-#sidemenu a {
- background-color: #14568a;
- border-bottom-color: #07273e;
- border-top-color: #14568a;
- color: #cfebf6;
-}
-
-#tagchecklist span a {
+#tagchecklist span a,
+#bulk-titles div a {
background: url(../images/xit.gif) no-repeat;
}
-#tagchecklist span a:hover {
+#tagchecklist span a:hover,
+#bulk-titles div a:hover {
background: url(../images/xit.gif) no-repeat -10px 0;
}
-#the-comment-list .comment a {
- border-bottom-color: #ababab;
- color: #666;
-}
-
#update-nag, .plugin-update {
background-color: #fffeeb;
border-bottom-color: #ccc;
color: #555;
}
-#upload-files a.file-link {
- background-color: #d1e2ef;
+.login #backtoblog a {
+ color: #ccc;
}
-#upload-file-view a img {
- border-bottom-color: #69c;
+#wphead {
+ background-color: #073447;
}
-#upload-menu li #current-tab-nav, #upload-file {
- background-color: #f9fcfe;
+body.login {
+ border-top-color: #093E56;
}
-#upload-menu li span a.page-numbers {
- color: #00019b;
+#wphead h1 a {
+ color: #fff;
}
-#upload-menu li.current {
- border-right-color: #448abd;
- color: #000;
+#login form input {
+ color: #555;
}
-#upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
- background-color: #f9fcfe;
- color: #000;
+#wphead h1 a:hover {
+ text-decoration: underline;
}
-#upload-menu, #upload-menu li {
- border-top-color: #247fab;
+#user_info {
+ color: #999;
}
-#user_info, .login #backtoblog a {
+#user_info a:link, #user_info a:visited, #footer a:link, #footer a:visited {
color: #ccc;
+ text-decoration: none;
}
-#wphead {
- background-color: #14568a;
+#user_info a:hover, #footer a:hover {
+ color: #fff;
+ text-decoration: underline !important;
}
-#wphead, body.login {
- border-top-color: #07273e;
+#user_info a:active, #footer a:active {
+ color: #ccc !important;
}
-#wphead #viewsite a {
- background-color: #5488af;
- color: #cfebf7;
- border-color: #0b3d64;
+div#media-upload-error,
+.file-error,
+abbr.required,
+.widget-control-remove:hover,
+.delete a:hover {
+ color: #f00;
}
-#wphead #viewsite a:hover {
- color: #07273e;
+#media-upload a.delete {
+ color: #888;
}
-#wphead h1, #dashmenu a.current:hover {
- color: #cfebf6;
+/* editors */
+#quicktags {
+ border-color: #dfdfdf;
+ background-color: #dfdfdf;
}
-div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
- color: #f00;
+#ed_toolbar input {
+ border-color: #C3C3C3;
+}
+
+#ed_toolbar input:hover {
+ border-color: #aaa;
+ background: #ddd;
+}
+
+#poststuff .wp_themeSkin .mceStatusbar {
+ border-color: #EDEDED;
+}
+
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML {
+ background-color: #f1f1f1;
+ border-color: #dfdfdf;
+ color: #999;
+}
+
+#poststuff #editor-toolbar .active {
+ border-bottom-color: #e9e9e9;
+ background-color: #e9e9e9;
+ color: #333;
}
/* TinyMCE */
+#post-status-info {
+ background-color: #EDEDED;
+}
+
.wp_themeSkin *,
-.wp_themeSkin a:hover,
-.wp_themeSkin a:link,
-.wp_themeSkin a:visited,
+.wp_themeSkin a:hover,
+.wp_themeSkin a:link,
+.wp_themeSkin a:visited,
.wp_themeSkin a:active {
color: #000;
}
/* Containers */
-.wp_themeSkin table, #wp_editbtns {
- background: #83B4D5;
-}
-
.wp_themeSkin iframe {
background: #fff;
}
/* Layout */
.wp_themeSkin .mceStatusbar {
- color:#000;
- background-color: #eaf3fa;
+ color: #000;
+ background-color: #f5f5f5;
}
/* Button */
-.wp_themeSkin .mceButton {
+.wp_themeSkin .mceButton {
background-color: #e9e8e8;
- border-color: #83B4D5;
+ border-color: #B2B2B2;
}
.wp_themeSkin a.mceButtonEnabled:hover,
-.wp_themeSkin a.mceButtonActive,
+.wp_themeSkin a.mceButtonActive,
.wp_themeSkin a.mceButtonSelected {
- background-color: #d6d8da;
- border-color: #7789ba !important;
+ background-color: #d5d5d5;
+ border-color: #777 !important;
}
.wp_themeSkin .mceButtonDisabled {
- border-color: #83B4D5 !important;
+ border-color: #ccc !important;
}
/* ListBox */
.wp_themeSkin .mceListBox .mceText,
.wp_themeSkin .mceListBox .mceOpen {
- border-color: #83B4D5;
- background-color: #e9e8e8;
+ border-color: #B2B2B2;
+ background-color: #d5d5d5;
}
-.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
+.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
.wp_themeSkin .mceListBoxHover .mceOpen,
.wp_themeSkin .mceListBoxSelected .mceOpen,
.wp_themeSkin .mceListBoxSelected .mceText {
- border-color: #7789ba !important;
- background-color: #d6d8da;
+ border-color: #777 !important;
+ background-color: #d5d5d5;
}
-.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
+.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
.wp_themeSkin .mceListBoxHover .mceText {
- border-color: #7789ba !important;
+ border-color: #777 !important;
}
.wp_themeSkin select.mceListBox {
- border-color: #b3c7e1;
+ border-color: #B2B2B2;
background-color: #fff;
}
/* SplitButton */
-.wp_themeSkin .mceSplitButton a.mceAction,
+.wp_themeSkin .mceSplitButton a.mceAction,
.wp_themeSkin .mceSplitButton a.mceOpen {
- background-color: #e9e8e8;
- border-color: #83B4D5;
+ background-color: #e8e8e8;
+ border-color: #B2B2B2;
}
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
.wp_themeSkin .mceSplitButton a.mceAction:hover {
- background-color: #d6d8da;
- border-color: #7789ba !important;
-}
+ background-color: #d5d5d5;
+ border-color: #777 !important;
+}
.wp_themeSkin .mceSplitButtonActive {
- background-color: #d6d8da;
+ background-color: #B2B2B2;
}
/* ColorSplitButton */
.wp_themeSkin div.mceColorSplitMenu table {
- background-color: #ebeaeb;
- border-color: #808080;
+ background-color: #ebebeb;
+ border-color: #B2B2B2;
}
.wp_themeSkin .mceColorSplitMenu a {
- border-color: #808080;
+ border-color: #B2B2B2;
}
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
}
.wp_themeSkin .mceMenu .mceText {
- color: #000;
+ color: #000;
}
.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
-.wp_themeSkin .mceMenu .mceMenuItemActive, #quicktags {
- background-color: #83B4D5;
+.wp_themeSkin .mceMenu .mceMenuItemActive {
+ background-color: #f5f5f5;
}
.wp_themeSkin td.mceMenuItemSeparator {
background-color: #aaa;
}
.wp_themeSkin .mceMenuItemTitle a {
- background-color: #ccc;
+ background-color: #ccc;
border-bottom-color: #aaa;
}
.wp_themeSkin .mceMenuItemTitle span.mceText {
color: #888;
}
-/* pop-up */
-.clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
- background-color: #cee1ef;
- border-color: #c6d9e9;
+.wp_themeSkin tr.mceFirst td.mceToolbar {
+ background-color: #dfdfdf;
+ border-color: #dfdfdf;
}
-.clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
- background-color: #5488AF;
- border-color: #464646;
+.wp-admin #mceModalBlocker {
+ background: #000;
}
-#editorcontainer {
- border-color: #ccc;
+.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
+ background: #444444;
+ border-left: 1px solid #999;
+ border-top: 1px solid #999;
+ -moz-border-radius: 4px 0 0 0;
+ -webkit-border-top-left-radius: 4px;
+ -khtml-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
}
-#poststuff #titlewrap {
- border-color: #ccc;
+.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
+ background: #444444;
+ border-right: 1px solid #999;
+ border-top: 1px solid #999;
+ border-top-right-radius: 4px;
+ -khtml-border-top-right-radius: 4px;
+ -webkit-border-top-right-radius: 4px;
+ -moz-border-radius: 0 4px 0 0;
+}
+
+.wp-admin .clearlooks2 .mceMiddle .mceLeft {
+ background: #f1f1f1;
+ border-left: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceMiddle .mceRight {
+ background: #f1f1f1;
+ border-right: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom .mceLeft {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+ border-left: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom .mceCenter {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom .mceRight {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+ border-right: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceFocus .mceTop span {
+ color: #e5e5e5;
+}
+/* end TinyMCE */
+
+#editorcontainer,
+#post-status-info,
+#titlediv #title {
+ border-color: #dfdfdf;
+}
+
+#titlediv #title {
+ background-color: #fff;
}
#tTips p#tTips_inside {
color: #333;
}
-/* Diff */
+#timestampdiv input,
+#namediv input,
+#tagsdiv #the-tagcloud {
+ border-color: #ddd;
+}
+
+/* menu */
+#adminmenu * {
+ border-color: #BBD8E7;
+}
+
+#adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
+}
+
+.folded #adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
+}
+
+#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
+#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -207px;
+}
+
+#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
+#adminmenu .wp-menu-open .wp-menu-toggle {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -109px;
+}
+
+#adminmenu a.menu-top {
+ background: #EAF3FA url(../images/menu-bits.gif) repeat-x scroll left -379px;
+}
+
+#adminmenu .wp-submenu a {
+ background: #FFFFFF url(../images/menu-bits.gif) no-repeat scroll 0 -310px;
+}
+
+#adminmenu .wp-has-current-submenu ul li a {
+ background: none;
+}
+
+#adminmenu .wp-has-current-submenu ul li a.current {
+ background: url(../images/menu-dark.gif) top left no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
+#adminmenu .menu-top .current {
+ background: #6d6d6d url(../images/menu-bits.gif) top left repeat-x;
+ border-color: #6d6d6d;
+ color: #fff;
+ text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
+}
+
+#adminmenu li.wp-has-current-submenu .wp-submenu,
+#adminmenu li.wp-has-current-submenu ul li a {
+ border-color: #aaa !important;
+}
+
+#adminmenu li.wp-has-current-submenu ul li a {
+ background: url(../images/menu-dark.gif) bottom left no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu ul {
+ border-bottom-color: #aaa;
+}
+
+#adminmenu li.menu-top .current:hover {
+ border-color: #B5B5B5;
+}
+
+#adminmenu .wp-submenu .current a.current {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll 0 -289px;
+}
+
+#adminmenu .wp-submenu a:hover {
+ background-color: #EAF2FA !important;
+ color: #333 !important;
+}
+
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover {
+ color: #333;
+ background-color: #f5f5f5;
+ background-image: none;
+ border-color: #e3e3e3;
+ text-shadow: rgba(255,255,255,1) 0px 1px 0px;
+}
+
+#adminmenu .wp-submenu ul {
+ background-color: #fff;
+}
+
+.folded #adminmenu li.menu-top,
+#adminmenu .wp-submenu .wp-submenu-head {
+ background-color: #EAF2FA;
+}
+
+.folded #adminmenu li.wp-has-current-submenu,
+.folded #adminmenu li.menu-top.current {
+ background-color: #BBD8E7;
+}
+
+#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
+ background-color: #BBD8E7;
+ border-color: #8CBDD5;
+}
+
+#adminmenu div.wp-submenu {
+ background-color: transparent;
+}
+
+/* menu icons */
+#adminmenu #menu-dashboard div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -61px -33px;
+}
+
+#adminmenu #menu-dashboard:hover div.wp-menu-image,
+#adminmenu #menu-dashboard.wp-has-current-submenu div.wp-menu-image,
+#adminmenu #menu-dashboard.current div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -61px -1px;
+}
+
+#adminmenu #menu-posts div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -272px -33px;
+}
+
+#adminmenu #menu-posts:hover div.wp-menu-image,
+#adminmenu #menu-posts.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -272px -1px;
+}
+
+#adminmenu #menu-media div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -121px -33px;
+}
+
+#adminmenu #menu-media:hover div.wp-menu-image,
+#adminmenu #menu-media.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -121px -1px;
+}
+
+#adminmenu #menu-links div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -91px -33px;
+}
+
+#adminmenu #menu-links:hover div.wp-menu-image,
+#adminmenu #menu-links.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -91px -1px;
+}
+
+#adminmenu #menu-pages div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -151px -33px;
+}
+
+#adminmenu #menu-pages:hover div.wp-menu-image,
+#adminmenu #menu-pages.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -151px -1px;
+}
+
+#adminmenu #menu-comments div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -31px -33px;
+}
+
+#adminmenu #menu-comments:hover div.wp-menu-image,
+#adminmenu #menu-comments.wp-has-current-submenu div.wp-menu-image,
+#adminmenu #menu-comments.current div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -31px -1px;
+}
+
+#adminmenu #menu-appearance div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -1px -33px;
+}
+
+#adminmenu #menu-appearance:hover div.wp-menu-image,
+#adminmenu #menu-appearance.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -1px -1px;
+}
+
+#adminmenu #menu-plugins div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -181px -33px;
+}
+
+#adminmenu #menu-plugins:hover div.wp-menu-image,
+#adminmenu #menu-plugins.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -181px -1px;
+}
+
+#adminmenu #menu-users div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -301px -33px;
+}
+
+#adminmenu #menu-users:hover div.wp-menu-image,
+#adminmenu #menu-users.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -301px -1px;
+}
+
+#adminmenu #menu-tools div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -211px -33px;
+}
+
+#adminmenu #menu-tools:hover div.wp-menu-image,
+#adminmenu #menu-tools.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -211px -1px;
+}
+
+#adminmenu #menu-settings div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -241px -33px;
+}
+
+#adminmenu #menu-settings:hover div.wp-menu-image,
+#adminmenu #menu-settings.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu-vs.png") no-repeat scroll -241px -1px;
+}
+/* end menu */
+
+/* Diff */
table.diff .diff-deletedline {
background-color: #ffdddd;
}
table.diff .diff-addedline ins {
background-color: #99ff99;
}
+
+#att-info {
+ background-color: #E4F2FD;
+}
+
+/* edit image */
+#sidemenu a {
+ background-color: #f9f9f9;
+ border-color: #f9f9f9;
+ border-bottom-color: #dfdfdf;
+}
+
+#sidemenu a.current {
+ background-color: #fff;
+ border-color: #dfdfdf #dfdfdf #fff;
+ color: #D54E21;
+}
+
+
+#screen-options-wrap,
+#contextual-help-wrap {
+ background-color: #f1f1f1;
+ border-color: #dfdfdf;
+}
+
+#screen-meta-links a.show-settings {
+ color: #606060;
+}
+
+#screen-meta-links a.show-settings:hover {
+ color: #000;
+}
+
+#replysubmit {
+ background-color: #f1f1f1;
+ border-top-color: #ddd;
+}
+
+#replyerror {
+ border-color: #ddd;
+ background-color: #f9f9f9;
+}
+
+#edithead,
+#replyhead {
+ background-color: #f1f1f1;
+}
+
+#ed_reply_toolbar {
+ background-color: #e9e9e9;
+}
+
+/* table vim shortcuts */
+.vim-current {
+ background-color: #E4F2FD !important;
+}
+
+/* Install Plugins */
+.star-average,
+.star.star-rating {
+ background-color: #fc0;
+}
+
+div.star.select:hover {
+ background-color: #d00;
+}
+
+#plugin-information .fyi ul {
+ background-color: #eaf3fa;
+}
+
+#plugin-information .fyi h2.mainheader {
+ background-color: #cee1ef;
+}
+
+#plugin-information pre,
+#plugin-information code {
+ background-color: #ededff;
+}
+
+#plugin-information pre {
+ border: 1px solid #ccc;
+}
+
+/* inline editor */
+.inline-edit-row fieldset input[type="text"],
+.inline-edit-row fieldset textarea,
+#bulk-titles,
+#replyrow input {
+ border-color: #ddd;
+}
+
+.inline-editor div.title {
+ background-color: #EAF3FA;
+}
+
+.inline-editor ul.cat-checklist {
+ background-color: #FFFFFF;
+ border-color: #ddd;
+}
+
+.inline-edit-row p.submit {
+ background-color: #f1f1f1;
+}
+
+.inline-editor .categories .catshow,
+.inline-editor .categories .cathide {
+ color: #21759b;
+}
+
+.inline-editor .quick-edit-save {
+ background-color: #f1f1f1;
+}
+
+#replyrow #ed_reply_toolbar input:hover {
+ border-color: #aaa;
+ background: #ddd;
+}
+
+fieldset.inline-edit-col-right .inline-edit-col {
+ border-color: #dfdfdf;
+}
+
+.attention {
+ color: #D54E21;
+}
+
+.meta-box-sortables .postbox:hover .handlediv {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -111px;
+}
+
+#major-publishing-actions {
+ background: #eaf2fa;
+}
+
+.tablenav .tablenav-pages {
+ color: #555;
+}
+
+.tablenav .tablenav-pages a {
+ border-color: #e3e3e3;
+ background: #eee url('../images/menu-bits.gif') repeat-x scroll left -379px;
+}
+
+.tablenav .tablenav-pages a:hover {
+ color: #d54e21;
+ border-color: #d54321;
+}
+
+.tablenav .tablenav-pages a:active {
+ color: #fff !important;
+}
+
+.tablenav .tablenav-pages .current {
+ background: #dfdfdf;
+ border-color: #d3d3d3;
+}
+
+#availablethemes,
+#availablethemes td {
+ border-color: #ddd;
+}
+
+#current-theme img {
+ border-color: #999;
+}
+
+#TB_window #TB_title a.tb-theme-preview-link,
+#TB_window #TB_title a.tb-theme-preview-link:visited {
+ color: #999;
+}
+
+#TB_window #TB_title a.tb-theme-preview-link:hover,
+#TB_window #TB_title a.tb-theme-preview-link:focus {
+ color: #ccc;
+}
+
+.misc-pub-section {
+ border-bottom-color: #eee;
+}
+
+#minor-publishing {
+ border-bottom-color: #ddd;
+}
+
+#post-body .misc-pub-section {
+ border-right-color: #eee;
+}
+
+.post-com-count span {
+ background-color: #bbb;
+}
+
+.form-table .color-palette td {
+ border-color: #fff;
+}
+
+.sortable-placeholder {
+ border-color: #bbb;
+ background-color: #f5f5f5;
+}
+
+#post-body ul#category-tabs li.ui-tabs-selected a {
+ color: #333;
+}
+
+#wp_editimgbtn,
+#wp_delimgbtn,
+#wp_editgallery,
+#wp_delgallery {
+ border-color: #999;
+ background-color: #eee;
+}
+
+#wp_editimgbtn:hover,
+#wp_delimgbtn:hover,
+#wp_editgallery:hover,
+#wp_delgallery:hover {
+ border-color: #555;
+ background-color: #ccc;
+}
+
+#favorite-first {
+ background: #797979 url(../images/fav.png) repeat-x 0 center;
+ border-color: #777 !important;
+ border-bottom-color: #666 !important;
+}
+
+#favorite-inside {
+ border-color: #797979;
+ background-color: #797979;
+}
+
+#favorite-toggle {
+ background: transparent url(../images/fav-arrow.gif) no-repeat 0 -4px;
+}
+
+#favorite-actions a {
+ color: #ddd;
+}
+
+#favorite-actions a:hover {
+ color: #fff;
+}
+
+#favorite-inside a:hover {
+ text-decoration: underline;
+}
+
+#favorite-actions .slide-down {
+ border-bottom-color: #626262;
+}
+
+.submit input,
+.button,
+.button-primary,
+.button-secondary,
+.button-highlighted,
+#postcustomstuff .submit input {
+ text-shadow: rgba(255,255,255,1) 0 1px 0;
+}
+
+.button-primary,
+.submit .button-primary {
+ text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
+}
+
+#screen-meta a.show-settings {
+ background-color: transparent;
+ text-shadow: rgba(255,255,255,0.7) 0 1px 0;
+}
+
+#icon-edit,
+#icon-post {
+ background: transparent url(../images/icons32-vs.png) no-repeat -552px -5px;
+}
+
+#icon-index {
+ background: transparent url(../images/icons32-vs.png) no-repeat -137px -5px;
+}
+
+#icon-upload {
+ background: transparent url(../images/icons32-vs.png) no-repeat -251px -5px;
+}
+
+#icon-link-manager,
+#icon-link,
+#icon-link-category {
+ background: transparent url(../images/icons32-vs.png) no-repeat -190px -5px;
+}
+
+#icon-edit-pages,
+#icon-page {
+ background: transparent url(../images/icons32-vs.png) no-repeat -312px -5px;
+}
+
+#icon-edit-comments {
+ background: transparent url(../images/icons32-vs.png) no-repeat -72px -5px;
+}
+
+#icon-themes {
+ background: transparent url(../images/icons32-vs.png) no-repeat -11px -5px;
+}
+
+#icon-plugins {
+ background: transparent url(../images/icons32-vs.png) no-repeat -370px -5px;
+}
+
+#icon-users,
+#icon-user-edit {
+ background: transparent url(../images/icons32-vs.png) no-repeat -600px -5px;
+}
+
+#icon-tools,
+#icon-admin {
+ background: transparent url(../images/icons32-vs.png) no-repeat -432px -5px;
+}
+
+#icon-options-general {
+ background: transparent url(../images/icons32-vs.png) no-repeat -492px -5px;
+}
+
+.view-switch #view-switch-list {
+ background: transparent url(../images/list-vs.png) no-repeat 0 0;
+}
+
+.view-switch #view-switch-list.current {
+ background: transparent url(../images/list-vs.png) no-repeat -40px 0;
+}
+
+.view-switch #view-switch-excerpt {
+ background: transparent url(../images/list-vs.png) no-repeat -20px 0;
+}
+
+.view-switch #view-switch-excerpt.current {
+ background: transparent url(../images/list-vs.png) no-repeat -60px 0;
+}
+
+#header-logo {
+ background: transparent url(../images/wp-logo.gif) no-repeat scroll center center;
+}
border-right-color: transparent;
border-left-color: #99d;
}
-.post-com-count {
-}
-#adminmenu li a #awaiting-mod, #sidemenu li a #update-plugins {
- background-image: url(../images/comment-stalk-rtl.gif);
- background-position:right bottom;
-}
-#footer {
- background-position:99% 10px;
-}
+
.plugins .togl {
border-right-color: transparent;
border-left-color: #ccc;
}
-#poststuff .closed .togbox, #poststuff .togbox {
- background-image: url(../images/toggle-arrow-rtl.gif);
+
+.post-com-count {
+ background-image: url(../images/bubble_bg-rtl.gif);
+}
+.tablenav .tablenav-pages a {
+ background: #eee url('../images/menu-bits-rtl.gif') repeat-x scroll right -379px;
}
#upload-menu li.current {
- border-right-color:transparent;
+ border-right-color: transparent;
border-left-color: #448abd;
}
+
+#adminmenu .wp-submenu .current a.current {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat scroll right -289px;
+}
+
+#adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
+}
+
+.folded #adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
+}
+
+#adminmenu li.wp-has-current-submenu .wp-menu-toggle,
+#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
+ background: transparent url(../images/menu-bits-rtl.gif) repeat-x scroll right -207px;
+}
+
+#adminmenu .wp-has-current-submenu ul li a.current {
+ background: url(../images/menu-dark-rtl.gif) top right no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
+#adminmenu .menu-top .current {
+ background: url(../images/menu-bits-rtl.gif) top right repeat-x;
+}
+
+#adminmenu li.wp-has-current-submenu ul li a {
+ background: url(../images/menu-dark-rtl.gif) bottom right no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle, #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat right -207px;
+}
+
+#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
+#adminmenu .wp-menu-open .wp-menu-toggle {
+ background: transparent url(../images/menu-bits-rtl.gif) repeat-x scroll right -109px;
+}
+
+#adminmenu a.wp-has-submenu {
+ background: #f1f1f1 url(../images/menu-bits-rtl.gif) repeat-x scroll right -379px;
+}
+
+#adminmenu .wp-submenu a {
+ background: #FFFFFF url(../images/menu-bits-rtl.gif) no-repeat scroll right -310px;
+}
+
+#adminmenu li.current a,
+#adminmenu .wp-submenu a:hover {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat scroll right -289px;
+}
+
+#adminmenu li.wp-has-current-submenu a.wp-has-submenu {
+ background: #b5b5b5 url(../images/menu-bits-rtl.gif) repeat-x scroll right top;
+}
+
+.meta-box-sortables .postbox:hover .handlediv {
+ background: transparent url(../images/menu-bits-rtl.gif) no-repeat scroll right -111px;
+}
+#favorite-toggle {
+ background: transparent url(../images/fav-arrow-rtl.gif) no-repeat right -4px;
+}
+html {
+ background-color: #f9f9f9;
+}
+
+.find-box-search {
+ border-color: #dfdfdf;
+ background-color: #f1f1f1;
+}
+
+.find-box {
+ background-color: #f1f1f1;
+}
+
+.find-box-inside {
+ background-color: #fff;
+}
+
a.page-numbers:hover {
border-color: #999;
}
-body, .form-table .pre {
- background-color: #fff;
+body,
+#wpbody,
+.form-table .pre {
color: #333;
}
border-bottom-color: #fff;
}
-div#current-widgets, #postcustomstuff table, #your-profile fieldset, a.page-numbers, #rightnow, div.dashboard-widget, .widefat {
+kbd, code {
+ background: #eaeaea;
+}
+
+div#current-widgets,
+#postcustomstuff table,
+#your-profile fieldset,
+#rightnow,
+div.dashboard-widget,
+#dashboard-widgets p.dashboard-widget-links,
+#replyrow #ed_reply_toolbar input {
border-color: #ccc;
}
+#poststuff .inside label.spam {
+ color: red;
+}
+
+#poststuff .inside label.waiting {
+ color: orange;
+}
+
+#poststuff .inside label.approved {
+ color: green;
+}
+
+#postcustomstuff table {
+ border-color: #dfdfdf;
+ background-color: #F9F9F9;
+}
+
+#postcustomstuff thead th {
+ background-color: #F1F1F1;
+}
+
+#postcustomstuff table input,
+#postcustomstuff table textarea {
+ border-color: #dfdfdf;
+ background-color: #fff;
+}
+
+.widefat {
+ border-color: #dfdfdf;
+ background-color: #fff;
+}
+
div.dashboard-widget-error {
background-color: #c43;
}
background-color: #cfe1ef;
}
-div.dashboard-widget-submit, ul.widget-control-list div.widget-control-actions {
+div.dashboard-widget-submit,
+ul.widget-control-list div.widget-control-actions {
border-top-color: #ccc;
}
div.ui-tabs-panel {
- border-color: #cee1ef;
+ border-color: #f1f1f1;
}
-input.disabled, textarea.disabled {
- background-color: #ccc;
+ul#category-tabs li.ui-tabs-selected {
+ background-color: #f1f1f1;
}
-#user_info a:hover, li.widget-list-control-item h4.widget-title a:hover, .submit a, #dashmenu a:hover, #footer a, #upload-menu li a.upload-tab-link, li.widget-list-control-item h4.widget-title a,
+input.disabled,
+textarea.disabled {
+ background-color: #ccc;
+}
+/* #upload-menu li a.upload-tab-link, */
+li.widget-list-control-item h4.widget-title a:hover,
+li.widget-list-control-item h4.widget-title a,
#dragHelper li.widget-list-control-item h4.widget-title a,
-#draghelper li.widget-list-control-item h4.widget-title a:visited, .login #backtoblog a:hover {
+#draghelper li.widget-list-control-item h4.widget-title a:visited,
+.login #backtoblog a:hover,
+#plugin-information .action-button a,
+#plugin-information .action-button a:hover,
+#plugin-information .action-button a:visited {
color: #fff;
}
-li.widget-list-control-item, div.nav, .tablenav, .submitbox, h3.dashboard-widget-title, h3.dashboard-widget-title span, h3.dashboard-widget-title small, ul.view-switch li.current, .form-table tr, #poststuff h3, .login form, h3.info-box-title {
- background-color: #eaf3fa;
+li.widget-list-control-item div.widget-control {
+ background-color: #fff;
+ border-color: #dfdfdf;
+}
+
+.metabox-holder .postbox h3,
+#poststuff .postbox h3,
+#poststuff .stuffbox h3 {
+ background: #dfdfdf url("../images/gray-grad.png") repeat-x left top;
+ text-shadow: #fff 0 1px 0;
+}
+
+.form-table th,
+.form-wrap label {
+ color: #222;
+ text-shadow: #fff 0 1px 0;
+}
+
+.setting-description, .form-wrap p {
+ color: #666;
}
select {
}
strong .post-com-count span {
- background-color: #2583ad;
-}
-
-ul#category-tabs li.ui-tabs-selected, .button-secondary, #quicktags, #login form .submit input {
- background-color: #cee1ef !important;
+ background-color: #21759b;
}
ul#widget-list li.widget-list-item h4.widget-title {
background-color: #ccf3fa;
}
-.ac_match, .subsubsub a.current, h2 {
+.ac_match, .subsubsub a.current {
color: #000;
}
+.wrap h2 {
+ color: #464646;
+}
+
.ac_over {
background-color: #f0f0b8;
}
color: #101010;
}
-.alternate {
+.alternate, .alt {
background-color: #f9f9f9;
}
.available-theme a.screenshot {
background-color: #f1f1f1;
- border-color: #ccc;
+ border-color: #ddd;
}
.bar {
border-right-color: #99d;
}
-.describe {
- border-top-color: #d0d0d0;
+#media-upload {
+ background: #fff;
+}
+#media-upload .slidetoggle {
+ border-top-color: #dfdfdf;
}
.error, #login #login_error {
border-color: #c00 !important;
}
-.form-table input, .form-table textarea {
- border-color: #c6d9e9;
-}
-
-.form-table td, .form-table th {
- border-bottom-color: #fff;
+.form-table input,
+.form-table textarea,
+.search-input,
+.form-field input,
+.form-field textarea,
+.submit {
+ border-color: #DFDFDF;
}
.highlight {
color: #d54e21;
}
-#user_info, .howto, .nonessential, #dashmenu a, #sidemenu, #edit-slug-box, .form-input-tip, #dashboard_primary span.rss-date, .subsubsub, #dashboard_secondary div.dashboard-widget-content ul li a cite {
- color: #999;
+.howto,
+.nonessential,
+#edit-slug-box,
+.form-input-tip,
+.rss-widget span.rss-date,
+.subsubsub {
+ color: #666;
}
.media-item {
- border-bottom-color: #d0d0d0;
+ border-bottom-color: #dfdfdf;
}
-.media-upload-form label.form-help, td.help {
- color: #9a9a9a;
+#wpbody-content #media-items .describe {
+ border-top-color: #dfdfdf;
}
-.page-numbers {
- background-color: #fff;
- border-color: #fff;
+.describe input[type="text"],
+.describe textarea {
+ border-color: #dfdfdf;
}
-.page-numbers.current {
- background-color: #328ab2;
- border-color: #328ab2;
- color: #fff;
+.media-upload-form label.form-help,
+td.help {
+ color: #9a9a9a;
}
.post-com-count {
color: #666;
}
-.submit input, .button, .button-secondary, #login form .submit input, div.dashboard-widget-submit input, #edit-slug-buttons a.save {
- background-color: #e5e5e5;
- color: #246;
- border-color: #80b5d0;
+.button,
+.button-secondary,
+.submit input,
+input[type=button],
+input[type=submit] {
+ border-color: #bbb;
+ color: #464646;
+}
+
+.button:hover,
+.button-secondary:hover,
+.submit input:hover,
+input[type=button]:hover,
+input[type=submit]:hover {
+ color: #000;
+ border-color: #666;
+}
+
+.button,
+.submit input,
+.button-secondary {
+ background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
+}
+
+.button:active,
+.submit input:active,
+.button-secondary:active {
+ background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
+}
+
+.button-primary,
+.submit .button-primary,
+#login form .submit input {
+ border-color: #298cba !important;
+ font-weight: bold;
+ color: #FFF !important;
+ background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
+}
+
+.button-primary:active,
+#login form .submit input:active {
+ background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top !important;
}
-.button[disabled], .button:disabled {
- background-color: #999;
+.button[disabled],
+.button:disabled,
+.button-secondary[disabled],
+.button-secondary:disabled,
+a.button.disabled {
+ color: #ccc !important;
+ border-color: #ccc;
}
-.submit input:hover, .button:hover, #edit-slug-buttons a.save:hover {
- border-color: #535353;
+.button-primary[disabled],
+.button-primary:disabled {
+ color: #2fa0d5 !important;
}
-.submit input:hover, .button:hover, .button-secondary:hover, #wphead #viewsite a:hover, #adminmenu a:hover, #sidemenu a:hover, #submenu a.current, #submenu a:hover, .submitbox #previewview a:hover, #the-comment-list .comment a:hover, #rightnow a:hover, a:hover, .subsubsub a:hover, .subsubsub a.current:hover, #login form .submit input:hover, div.dashboard-widget-submit input:hover, #edit-slug-buttons a.save:hover, #media-upload a.delete:hover, #media-upload a.del-link:hover, .ui-tabs-nav a:hover {
+a:active,
+a:focus {
color: #d54e21;
}
-.button-secondary:hover, #login form .submit input:hover {
- border-color: #328ab2;
+a:hover,
+#wphead #viewsite a:hover,
+#adminmenu a:hover,
+#adminmenu ul.wp-submenu a:hover,
+#the-comment-list .comment a:hover,
+#rightnow a:hover,
+.subsubsub a:hover,
+.subsubsub a.current:hover,
+#login form .submit input:hover,
+div.dashboard-widget-submit input:hover,
+#media-upload a.del-link:hover,
+.ui-tabs-nav a:hover {
+ color: #d54e21;
}
-.submitbox #autosave .error, ul.view-switch li.current a {
- color: #333;
+#the-comment-list .comment-item,
+#dashboard-widgets #dashboard_quick_press form p.submit {
+ border-color: #dfdfdf;
}
-.submitbox #previewview {
- background-color: #2683ae;
+.button-primary:hover,
+#login form .submit input:hover {
+ border-color: #13455b !important;
+ color: #EAF2FA !important;
+}
+
+#side-info-column #category-tabs .ui-tabs-selected a {
+ color: #333;
}
-.submitbox #previewview a, #rightnow .rbutton {
+#rightnow .rbutton {
background-color: #ebebeb;
color: #264761;
}
color: #ccc;
}
-.submitbox .submitdelete {
- border-bottom-color: #999;
+.submitbox .submitdelete, a.delete {
+ color: #f00;
+ border-bottom-color: #f00;
}
.submitbox .submitdelete:hover,
border-bottom-color: #f00;
}
+#normal-sortables .submitbox .submitdelete:hover {
+ color: #000;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
.tablenav .dots {
- background-color: #e4f2fd;
- border-color: #e4f2fd;
+ border-color: transparent;
}
-.tablenav .next, .tablenav .prev{
- background-color: #e4f2fd;
- border-bottom-color: #2583ad;
- border-color: #e4f2fd;
- color: #2583ad;
+.tablenav .next,
+.tablenav .prev {
+ border-color: transparent;
+ color: #21759b;
}
-.tablenav .next:hover, .tablenav .prev:hover {
- border-bottom-color: #d54e21;
- border-color: #e4f2fd;
+.tablenav .next:hover,
+.tablenav .prev:hover {
+ border-color: transparent;
color: #d54e21;
}
-.updated, .login #login_error, .login .message {
+.updated,
+.login #login_error,
+.login .message {
background-color: #ffffe0;
border-color: #e6db55;
}
-.updated a {
- border-bottom-color: #2583ad;
+a.page-numbers {
+ border-bottom-color: #B8D3E2;
}
-.widefat td, .widefat th, div#available-widgets-filter, ul#widget-list li.widget-list-item, .commentlist li {
+div#available-widgets-filter,
+ul#widget-list li.widget-list-item,
+.commentlist li {
border-bottom-color: #ccc;
}
-.widefat thead, .thead {
- background-color: #464646;
- color: #d7d7d7;
+.widefat td,
+.widefat th {
+ border-color: #dfdfdf;
}
-.widget-control-save, .widget-control-remove {
- background-color: #cee1ef;
- color: #246;
+.widefat th {
+ text-shadow: rgba(255,255,255,0.8) 0 1px 0;
}
-.wrap h2 {
- border-bottom-color: #dadada;
- color: #666;
+.widefat thead tr th,
+.widefat tfoot tr th,
+h3.dashboard-widget-title,
+h3.dashboard-widget-title span,
+h3.dashboard-widget-title small,
+.find-box-head {
+ color: #333;
+ background: #dfdfdf url(../images/gray-grad.png) repeat-x scroll left top;
}
-#adminmenu a, #submenu a, #poststuff #edButtonPreview, #poststuff #edButtonHTML, #the-comment-list p.comment-author strong a, #media-upload a.del-link, #media-upload a.delete, .ui-tabs-nav a, a {
- color: #2583ad;
+h3.dashboard-widget-title small a {
+ color: #d7d7d7;
+}
+
+h3.dashboard-widget-title small a:hover {
+ color: #fff;
+}
+
+#adminmenu a,
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML,
+#the-comment-list p.comment-author strong a,
+#media-upload a.del-link,
+#media-upload a.delete,
+.ui-tabs-nav a, a {
+ color: #21759b;
}
/* Because we don't want visited on these links */
-#adminmenu a.current, #sidemenu a.current, body.press-this .ui-tabs-selected a, body.press-this .ui-tabs-selected a:hover {
+body.press-this .ui-tabs-selected a,
+body.press-this .ui-tabs-selected a:hover {
background-color: #fff;
border-color: #c6d9e9;
border-bottom-color: #fff;
color: #d54e21;
}
-#adminmenu li a #awaiting-mod, #sidemenu li a #update-plugins {
- background-image: url(../images/comment-stalk-fresh.gif);
+#adminmenu #awaiting-mod,
+#adminmenu .update-plugins,
+#sidemenu a .update-plugins,
+#rightnow .reallynow,
+#plugin-information .action-button {
+ background-color: #d54e21;
+ color: #fff;
}
-#adminmenu li a #awaiting-mod span, #sidemenu li a #update-plugins span, #rightnow .reallynow {
- background-color: #d54e21;
+#adminmenu li a:hover #awaiting-mod,
+#adminmenu li a:hover .update-plugins,
+#sidemenu li a:hover .update-plugins {
+ background-color: #264761;
color: #fff;
}
-#adminmenu li a:hover #awaiting-mod span, #sidemenu li a:hover #update-plugins span {
+#adminmenu li.current a #awaiting-mod,
+#adminmenu li.current a .update-plugins,
+#adminmenu li.wp-has-current-submenu a .update-plugins,
+#adminmenu li.wp-has-current-submenu a .update-plugins {
+ background-color: #ddd;
+ color: #000;
+ text-shadow: none;
+ -moz-box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+ -khtml-box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+ -webkit-box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+ box-shadow: rgba(0,0,0,0.2) 0px -1px 0px;
+}
+
+#adminmenu li.current a:hover #awaiting-mod,
+#adminmenu li.current a:hover .update-plugins,
+#adminmenu li.wp-has-current-submenu a:hover #awaiting-mod,
+#adminmenu li.wp-has-current-submenu a:hover .update-plugins {
background-color: #264761;
+ color: #fff;
}
-#adminmenu, div#media-upload-header {
+div#media-upload-header {
+ background-color: #f9f9f9;
+ border-bottom-color: #dfdfdf;
+}
+
+div#plugin-information-header {
background-color: #e4f2fd;
border-bottom-color: #c6d9e9;
}
background-color: #f9f9f9;
}
-input.readonly {
+input.readonly, textarea.readonly {
background-color: #ddd;
}
-#dashmenu a.current {
- background-color: #e4f2fd;
- color: #555;
-}
-
-#dragHelper h4.widget-title, li.widget-list-control-item h4, #dragHelper li.widget-list-control-item h4 {
+#dragHelper h4.widget-title,
+li.widget-list-control-item h4,
+#dragHelper li.widget-list-control-item h4 {
background-color: #2683ae;
color: #fff;
}
-#ed_toolbar input {
- background: url( ../images/fade-butt.png ) #fff repeat-x 0 -2px;
+#ed_toolbar input,
+#ed_reply_toolbar input {
+ background: #fff url("../images/fade-butt.png") repeat-x 0 -2px;
}
#editable-post-name {
background-color: #fffbcc;
}
-#edit-slug-box strong, .login #nav a {
+#edit-slug-box strong,
+.tablenav .displaying-num,
+#submitted-on {
color: #777;
}
-#footer {
- background: url(../images/logo-ghost.png) #464646 no-repeat 20px 10px;
+.login #nav a {
+ color: #21759b !important;
+}
+
+.login #nav a:hover {
+ color: #d54e21 !important;
+}
+
+#footer,
+#footer-upgrade {
+ background: #464646;
color: #999;
}
#media-items {
- border-color: #c0c0c0;
+ border-color: #dfdfdf;
}
#pass-strength-result {
- background-color: #e3e3e3;
- border-color: #000;
+ background-color: #eee;
+ border-color: #ddd !important;
}
#pass-strength-result.bad {
- background-color: #ffeff7;
- border-color: #c69;
+ background-color: #ffb78c;
+ border-color: #ff853c !important;
}
#pass-strength-result.good {
- background-color: #effff4;
- border-color: #66cc87;
+ background-color: #ffec8b;
+ border-color: #fc0 !important;
}
#pass-strength-result.short {
- background-color: #e3e3e3;
+ background-color: #ffa0a0;
+ border-color: #f04040 !important;
}
#pass-strength-result.strong {
- background-color: #59ef86;
- border-color: #319f52;
+ background-color: #c3ff88;
+ border-color: #8dff1c !important;
}
-.checkbox, .side-info, #your-profile #rich_editing {
+.checkbox,
+.side-info,
+#your-profile #rich_editing {
background-color: #fff;
}
-.plugins .active {
+.plugins .active,
+.plugins .active th,
+.plugins .active td {
background-color: #e7f7d3;
}
-.plugins .togl {
- border-right-color: #ccc;
+#the-comment-list .unapproved,
+#the-comment-list .unapproved th,
+#the-comment-list .unapproved td {
+ background-color: #ffffe0;
}
-#the-comment-list .unapproved {
- background-color: #ffffe0;
+#the-comment-list .approve a {
+ color: #006505;
+}
+
+#the-comment-list .unapprove a {
+ color: #d98500;
+}
+
+#the-comment-list .delete a {
+ color: #bc0b0b;
}
.plugins tr {
background-color: #fff;
}
-#poststuff #editor-toolbar .active {
- background-color: #cee1ef;
- color: #333;
+.metabox-holder .postbox,
+#poststuff .postbox,
+#titlediv,
+#poststuff .postarea,
+#poststuff .stuffbox,
+.postbox input[type="text"],
+.postbox textarea,
+.stuffbox input[type="text"],
+.stuffbox textarea {
+ border-color: #dfdfdf;
}
-#poststuff .closed .togbox {
- background-color: #2583ad;
- background-image: url(../images/toggle-arrow.gif);
+.metabox-holder .postbox,
+#poststuff .postbox {
+ background-color: #FFF;
}
-#poststuff .postbox, #titlediv, #poststuff .postarea, #poststuff .stuffbox {
- border-color: #ebebeb;
- border-right-color: #ccc;
- border-bottom-color: #ccc;
+.ui-sortable .postbox h3 {
+ color: #464646;
}
-#poststuff .togbox {
- background-color: #b2b2b2;
- background-image: url(../images/toggle-arrow.gif);
+.ui-sortable .postbox h3:hover {
+ color: #000;
+}
+
+.curtime #timestamp {
+ background-image: url(../images/date-button.gif);
}
#quicktags #ed_link {
color: #448abd;
}
-#sidemenu a {
- background-color: #e4f2fd;
- border-bottom-color: #c6d9e9;
- border-top-color: #e4f2fd;
-}
-
-#tagchecklist span a {
+#tagchecklist span a,
+#bulk-titles div a {
background: url(../images/xit.gif) no-repeat;
}
-#tagchecklist span a:hover {
+#tagchecklist span a:hover,
+#bulk-titles div a:hover {
background: url(../images/xit.gif) no-repeat -10px 0;
}
-#the-comment-list .comment a {
- border-bottom-color: #ababab;
- color: #666;
-}
-
#update-nag, .plugin-update {
background-color: #fffeeb;
border-bottom-color: #ccc;
color: #555;
}
-#upload-files a.file-link {
- background-color: #d1e2ef;
+.login #backtoblog a {
+ color: #ccc;
}
-#upload-file-view a img {
- border-bottom-color: #69c;
+#wphead {
+ background-color: #464646;
}
-#upload-menu li #current-tab-nav, #upload-file {
- background-color: #f9fcfe;
+body.login {
+ border-top-color: #464646;
}
-#upload-menu li span a.page-numbers {
- color: #00019b;
+#wphead h1 a {
+ color: #fff;
}
-#upload-menu li.current {
- border-right-color: #448abd;
- color: #000;
+#login form input {
+ color: #555;
}
-#upload-menu li.current a.upload-tab-link, #upload-menu li a:hover {
- background-color: #f9fcfe;
- color: #000;
+#wphead h1 a:hover {
+ text-decoration: underline;
}
-#upload-menu, #upload-menu li {
- border-top-color: #247fab;
+#user_info {
+ color: #999;
}
-.login #backtoblog a, .curtime, #user_info a {
+#user_info a:link, #user_info a:visited, #footer a:link, #footer a:visited {
color: #ccc;
+ text-decoration: none;
}
-#wphead {
- background-color: #e4f2fd;
+#user_info a:hover, #footer a:hover {
+ color: #fff;
+ text-decoration: underline !important;
}
-#wphead, body.login {
- border-top-color: #464646;
+#user_info a:active, #footer a:active {
+ color: #ccc !important;
}
-#wphead #viewsite a {
- background-color: #c6d9e9;
- color: #246;
- border-color: #80b5d0;
+div#media-upload-error,
+.file-error,
+abbr.required,
+.widget-control-remove:hover,
+.delete a:hover {
+ color: #f00;
}
-#wphead #viewsite a:hover {
- border-color: #328ab2;
+#media-upload a.delete {
+ color: #888;
}
-#wphead h1, #dashmenu a.current:hover, #login form input {
- color: #555;
+/* editors */
+#quicktags {
+ border-color: #dfdfdf;
+ background-color: #dfdfdf;
}
-div#media-upload-error, .file-error, abbr.required, .widget-control-remove:hover, .delete:hover {
- color: #f00;
+#ed_toolbar input {
+ border-color: #C3C3C3;
}
-#media-upload a.delete {
- color: #888;
+#ed_toolbar input:hover {
+ border-color: #aaa;
+ background: #ddd;
+}
+
+#poststuff .wp_themeSkin .mceStatusbar {
+ border-color: #EDEDED;
+}
+
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML {
+ background-color: #f1f1f1;
+ border-color: #dfdfdf;
+ color: #999;
+}
+
+#poststuff #editor-toolbar .active {
+ border-bottom-color: #e9e9e9;
+ background-color: #e9e9e9;
+ color: #333;
}
/* TinyMCE */
+#post-status-info {
+ background-color: #EDEDED;
+}
+
.wp_themeSkin *,
-.wp_themeSkin a:hover,
-.wp_themeSkin a:link,
-.wp_themeSkin a:visited,
+.wp_themeSkin a:hover,
+.wp_themeSkin a:link,
+.wp_themeSkin a:visited,
.wp_themeSkin a:active {
color: #000;
}
/* Containers */
-.wp_themeSkin table, #wp_editbtns {
- background: #cee1ef;
-}
-
.wp_themeSkin iframe {
background: #fff;
}
/* Layout */
.wp_themeSkin .mceStatusbar {
- color:#000;
- background-color: #eaf3fa;
+ color: #000;
+ background-color: #f5f5f5;
}
/* Button */
-.wp_themeSkin .mceButton {
+.wp_themeSkin .mceButton {
background-color: #e9e8e8;
- border-color: #abc0fb;
+ border-color: #B2B2B2;
}
.wp_themeSkin a.mceButtonEnabled:hover,
-.wp_themeSkin a.mceButtonActive,
+.wp_themeSkin a.mceButtonActive,
.wp_themeSkin a.mceButtonSelected {
- background-color: #d6d8da;
- border-color: #7789ba !important;
+ background-color: #d5d5d5;
+ border-color: #777 !important;
}
.wp_themeSkin .mceButtonDisabled {
- border-color: #bdd !important;
+ border-color: #ccc !important;
}
/* ListBox */
.wp_themeSkin .mceListBox .mceText,
.wp_themeSkin .mceListBox .mceOpen {
- border-color: #abc0fb;
- background-color: #e9e8e8;
+ border-color: #B2B2B2;
+ background-color: #d5d5d5;
}
-.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
+.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
.wp_themeSkin .mceListBoxHover .mceOpen,
.wp_themeSkin .mceListBoxSelected .mceOpen,
.wp_themeSkin .mceListBoxSelected .mceText {
- border-color: #7789ba !important;
- background-color: #d6d8da;
+ border-color: #777 !important;
+ background-color: #d5d5d5;
}
-.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
+.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
.wp_themeSkin .mceListBoxHover .mceText {
- border-color: #7789ba !important;
+ border-color: #777 !important;
}
.wp_themeSkin select.mceListBox {
- border-color: #b3c7e1;
+ border-color: #B2B2B2;
background-color: #fff;
}
/* SplitButton */
-.wp_themeSkin .mceSplitButton a.mceAction,
+.wp_themeSkin .mceSplitButton a.mceAction,
.wp_themeSkin .mceSplitButton a.mceOpen {
- background-color: #e9e8e8;
- border-color: #abc0fb;
+ background-color: #e8e8e8;
+ border-color: #B2B2B2;
}
.wp_themeSkin .mceSplitButton a.mceOpen:hover,
.wp_themeSkin .mceSplitButtonSelected a.mceOpen,
.wp_themeSkin table.mceSplitButtonEnabled:hover a.mceAction,
.wp_themeSkin .mceSplitButton a.mceAction:hover {
- background-color: #d6d8da;
- border-color: #7789ba !important;
-}
+ background-color: #d5d5d5;
+ border-color: #777 !important;
+}
.wp_themeSkin .mceSplitButtonActive {
- background-color: #d6d8da;
+ background-color: #B2B2B2;
}
/* ColorSplitButton */
.wp_themeSkin div.mceColorSplitMenu table {
- background-color: #ebeaeb;
- border-color: #808080;
+ background-color: #ebebeb;
+ border-color: #B2B2B2;
}
.wp_themeSkin .mceColorSplitMenu a {
- border-color: #808080;
+ border-color: #B2B2B2;
}
.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
}
.wp_themeSkin .mceMenu .mceText {
- color: #000;
+ color: #000;
}
.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
.wp_themeSkin .mceMenu .mceMenuItemActive {
- background-color: #CEE1EF;
+ background-color: #f5f5f5;
}
.wp_themeSkin td.mceMenuItemSeparator {
background-color: #aaa;
}
.wp_themeSkin .mceMenuItemTitle a {
- background-color: #ccc;
+ background-color: #ccc;
border-bottom-color: #aaa;
}
.wp_themeSkin .mceMenuItemTitle span.mceText {
color: #888;
}
-/* pop-up */
-.clearlooks2 .mceTop .mceLeft, .clearlooks2 .mceTop .mceRight {
- background-color: #cee1ef;
- border-color: #c6d9e9;
+.wp_themeSkin tr.mceFirst td.mceToolbar {
+ background-color: #dfdfdf;
+ border-color: #dfdfdf;
}
-.clearlooks2 .mceFocus .mceTop .mceLeft, .clearlooks2 .mceFocus .mceTop .mceRight {
- background-color: #2683ae;
- border-color: #464646;
+.wp-admin #mceModalBlocker {
+ background: #000;
}
-#editorcontainer {
- border-color: #ccc;
+.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
+ background: #444444;
+ border-left: 1px solid #999;
+ border-top: 1px solid #999;
+ -moz-border-radius: 4px 0 0 0;
+ -webkit-border-top-left-radius: 4px;
+ -khtml-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
}
-#poststuff #titlewrap {
- border-color: #ccc;
+.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
+ background: #444444;
+ border-right: 1px solid #999;
+ border-top: 1px solid #999;
+ border-top-right-radius: 4px;
+ -khtml-border-top-right-radius: 4px;
+ -webkit-border-top-right-radius: 4px;
+ -moz-border-radius: 0 4px 0 0;
}
-.curtime {
- color: #666;
+.wp-admin .clearlooks2 .mceMiddle .mceLeft {
+ background: #f1f1f1;
+ border-left: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceMiddle .mceRight {
+ background: #f1f1f1;
+ border-right: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom .mceLeft {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+ border-left: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom .mceCenter {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceBottom .mceRight {
+ background: #f1f1f1;
+ border-bottom: 1px solid #999;
+ border-right: 1px solid #999;
+}
+
+.wp-admin .clearlooks2 .mceFocus .mceTop span {
+ color: #e5e5e5;
+}
+/* end TinyMCE */
+
+#editorcontainer,
+#post-status-info,
+#titlediv #title {
+ border-color: #dfdfdf;
+}
+
+#titlediv #title {
+ background-color: #fff;
}
#tTips p#tTips_inside {
color: #333;
}
-/* Diff */
+#timestampdiv input,
+#namediv input,
+#tagsdiv #the-tagcloud {
+ border-color: #ddd;
+}
+
+/* menu */
+#adminmenu * {
+ border-color: #e3e3e3;
+}
+
+#adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll left 5px;
+}
+
+.folded #adminmenu li.wp-menu-separator {
+ background: transparent url(../images/menu-arrows.gif) no-repeat scroll right -34px;
+}
+
+#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
+#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -207px;
+}
+
+#adminmenu .wp-has-submenu:hover .wp-menu-toggle,
+#adminmenu .wp-menu-open .wp-menu-toggle {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -109px;
+}
+
+#adminmenu a.menu-top {
+ background: #f1f1f1 url(../images/menu-bits.gif) repeat-x scroll left -379px;
+}
+
+#adminmenu .wp-submenu a {
+ background: #FFFFFF url(../images/menu-bits.gif) no-repeat scroll 0 -310px;
+}
+
+#adminmenu .wp-has-current-submenu ul li a {
+ background: none;
+}
+
+#adminmenu .wp-has-current-submenu ul li a.current {
+ background: url(../images/menu-dark.gif) top left no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
+#adminmenu .menu-top .current {
+ background: #6d6d6d url(../images/menu-bits.gif) top left repeat-x;
+ border-color: #6d6d6d;
+ color: #fff;
+ text-shadow: rgba(0,0,0,0.4) 0px -1px 0px;
+}
+
+#adminmenu li.wp-has-current-submenu .wp-submenu,
+#adminmenu li.wp-has-current-submenu ul li a {
+ border-color: #aaa !important;
+}
+
+#adminmenu li.wp-has-current-submenu ul li a {
+ background: url(../images/menu-dark.gif) bottom left no-repeat !important;
+}
+
+#adminmenu li.wp-has-current-submenu ul {
+ border-bottom-color: #aaa;
+}
+
+#adminmenu li.menu-top .current:hover {
+ border-color: #B5B5B5;
+}
+
+#adminmenu .wp-submenu .current a.current {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll 0 -289px;
+}
+
+#adminmenu .wp-submenu a:hover {
+ background-color: #EAF2FA !important;
+ color: #333 !important;
+}
+
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover {
+ color: #333;
+ background-color: #f5f5f5;
+ background-image: none;
+ border-color: #e3e3e3;
+ text-shadow: rgba(255,255,255,1) 0px 1px 0px;
+}
+
+#adminmenu .wp-submenu ul {
+ background-color: #fff;
+}
+
+.folded #adminmenu li.menu-top,
+#adminmenu .wp-submenu .wp-submenu-head {
+ background-color: #F1F1F1;
+}
+
+.folded #adminmenu li.wp-has-current-submenu,
+.folded #adminmenu li.menu-top.current {
+ background-color: #e6e6e6;
+}
+
+#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
+ background-color: #EAEAEA;
+ border-color: #aaa;
+}
+
+#adminmenu div.wp-submenu {
+ background-color: transparent;
+}
+
+/* menu icons */
+#adminmenu #menu-dashboard div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -61px -33px;
+}
+
+#adminmenu #menu-dashboard:hover div.wp-menu-image,
+#adminmenu #menu-dashboard.wp-has-current-submenu div.wp-menu-image,
+#adminmenu #menu-dashboard.current div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -61px -1px;
+}
+
+#adminmenu #menu-posts div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -272px -33px;
+}
+
+#adminmenu #menu-posts:hover div.wp-menu-image,
+#adminmenu #menu-posts.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -272px -1px;
+}
+
+#adminmenu #menu-media div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -121px -33px;
+}
+
+#adminmenu #menu-media:hover div.wp-menu-image,
+#adminmenu #menu-media.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -121px -1px;
+}
+
+#adminmenu #menu-links div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -91px -33px;
+}
+
+#adminmenu #menu-links:hover div.wp-menu-image,
+#adminmenu #menu-links.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -91px -1px;
+}
+
+#adminmenu #menu-pages div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -151px -33px;
+}
+
+#adminmenu #menu-pages:hover div.wp-menu-image,
+#adminmenu #menu-pages.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -151px -1px;
+}
+
+#adminmenu #menu-comments div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -31px -33px;
+}
+
+#adminmenu #menu-comments:hover div.wp-menu-image,
+#adminmenu #menu-comments.wp-has-current-submenu div.wp-menu-image,
+#adminmenu #menu-comments.current div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -31px -1px;
+}
+
+#adminmenu #menu-appearance div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -1px -33px;
+}
+
+#adminmenu #menu-appearance:hover div.wp-menu-image,
+#adminmenu #menu-appearance.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -1px -1px;
+}
+
+#adminmenu #menu-plugins div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -181px -33px;
+}
+
+#adminmenu #menu-plugins:hover div.wp-menu-image,
+#adminmenu #menu-plugins.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -181px -1px;
+}
+
+#adminmenu #menu-users div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -301px -33px;
+}
+
+#adminmenu #menu-users:hover div.wp-menu-image,
+#adminmenu #menu-users.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -301px -1px;
+}
+
+#adminmenu #menu-tools div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -211px -33px;
+}
+
+#adminmenu #menu-tools:hover div.wp-menu-image,
+#adminmenu #menu-tools.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -211px -1px;
+}
+
+#adminmenu #menu-settings div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -241px -33px;
+}
+
+#adminmenu #menu-settings:hover div.wp-menu-image,
+#adminmenu #menu-settings.wp-has-current-submenu div.wp-menu-image {
+ background: transparent url("../images/menu.png") no-repeat scroll -241px -1px;
+}
+/* end menu */
+
+/* Diff */
table.diff .diff-deletedline {
background-color: #ffdddd;
}
table.diff .diff-addedline ins {
background-color: #99ff99;
}
+
+#att-info {
+ background-color: #E4F2FD;
+}
+
+/* edit image */
+#sidemenu a {
+ background-color: #f9f9f9;
+ border-color: #f9f9f9;
+ border-bottom-color: #dfdfdf;
+}
+
+#sidemenu a.current {
+ background-color: #fff;
+ border-color: #dfdfdf #dfdfdf #fff;
+ color: #D54E21;
+}
+
+
+#screen-options-wrap,
+#contextual-help-wrap {
+ background-color: #f1f1f1;
+ border-color: #dfdfdf;
+}
+
+#screen-meta-links a.show-settings {
+ color: #606060;
+}
+
+#screen-meta-links a.show-settings:hover {
+ color: #000;
+}
+
+#replysubmit {
+ background-color: #f1f1f1;
+ border-top-color: #ddd;
+}
+
+#replyerror {
+ border-color: #ddd;
+ background-color: #f9f9f9;
+}
+
+#edithead,
+#replyhead {
+ background-color: #f1f1f1;
+}
+
+#ed_reply_toolbar {
+ background-color: #e9e9e9;
+}
+
+/* table vim shortcuts */
+.vim-current {
+ background-color: #E4F2FD !important;
+}
+
+/* Install Plugins */
+.star-average,
+.star.star-rating {
+ background-color: #fc0;
+}
+
+div.star.select:hover {
+ background-color: #d00;
+}
+
+#plugin-information .fyi ul {
+ background-color: #eaf3fa;
+}
+
+#plugin-information .fyi h2.mainheader {
+ background-color: #cee1ef;
+}
+
+#plugin-information pre,
+#plugin-information code {
+ background-color: #ededff;
+}
+
+#plugin-information pre {
+ border: 1px solid #ccc;
+}
+
+/* inline editor */
+.inline-edit-row fieldset input[type="text"],
+.inline-edit-row fieldset textarea,
+#bulk-titles,
+#replyrow input {
+ border-color: #ddd;
+}
+
+.inline-editor div.title {
+ background-color: #EAF3FA;
+}
+
+.inline-editor ul.cat-checklist {
+ background-color: #FFFFFF;
+ border-color: #ddd;
+}
+
+.inline-edit-row p.submit {
+ background-color: #f1f1f1;
+}
+
+.inline-editor .categories .catshow,
+.inline-editor .categories .cathide {
+ color: #21759b;
+}
+
+.inline-editor .quick-edit-save {
+ background-color: #f1f1f1;
+}
+
+#replyrow #ed_reply_toolbar input:hover {
+ border-color: #aaa;
+ background: #ddd;
+}
+
+fieldset.inline-edit-col-right .inline-edit-col {
+ border-color: #dfdfdf;
+}
+
+.attention {
+ color: #D54E21;
+}
+
+.meta-box-sortables .postbox:hover .handlediv {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -111px;
+}
+
+#major-publishing-actions {
+ background: #eaf2fa;
+}
+
+.tablenav .tablenav-pages {
+ color: #555;
+}
+
+.tablenav .tablenav-pages a {
+ border-color: #e3e3e3;
+ background: #eee url('../images/menu-bits.gif') repeat-x scroll left -379px;
+}
+
+.tablenav .tablenav-pages a:hover {
+ color: #d54e21;
+ border-color: #d54321;
+}
+
+.tablenav .tablenav-pages a:active {
+ color: #fff !important;
+}
+
+.tablenav .tablenav-pages .current {
+ background: #dfdfdf;
+ border-color: #d3d3d3;
+}
+
+#availablethemes,
+#availablethemes td {
+ border-color: #ddd;
+}
+
+#current-theme img {
+ border-color: #999;
+}
+
+#TB_window #TB_title a.tb-theme-preview-link,
+#TB_window #TB_title a.tb-theme-preview-link:visited {
+ color: #999;
+}
+
+#TB_window #TB_title a.tb-theme-preview-link:hover,
+#TB_window #TB_title a.tb-theme-preview-link:focus {
+ color: #ccc;
+}
+
+.misc-pub-section {
+ border-bottom-color: #eee;
+}
+
+#minor-publishing {
+ border-bottom-color: #ddd;
+}
+
+#post-body .misc-pub-section {
+ border-right-color: #eee;
+}
+
+.post-com-count span {
+ background-color: #bbb;
+}
+
+.form-table .color-palette td {
+ border-color: #fff;
+}
+
+.sortable-placeholder {
+ border-color: #bbb;
+ background-color: #f5f5f5;
+}
+
+#post-body ul#category-tabs li.ui-tabs-selected a {
+ color: #333;
+}
+
+#wp_editimgbtn,
+#wp_delimgbtn,
+#wp_editgallery,
+#wp_delgallery {
+ border-color: #999;
+ background-color: #eee;
+}
+
+#wp_editimgbtn:hover,
+#wp_delimgbtn:hover,
+#wp_editgallery:hover,
+#wp_delgallery:hover {
+ border-color: #555;
+ background-color: #ccc;
+}
+
+#favorite-first {
+ background: #797979 url(../images/fav.png) repeat-x left center;
+ border-color: #777 !important;
+ border-bottom-color: #666 !important;
+}
+
+#favorite-inside {
+ border-color: #797979;
+ background-color: #797979;
+}
+
+#favorite-toggle {
+ background: transparent url(../images/fav-arrow.gif) no-repeat 0 -4px;
+}
+
+#favorite-actions a {
+ color: #ddd;
+}
+
+#favorite-actions a:hover {
+ color: #fff;
+}
+
+#favorite-inside a:hover {
+ text-decoration: underline;
+}
+
+#favorite-actions .slide-down {
+ border-bottom-color: #626262;
+}
+
+.submit input,
+.button,
+.button-primary,
+.button-secondary,
+.button-highlighted,
+#postcustomstuff .submit input {
+ text-shadow: rgba(255,255,255,1) 0 1px 0;
+}
+
+.button-primary,
+.submit .button-primary {
+ text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
+}
+
+#screen-meta a.show-settings {
+ background-color: transparent;
+ text-shadow: rgba(255,255,255,0.7) 0 1px 0;
+}
+
+#icon-edit,
+#icon-post {
+ background: transparent url(../images/icons32.png) no-repeat -552px -5px;
+}
+
+#icon-index {
+ background: transparent url(../images/icons32.png) no-repeat -137px -5px;
+}
+
+#icon-upload {
+ background: transparent url(../images/icons32.png) no-repeat -251px -5px;
+}
+
+#icon-link-manager,
+#icon-link,
+#icon-link-category {
+ background: transparent url(../images/icons32.png) no-repeat -190px -5px;
+}
+
+#icon-edit-pages,
+#icon-page {
+ background: transparent url(../images/icons32.png) no-repeat -312px -5px;
+}
+
+#icon-edit-comments {
+ background: transparent url(../images/icons32.png) no-repeat -72px -5px;
+}
+
+#icon-themes {
+ background: transparent url(../images/icons32.png) no-repeat -11px -5px;
+}
+
+#icon-plugins {
+ background: transparent url(../images/icons32.png) no-repeat -370px -5px;
+}
+
+#icon-users,
+#icon-user-edit {
+ background: transparent url(../images/icons32.png) no-repeat -600px -5px;
+}
+
+#icon-tools,
+#icon-admin {
+ background: transparent url(../images/icons32.png) no-repeat -432px -5px;
+}
+
+#icon-options-general {
+ background: transparent url(../images/icons32.png) no-repeat -492px -5px;
+}
+
+.view-switch #view-switch-list {
+ background: transparent url(../images/list.png) no-repeat 0 0;
+}
+
+.view-switch #view-switch-list.current {
+ background: transparent url(../images/list.png) no-repeat -40px 0;
+}
+
+.view-switch #view-switch-excerpt {
+ background: transparent url(../images/list.png) no-repeat -20px 0;
+}
+
+.view-switch #view-switch-excerpt.current {
+ background: transparent url(../images/list.png) no-repeat -60px 0;
+}
+
+#header-logo {
+ background: transparent url(../images/wp-logo.gif) no-repeat scroll center center;
+}
-/* Right Now */
-#rightnow {
- margin-right:0;
- margin-left: 7px;
+#dashboard-widgets-wrap .has-sidebar {
+ margin-right: 0;
+ margin-left: -51%;
}
-#rightnow .reallynow span {
- text-align: right;
- float: right;
+#dashboard-widgets-wrap .has-sidebar .has-sidebar-content {
+ margin-right: 0;
+ margin-left: 51%;
+}
+.view-all {
+ right: auto;
+ left: 0;
}
-#rightnow .reallynow a {
+#dashboard_right_now p.sub, #dashboard-widgets h4, #dashboard_quick_press h4, a.rsswidget, #dashboard_plugins h4, #dashboard_plugins h5, #dashboard_recent_comments .comment-meta .approve {
+ font-family: Tahoma, Arial;
+}
+#dashboard_right_now td.b {
+ padding-right: 0;
+ padding-left: 6px;
text-align: left;
+ font-family: Tahoma, Arial;
+}
+#dashboard_right_now .t {
+ padding-right: 0;
+ padding-left: 12px;
+}
+#dashboard_right_now .versions a {
+ font-family: Tahoma, Arial;
+}
+#dashboard_right_now a.button {
float: left;
- margin: 1px 0 0 6px;
+ clear: left;
}
-/* Widgets */
-div#dashboard-widgets-wrap {
- margin-right:0;
- margin-left:-13px;
+#dashboard-widgets h3 .postbox-title-action {
+ right: auto;
+ left: 30px;
}
-div.dashboard-widget-holder {
- float:right;
+#the-comment-list .pingback {
+ padding-left: 0 !important;
+ padding-right: 9px !important;
}
-div.dashboard-widget {
- margin-right:0;
- margin-left: 20px;
+/* Recent Comments */
+#the-comment-list .comment-item {
+ padding: 1em 70px 1em 10px;
}
-h3.dashboard-widget-title span {
- text-align: right;
+#the-comment-list .comment-item .avatar {
float: right;
+ margin-left: 0;
+ margin-right: -60px;
}
-h3.dashboard-widget-title small {
+/* Feeds */
+.rss-widget cite {
text-align: left;
- float:left;
-}
-div.dashboard-widget-submit input {
- font-family: Tahoma;
}
-div.dashboard-widget-content ul, div.dashboard-widget-content ol, div.dashboard-widget-content dl {
- padding-left:0;
- padding-right:15px;
+.rss-widget span.rss-date {
+ font-family: Tahoma, Arial;
+ margin-left: 0;
+ margin-right: 3px;
}
-#dashboard_secondary div.dashboard-widget-content ul li {
- float:right;
+/* QuickPress */
+#dashboard_quick_press h4 {
+ float: right;
+ text-align: left;
}
-#dashboard_secondary div.dashboard-widget-content ul li .post {
- font-family:arial;
+#dashboard_quick_press h4 label {
+ margin-right: 0;
+ margin-left: 10px;
}
-#dashboard_secondary div.dashboard-widget-content ul li a {
- border-right:0 none;
- border-left: 1px solid #dadada;
- height:110px;
+#dashboard_quick_press .input-text-wrap, #dashboard_quick_press .textarea-wrap {
+ margin: 0 5em 1em 0;
}
-#dashboard_secondary div.dashboard-widget-content ul li a cite {
- font-family: Tahoma;
+#dashboard_quick_press #media-buttons {
+ margin: 0 5em .5em 0;
+ padding: 0 10px 0 0;
}
-#dashboard-widgets .widget_rss ul li span.rss-date {
- float:right;
+#dashboard-widgets #dashboard_quick_press form p.submit {
+ margin-left: 0;
+ margin-right: 4.6em;
}
-#dashboard-widgets .widget_rss ul li a {
+#dashboard-widgets #dashboard_quick_press form p.submit input {
float: right;
- margin: 0 0 .2em .5em;
+}
+#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
+ margin: 0 10px 0 1em;
+}
+#dashboard-widgets #dashboard_quick_press form p.submit #publish {
+ float: left;
+}
+/* Recent Drafts */
+#dashboard_recent_drafts h4 abbr {
+ font-family: Tahoma, Arial;
+ margin-left:0;
+ margin-right: 3px;
}
-/* Right Now */
+.postbox p, .postbox ul, .postbox ol, .postbox blockquote, #wp-version-message { font-size: 11px; }
+
+.edit-box {
+ display: none;
+}
+
+h3:hover .edit-box {
+ display: inline;
+}
-#rightnow {
+form .input-text-wrap {
+ border-style: solid;
border-width: 1px;
+ padding: 2px 3px;
+ border-color: #ccc;
+}
+
+#dashboard-widgets form .input-text-wrap input {
+ border: 0 none;
+ outline: none;
+ margin: 0;
+ padding: 0;
+ width: 99%;
+ color: #333;
+}
+
+form .textarea-wrap {
border-style: solid;
+ border-width: 1px;
padding: 2px;
- margin-top: 10px;
- margin-right: 7px;
+ border-color: #ccc;
}
-#rightnow .reallynow {
- padding: 6px;
- font-size: 15px;
- line-height: 2;
+#dashboard-widgets form .textarea-wrap textarea {
+ border: 0 none;
+ padding: 0;
+ outline: none;
+ width: 99%;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+}
+
+#dashboard-widgets .postbox form .submit {
+ float: none;
+ margin: .5em 0 0;
+ padding: 0;
+ border: none;
+}
+
+#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit input {
margin: 0;
}
-#rightnow .rbutton {
- font-weight: normal;
- padding: 6px;
- border-bottom: none;
- -moz-border-radius: 2px;
- -khtml-border-radius: 2px;
- -webkit-border-radius: 2px;
- border-radius: 2px;
- text-decoration: none;
+#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
+ min-width: 0;
}
-#rightnow .reallynow span {
- display: block;
- text-align: left;
- float: left;
- padding: 0 6px;
+#dashboard-widgets-wrap .has-sidebar {
+ margin-right: -51%;
}
-#rightnow .reallynow a {
- display: block;
- text-align: right;
- float: right;
- padding: 0 6px;
- font-size: 14px;
- margin: 1px 6px 0 0;
+#dashboard-widgets-wrap .inner-sidebar {
+ width: 49%;
}
-#rightnow .youhave {
- font-size: 14px;
- padding: 10px;
+#dashboard-widgets-wrap .has-sidebar .has-sidebar-content {
+ margin-right: 51%;
}
-#rightnow h3, #rightnow p {
- padding: 0 10px;
+div.postbox div.inside {
+ margin: 10px;
+ position: relative;
}
-#rightnow a {
- font-weight: bold;
+#dashboard-widgets a {
+ text-decoration: none;
}
-/* Widgets */
+#dashboard-widgets h3 a {
+ text-decoration: underline;
+}
-div#dashboard-widgets-wrap {
- margin-top: -20px;
- margin-right: -13px; /* 20 (div.dashboard-widget margin-right) - 7 (#rightnow margin-right) */
+#dashboard-widgets h3 .postbox-title-action {
+ position: absolute;
+ right: 30px;
+ padding: 0;
}
-div#dashboard-widgets {
- width: 100%;
+#dashboard-widgets h4 {
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ font-size: 13px;
+ margin: 0 0 .2em;
+ padding: 0;
}
-div.dashboard-widget-holder {
- margin-top: 20px;
- width: 50%;
- float: left;
+/* Right Now */
+
+#dashboard_right_now p.sub,
+#dashboard_right_now .table, #dashboard_right_now .versions {
+ margin: -12px;
+}
+
+#dashboard_right_now .inside {
+ font-size: 12px;
}
-div.dashboard-widget-holder.third {
- width: 33.3%;
+#dashboard_right_now p.sub {
+ font-style: italic;
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ padding: 5px 10px 15px;
+ color: #777;
+ font-size: 13px;
}
-div.dashboard-widget-holder.fourth {
- width: 25%;
+#dashboard_right_now .table {
+ background: #f9f9f9;
+ border-top: #ececec 1px solid;
+ border-bottom: #ececec 1px solid;
+ margin: 0 -9px 10px;
+ padding: 0 10px;
}
-div.dashboard-widget-holder.full {
+#dashboard_right_now table {
width: 100%;
}
-div.dashboard-widget-holder.double div.dashboard-widget {
- height: 54em;
- padding-bottom: 28px /* lame */
+#dashboard_right_now table td {
+ border-top: #ececec 1px solid;
+ padding: 3px 0;
+ white-space: nowrap;
}
-div.dashboard-widget {
- position: relative;
- margin-right: 20px;
- border-width: 1px;
- border-style: solid;
- padding: 2px;
- height: 27em;
- overflow: auto;
- font-size: 11px;
+#dashboard_right_now table tr.first td {
+ border-top: none;
}
-h3.dashboard-widget-title {
- margin: 0;
- padding: 0 7px;
+#dashboard_right_now td.b {
+ padding-right: 6px;
+ text-align: right;
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
font-size: 14px;
- line-height: 2;
}
-h3.dashboard-widget-title span {
- display: block;
- text-align: left;
- float: left;
+#dashboard_right_now td.b a {
+ font-size: 18px;
}
-h3.dashboard-widget-title small {
- display: block;
- text-align: right;
- float: right;
- font-size: 75%;
- line-height: 2.67; /* math: it works, bitches */
+#dashboard_right_now td.b a:hover {
+ color: #d54e21;
}
-h3.dashboard-widget-title img.rss-icon {
- vertical-align: middle;
- margin: .5em 0;
+#dashboard_right_now .t {
+ font-size: 12px;
+ padding-right: 12px;
+ padding-top: 6px;
+ color: #777;
}
-div.dashboard-widget-notice {
- padding: 0 14px;
- font-size: 1.2em;
- line-height: 2;
+#dashboard_right_now td.first,
+#dashboard_right_now td.last {
+ width: 1px;
}
-div.dashboard-widget-error {
- padding: 0 20px;
- font-size: 1.2em;
- line-height: 2;
+#dashboard_right_now .spam {
+ color: red;
}
-div.dashboard-widget-content {
- padding: 10px 15px;
+#dashboard_right_now .waiting {
+ color: orange;
}
-div.dashboard-widget-submit {
- border-top: 1px solid #ccc;
- padding: 1em 0 0 0;
- margin: 10px 0 0 0;
+#dashboard_right_now .approved {
+ color: green;
}
-div.dashboard-widget-submit input {
- font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
- padding: 4px 6px;
- border: none;
- font-size: 13px;
- -moz-border-radius: 3px;
- -khtml-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- cursor: pointer;
- text-decoration: none;
+
+#dashboard_right_now .versions {
+ padding: 6px 10px 12px;
}
-div.dashboard-widget-content ul, div.dashboard-widget-content ol, div.dashboard-widget-content dl {
- margin: 0;
- text-indent: 0;
- padding-left: 15px;
+#dashboard_right_now .versions .b {
+ font-weight: bold;
+}
+
+#dashboard_right_now a.button {
+ float: right;
+ clear: right;
+ position: relative;
+ top: -5px;
}
-div.dashboard-widget-content li {
- margin: .5em 0 1em;
+
+/* Recent Comments */
+
+#dashboard_recent_comments h3 {
+ margin-bottom: 0;
}
-div.dashboard-widget-content blockquote {
- margin: -1em 0;
+#dashboard_recent_comments .inside {
+ margin-top: 0;
}
-div#dashboard_recent_comments p {
- font-size: 14px;
+#dashboard_recent_comments .comment-meta .approve {
+ font-style: italic;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ font-size: 10px;
}
-div.dashboard-widget-content p.comment-meta {
- font-size: 11px !important;
+#the-comment-list {
+ position: relative;
}
-#dashboard_secondary div.dashboard-widget {
- height: auto;
+#the-comment-list .comment-item {
+ padding: 1em 10px 1em 70px;
+ border-top: 1px solid;
}
-#dashboard_secondary div.dashboard-widget-content ul {
- list-style: none;
- padding: 0;
+#the-comment-list .pingback {
+ padding-left: 9px !important;
}
-#dashboard_secondary div.dashboard-widget-content ul li {
- display: block;
- width: 19.95%;
- padding-bottom: 10px;
- margin: 0;
+#the-comment-list .comment-item,
+#the-comment-list #replyrow {
+ margin: 0 -10px;
+}
+
+#the-comment-list .comment-item:first-child {
+ border-top: none;
+}
+
+#the-comment-list .comment-item .avatar {
float: left;
- font-size: 95%;
+ margin-left: -60px;
}
-#dashboard_secondary div.dashboard-widget-content {
- margin: 10px 5px;
- padding: 0;
+#the-comment-list .comment-item h4 {
+ line-height: 1.4;
+ margin-top: -.2em;
+ font-weight: normal;
+ color: #999;
}
-#dashboard_secondary div.dashboard-widget-content ul li .post {
- display:block;
- font-family:Georgia,"Times New Roman",Times,serif;
- font-size:18px;
- line-height: 1.2em;
- height:90px;
- overflow:hidden;
+#the-comment-list .comment-item h4 cite {
+ font-style: normal;
+ font-weight: normal;
}
-#dashboard_secondary div.dashboard-widget-content ul li a {
- display: block;
- height:100%;
- overflow:hidden;
- margin: 5px 10px;
- text-decoration: none;
- padding: .5em;
- border-right: 1px solid #dadada;
- border-bottom: 1px solid #dadada;
+#the-comment-list .comment-item blockquote,
+#the-comment-list .comment-item blockquote p {
+ margin: 0;
+ padding: 0;
+ display: inline;
}
-#dashboard_secondary div.dashboard-widget-content ul li a cite {
+#dashboard_recent_comments #the-comment-list .trackback blockquote,
+#dashboard_recent_comments #the-comment-list .pingback blockquote {
display: block;
- font-family: "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
}
-#dashboard-widgets .widget_rss ul {
- list-style: none;
+#the-comment-list .comment-item p.row-actions {
+ margin: 3px 0 0;
padding: 0;
+ font-size: 10px;
}
-#dashboard-widgets .widget_rss ul li {
+/* QuickPress */
+
+#dashboard_quick_press h4 {
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ float: left;
+ width: 5.5em;
clear: both;
+ font-weight: normal;
+ text-align: right;
+ padding-top: 5px;
+ font-size: 12px;
+}
+
+#dashboard_quick_press h4 label {
+ margin-right: 10px;
}
-#dashboard-widgets .widget_rss ul li span.rss-date {
+#dashboard_quick_press .input-text-wrap,
+#dashboard_quick_press .textarea-wrap {
+ margin: 0 0 1em 5em;
+}
+
+#dashboard_quick_press #media-buttons {
+ margin: 0 0 .5em 5em;
+ padding: 0 0 0 10px;
+ font-size: 11px;
+}
+
+#dashboard_quick_press #media-buttons a {
+ vertical-align: bottom;
+}
+
+#dashboard-widgets #dashboard_quick_press form p.submit {
+ margin-left: 4.6em;
+}
+
+#dashboard-widgets #dashboard_quick_press form p.submit input {
float: left;
+}
+
+#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
+ margin: 0 1em 0 10px;
+}
+
+#dashboard-widgets #dashboard_quick_press form p.submit #publish {
+ float: right;
+}
+
+/* Recent Drafts */
+#dashboard_recent_drafts ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+#dashboard_recent_drafts ul li {
+ margin-bottom: 0.6em;
+}
+
+#dashboard_recent_drafts h4 {
+ font-weight: normal;
+}
+
+#dashboard_recent_drafts h4 abbr {
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ font-size: 11px;
+ color: #999;
+ margin-left: 3px;
+}
+
+#dashboard_recent_drafts p {
margin: 0;
+ padding: 0;
}
-#dashboard-widgets .widget_rss ul li a {
- float: left;
- margin: 0 .5em .2em 0;
- font-weight: bold;
+/* Feeds */
+
+.rss-widget ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
}
-#dashboard-widgets .widget_rss ul li div {
- clear: both;
+a.rsswidget {
+ font-size: 13px;
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ line-height: 1.7em;
+}
+
+.rss-widget ul li {
line-height: 1.5em;
+ margin-bottom: 12px;
}
-#dashboard_primary a.rsswidget, #dashboard_plugins h5 {
- font-size: 14px;
+.rss-widget span.rss-date {
+ margin-left: 3px;
}
-#dashboard_primary span.rss-date {
- font-size: 14px;
+.rss-widget cite {
+ display: block;
+ text-align: right;
+ margin: 0 0 1em;
+ padding: 0;
}
+.rss-widget cite:before {
+ content: '\2014';
+}
+
+/* Plugins */
+
#dashboard_plugins h4 {
- font-size: 1em;
- margin: 0 0 .1em;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
}
#dashboard_plugins h5 {
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ font-size: 13px !important;
margin: 0;
display: inline;
line-height: 1.4em;
}
-#dashboard_plugins p {
- margin: 0 0 1em;
- line-height: 1.5em;
+#dashboard_plugins h5 a {
+ font-weight: normal;
+ line-height: 1.7em;
}
-.widget-loading {
+#dashboard_plugins p {
+ margin: 0 0 1.4em;
+ line-height: 1.4em;
}
--- /dev/null
+.farbtastic .color, .farbtastic .overlay {\r
+ left: 0;\r
+ right: 47px;\r
+}\r
+.farbtastic .marker {\r
+ margin: -8px -8px 0 0;\r
+}\r
--- /dev/null
+.farbtastic {
+ position: relative;
+}
+.farbtastic * {
+ position: absolute;
+ cursor: crosshair;
+}
+.farbtastic, .farbtastic .wheel {
+ width: 195px;
+ height: 195px;
+}
+.farbtastic .color, .farbtastic .overlay {
+ top: 47px;
+ left: 47px;
+ width: 101px;
+ height: 101px;
+}
+.farbtastic .wheel {
+ background: url(../images/wheel.png) no-repeat;
+ width: 195px;
+ height: 195px;
+}
+.farbtastic .overlay {
+ background: url(../images/mask.png) no-repeat;
+}
+.farbtastic .marker {
+ width: 17px;
+ height: 17px;
+ margin: -8px 0 0 -8px;
+ overflow: hidden;
+ background: url(../images/marker.png) no-repeat;
+}
\ No newline at end of file
-body, td {
- font-family: Tahoma;
+/* 2 column liquid layout */
+#adminmenu {
+ float: right;
+ clear: right;
+ margin-right:-160px;
+ margin-left: 5px;
}
-textarea, input, select {
- font-family: Tahoma;
+div.folded #adminmenu {
+ margin-left: 0;
+ margin-right: -45px;
}
-h1, h2, h3 {
- font-family:arial;
+/* inner 2 column liquid layout */
+.inner-sidebar {
+ float: left;
+ clear: left;
}
-.widefat td {
- padding: 7px 10px 9px 15px;
+.has-sidebar {
+ float: right;
+ clear: right;
+ margin-right: 0;
+ margin-left: -340px;
+}
+.has-sidebar .has-sidebar-content {
+ margin-right: 0;
+ margin-left: 305px;
+}
+#wpbody {
+ margin-left:0;
+ margin-right: 175px;
+}
+.folded #wpbody {
+ margin-left: 0;
+ margin-right: 60px;
+}
+#wpbody-content {
+ float: right;
+}
+/* 2 columns main area */
+#col-right {
+ float: left;
+ clear: left;
+}
+.wrap {
+ margin: 0 5px 0 15px;
+}
+/* styles for use by people extending the WordPress interface */
+body, td, textarea, input, select {
+ font-family: Tahoma, arial;
+}
+.alignleft {
+ float: right;
+}
+.alignright {
+ float: left;
+}
+.subsubsub {
+ float: right;
}
.widefat th {
- padding: 9px 10px 6px 15px;
text-align: right;
}
.widefat th input {
margin: 0 8px 0 0;
}
-.widefat .check-column {
- text-align: left;
-}
.wrap h2 {
- font-family:arial;
- margin: 5px -4px 0 0;
- padding-right:0;
- padding-left: 280px;
+ font-family: arial;
+ padding: 14px 0 3px 15px;
}
.wrap h2.long-header {
padding-left: 0;
}
+.updated, .error {
+ clear: both;
+}
-/* styles for use by people extending the WordPress interface */
+/* http://meyerweb.com/eric/tools/css/reset/ */
+/* v1.0 | 20080212 */
+
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, address, big, cite, code,
+del, dfn, em, font, img, ins, kbd, q, s, samp,
+small, strike, strong, sub, sup, tt, var,
+b, u, i, center,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td {
+ margin: 0;
+ padding: 0;
+ border: 0;
+ outline: 0;
+/* font-size: 100%;
+ vertical-align: baseline; */
+ background: transparent;
+}
+body {
+ line-height: 1;
+}
+ol, ul {
+ list-style: none;
+}
+blockquote, q {
+ quotes: none;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+ content: '';
+ content: none;
+}
+/* remember to define focus styles! */
+/*
+:focus {
+ outline: 0;
+}
+*/
+/* remember to highlight inserts somehow! */
+ins {
+ text-decoration: none;
+}
+del {
+ text-decoration: line-through;
+}
-body {
+/* tables still need 'cellspacing="0"' in the markup */
+/*
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
+*/
+/* end reset css */
+
+
+/* 2 column liquid layout */
+#wpwrap {
+ height: auto;
+ min-height: 100%;
+ width: 100%;
+}
+
+#wpcontent {
+ height: 100%;
+ padding-bottom: 50px;
+}
+
+#wpbody {
+ clear: both;
+ margin-left: 175px;
+}
+
+.folded #wpbody {
+ margin-left: 60px;
+}
+
+#wpbody-content {
+ float: left;
+ width: 100%;
+}
+
+#adminmenu {
+ float: left;
+ clear: left;
+ width: 145px;
+ margin-top: 15px;
+ margin-right: 5px;
+ margin-bottom: 15px;
+ margin-left: -160px;
+ position: relative;
+ padding: 0;
+ list-style: none;
+}
+
+.folded #adminmenu {
+ margin-left: -45px;
+}
+
+.folded #adminmenu,
+.folded #adminmenu li.menu-top {
+ width: 28px;
+}
+
+#footer {
+ clear: both;
+ position: relative;
+ width: 100%;
+}
+
+/* inner 2 column liquid layout */
+
+.inner-sidebar {
+ float: right;
+ clear: right;
+ width: 280px;
+ position: relative;
+}
+
+.has-sidebar {
+ float: left;
+ clear: left;
+ width: 100%;
+ margin-right: -340px;
+}
+
+.has-sidebar .has-sidebar-content {
+ margin-right: 305px;
+}
+
+/* 2 columns main area */
+
+#col-container {
+ overflow: hidden;
+ padding: 0;
margin: 0;
+}
+
+#col-left {
padding: 0;
+ margin: 0;
+ overflow: hidden;
+ width: 39%;
+}
+
+#col-right {
+ float: right;
+ clear: right;
+ overflow: hidden;
+ padding: 0;
+ margin: 0;
+ width: 59%;
+}
+
+/* utility classes */
+.alignleft {
+ float: left;
+}
+
+.alignright {
+ float: right;
+}
+
+.textleft {
+ text-align: left;
}
-body, td {
- font: 13px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
+.textright {
+ text-align: right;
}
-form, label input { margin: 0; padding: 0; }
+.clear {
+ clear: both;
+}
-img { border: 0; }
+.hidden,
+.closed .inside,
+.hide-if-no-js {
+ display: none;
+}
-label { cursor: pointer; }
+/* include margin and padding in the width calculation of input and textarea */
+input[type="text"],
+textarea {
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ -ms-box-sizing: border-box; /* ie8 only */
+ box-sizing: border-box;
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+ vertical-align: text-top;
+}
-li, dd { margin-bottom: 6px; }
+/* styles for use by people extending the WordPress interface */
+html,
+body {
+ height: 100%;
+}
-p, li, dl, dd, dt { line-height: 140%; }
+body,
+td {
+ font: 13px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+}
-textarea, input, select {
- font: 13px Verdana, Arial, Helvetica, sans-serif;
- margin: 1px;
- padding: 3px;
+p {
+ margin: 1em 0;
}
-.alignleft { float: left; }
-.alignright { float: right; }
+blockquote {
+ margin: 1em;
+}
-.textleft { text-align: left; }
-.textright { text-align: right; }
+label {
+ cursor: pointer;
+}
-.clear { clear: both; height: 2px; }
+li,
+dd {
+ margin-bottom: 6px;
+}
-.hidden { display: none; }
+p,
+li,
+dl,
+dd,
+dt {
+ line-height: 140%;
+}
+
+textarea,
+input,
+select {
+ font: 13px/19px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ margin: 1px;
+ padding: 3px;
+}
h1 {
display: block;
.subsubsub {
list-style: none;
- margin: 14px 0 8px 0;
+ margin: 8px 0 5px;
padding: 0;
white-space: nowrap;
- font-size: 12px;
+ font-size: 11px;
+ float: left;
}
-.subsubsub a { line-height: 200%; padding: 3px; text-decoration: none; }
+.subsubsub a {
+ line-height: 2;
+ padding: .2em;
+ text-decoration: none;
+}
-.subsubsub a.current { font-weight: bold; background: none; border: none;}
+.subsubsub a .count, .subsubsub a.current .count {
+ color: #999;
+ font-weight: normal;
+}
-.subsubsub li { display: inline; margin: 0; padding: 0; }
+.subsubsub a.current {
+ font-weight: bold;
+ background: none;
+ border: none;
+}
+
+.subsubsub li {
+ display: inline;
+ margin: 0;
+ padding: 0;
+}
.widefat {
border-width: 1px;
border-style: solid;
- border-collapse: collapse;
+ border-collapse: separate;
+ border-spacing: 0;
width: 100%;
clear: both;
margin: 0;
+ -moz-border-radius: 4px;
+ -khtml-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
}
-.widefat a {
- text-decoration: none;
+.widefat * {
+ word-wrap: break-word;
}
-.widefat abbr {
- white-space: nowrap;
+.widefat a {
+ text-decoration: none;
}
-.widefat td, .widefat th {
+.widefat td,
+.widefat th {
border-bottom-width: 1px;
border-bottom-style: solid;
- border-bottom-color: #ccc;
font-size: 11px;
vertical-align: text-top;
}
.widefat td {
- padding: 7px 15px 9px 10px;
+ padding: 7px 7px 5px;
vertical-align: top;
}
+.widefat thead tr th:first {
+ -moz-border-radius-topleft: 4px;
+ -webkit-border-top-left-radius: 4px;
+ -khtml-border-top-left-radius: 4px;
+ border-top-left-radius: 4px;
+}
+
+.widefat thead tr th:last {
+ -moz-border-radius-topright: 4px;
+ -webkit-border-top-right-radius: 4px;
+ -khtml-border-top-right-radius: 4px;
+ border-top-right-radius: 4px;
+}
+
+.widefat tfoot tr th:first {
+ -moz-border-radius-bottomleft: 4px;
+ -webkit-border-bottom-left-radius: 4px;
+ -khtml-border-bottom-left-radius: 4px;
+ border-bottom-left-radius: 4px;
+}
+
+.widefat tfoot tr th:last {
+ -moz-border-radius-bottomright: 4px;
+ -webkit-border-bottom-right-radius: 4px;
+ -khtml-border-bottom-right-radius: 4px;
+ border-bottom-right-radius: 4px;
+}
+
+.widefat td p {
+ font-size: 11px;
+}
+
.widefat th {
- padding: 9px 15px 6px 10px;
+ padding: 7px 7px 8px;
text-align: left;
line-height: 1.3em;
}
.widefat th input {
margin: 0 0 0 8px;
padding: 0;
+ vertical-align: text-top;
}
.widefat .check-column {
- text-align: right;
- width: 1.5em;
+ width: 2.2em;
padding: 0;
}
.widefat tbody th.check-column {
- padding: 8px 0 22px;
-}
-/*
-th.check-column + th, th.check-column + td {
- padding-left: 5px;
+ padding: 7px 0 22px;
}
-*/
-.widefat .num {
+
+.widefat .num,
+.column-comments,
+.column-links,
+.column-posts,
+.column-parent {
text-align: center;
}
-.wrap, .updated, .error {
- margin: 0;
- margin-left: 15px;
- margin-right: 15px;
- padding: 0;
- max-width: 980px;
+.widefat th#comments {
+ vertical-align: middle;
}
-.updated, .error {
+.wrap {
+ margin: 0 15px 0 5px;
+}
+
+.updated,
+.error {
border-width: 1px;
border-style: solid;
padding: 0 0.6em;
- max-width: 950px;
- margin-bottom: 1em;
-}
-
-.updated p, .error p {
- margin: 0.6em 0;
+ margin: 5px 15px 2px;
+ -moz-border-radius: 3px;
+ -khtml-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
}
-.wrap .updated, .wrap .error {
- margin: auto 0 0;
+.updated p,
+.error p {
+ margin: 0.5em 0;
+ line-height: 1;
+ padding: 2px;
}
-.updated a, .error a {
- text-decoration: underline;
-}
-
-.updated a {
- text-decoration: none;
- padding-bottom: 2px;
+.wrap .updated,
+.wrap .error {
+ margin: 5px 0;
}
.wrap h2 {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- clear: both;
- font: 24px Georgia, "Times New Roman", Times, serif;
- margin: 5px 0 0 -4px;
- padding: 0;
- padding-bottom: 7px;
- padding-right: 280px;
+ font: italic normal normal 24px/29px Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ margin: 0;
+ padding: 14px 15px 3px 0;
+ line-height: 35px;
+ text-shadow: rgba(255,255,255,1) 0px 1px 0px;
}
.wrap h2.long-header {
-#poststuff .postbox h3 {
- padding-left:0;
- padding-right: 23px;
+* html #wpcontent #adminmenu .wp-has-submenu .wp-menu-toggle {
+ background: url(../images/menu-bits-rtl.gif) no-repeat scroll right -109px;
}
-* html #poststuff .postarea, * html #poststuff #titlediv {
+
+* html #wpcontent #adminmenu li.wp-has-current-submenu .wp-menu-toggle {
+ background: url(../images/menu-bits-rtl.gif) no-repeat scroll right -206px;
+}
+* html #adminmenu {
margin-left:0;
- margin-right: 3%;
+ margin-right: -80px;
+}
+* html div.folded #adminmenu {
+ margin-left: 0;
+ margin-right: -22px;
+}
+#wpcontent #adminmenu .wp-submenu li.wp-submenu-head {
+ padding: 3px 10px 4px 4px;
+}
+.inline-edit-row fieldset label span.title {
+ float: right;
+}
+.inline-edit-row fieldset label span.input-text-wrap {
+ margin-right: 0;
+}
+p.search-box {
+ float: left;
}
* html #poststuff h2 {
margin-right: 0;
}
#bh {
- padding-right:0;
- padding-left: 15px;
+ margin: 7px 10px 0 0;
+ float: left;
+}
+#user_info + div#favorite-actions {
+ right: auto;
+ left: 15px;
+}
+#wphead-info {
+ float: left;
}
+/* without this dashboard widgets appear in one column for some screen widths */
div#dashboard-widgets {
- padding-right:0;
+ padding-right: 0;
padding-left: 1px;
}
#tagchecklist span a {
margin: 4px -9px 0 0;
}
-#poststuff .togbox {
- margin-left:0;
- margin-right: -19px;
-}
.widefat th input {
margin: 0 5px 0 0;
}
/* ---------- add by navid */
-#dashmenu { /* fix top right bottom in admin */
- direction:ltr;
-}
-#sidemenu a { /* fix left admin buttom ex. plugins, options */
- float:left;
+#TB_window {
+ width: 670px;
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ margin-right: 335px !important;
}
-.wrap h2 {
- margin:5px 4px 0 0;
+#dashboard_plugins {
+ direction: ltr;
}
-#editor-toolbar {/* fix hover in media uploader icon */
- direction:ltr;
+#dashboard_plugins h3.hndle {
+ direction: rtl;
}
-#TB_window { /* fix theme preview */
- left:2%;
+#dashboard_incoming_links ul li,
+#dashboard_secondary ul li,
+#dashboard_primary ul li,
+p.row-actions {
+ width: 100%;
}
-/* fix widget page */
-form#widgets-filter {
- position:static;
+#favorite-inside {
+ position: absolute;
+ right:0;
}
-#widget-search {
- display:none;
+#post-status-info {
+ height: 25px;
}
-/* fix manage comment page */
-ul.view-switch li {
- float:left;
+#screen-meta {
+ position: static;
}
-form#posts-filter {
- position:static;
+p.submit { /* quick edit and reply in edit-comments.php */
+ height:22px;
}
-#post-search {
- display:none;
+.inner-sidebar { /* fix edit single comment */
+ position: static;
}
-#submenu {
- margin-right: 20px;
+form#widgets-filter { /* fix widget page */
+ position: static;
}
-/* Fixes for media-upload window */
-/* Center media-upload panel on screen */
-#TB_window {
- width: 670px;
- position: absolute;
- top: 50%;
- left: 50%;
- margin-right: 335px !important; }
/* Fixes for IE bugs */
-#poststuff .postbox h3 {
- padding-left: 23px;
+input.button,
+input.button-secondary,
+input.button-highlighted {
+ padding: 0;
+}
+
+#minor-publishing-actions input,
+#major-publishing-actions input,
+#minor-publishing-actions .preview {
+ min-width: auto;
+ padding-left: 0;
+ padding-right: 0;
+}
+
+#wpbody-content .postbox {
+ border: 1px solid #dfdfdf;
+}
+
+#wpbody-content .postbox h3 {
+ margin-bottom: -1px;
}
-#submenu li a.current {
- background:none;
- border:none;
+* html #side-info-column {
+ height: auto;
}
+* html #wpbody-content #screen-options-link-wrap {
+ display: inline-block;
+ width: 150px;
+ text-align: center;
+}
+
+* html #wpbody-content #contextual-help-link-wrap {
+ display: inline-block;
+ width: 100px;
+ text-align: center;
+}
+
+/*
* html body.minwidth {
_width: expression(document.documentElement.clientWidth < 810 ? "808px" : "99.9%");
}
* html #wpbody {
_width: expression(document.documentElement.clientWidth > 982 ? "980px" : "99.9%");
}
+*/
-* html #poststuff .postarea, * html #poststuff #titlediv {
- width: 95%;
- margin-left: 3%;
+* html #adminmenu {
+ margin-left: -80px;
+}
+
+* html div.folded #adminmenu {
+ margin-left: -22px;
+}
+
+* html #wpcontent #adminmenu li.menu-top {
+ display: inline;
+ padding: 0;
+ margin: 0;
+}
+
+#wpcontent.folded #adminmenu li.menu-top {
+ display: block;
+}
+
+ul#adminmenu {
+ z-index: 99;
+}
+
+#adminmenu li.menu-top a.menu-top {
+ min-width: auto;
+ width: auto;
+}
+
+#wpcontent #adminmenu li.wp-has-current-submenu a.wp-has-submenu {
+ font-style: normal;
+}
+
+* html #wpcontent #adminmenu .wp-menu-open .wp-menu-toggle {
+ background: none;
+}
+
+* html #wpcontent #adminmenu .wp-has-submenu .wp-menu-toggle {
+ background: url(../images/menu-bits.gif) no-repeat scroll left -109px;
+}
+
+* html #wpcontent #adminmenu li.wp-has-current-submenu .wp-menu-toggle {
+ background: url(../images/menu-bits.gif) no-repeat scroll left -206px;
+}
+
+* html #adminmenu div.wp-menu-image {
+ height: 29px;
+}
+
+#wpcontent #adminmenu .wp-submenu li {
+ padding: 0;
+}
+
+#adminmenu,
+.wp-submenu,
+.wp-submenu li,
+.wp-menu-toggle {
+ zoom: 100%;
+}
+
+#wpcontent.folded #adminmenu li.wp-menu-separator {
+ width: 28px;
+}
+
+#wpcontent #adminmenu .wp-submenu li.wp-submenu-head {
+ padding: 3px 4px 4px 10px;
+ zoom: 100%;
+}
+
+#wpcontent.folded #adminmenu .menu-top {
+ height: 30px;
+}
+
+.folded #adminmenu .wp-submenu {
+ margin: -1px 0 0 0;
+}
+
+#template,
+#template div,
+#editcat,
+#addcat {
+ zoom: 100%;
}
.submitbox {
margin-top: 10px;
}
-* html div.widget-liquid-left-holder, * html div.widget-liquid-right {
+/* Inline Editor */
+#wpbody-content .quick-edit-row-post .inline-edit-col-left {
+ width: 39%;
+}
+
+#wpbody-content .inline-edit-row-post .inline-edit-col-center {
+ width: 19%;
+}
+
+#wpbody-content .quick-edit-row-page .inline-edit-col-left {
+ width: 49%;
+}
+
+#wpbody-content .bulk-edit-row .inline-edit-col-left {
+ width: 29%;
+}
+
+.inline-edit-row p.submit {
+ zoom: 100%;
+}
+
+.inline-edit-row fieldset label span.title {
+ display: block;
+ float: left;
+ width: 5em;
+}
+
+.inline-edit-row fieldset label span.input-text-wrap {
+ margin-left: 0;
+ zoom: 100%;
+}
+
+#wpbody-content .inline-edit-row fieldset label span.input-text-wrap input {
+ line-height: 130%;
+}
+
+#wpbody-content .inline-edit-row .input-text-wrap input {
+ width: 95%;
+}
+
+#wpbody-content .inline-edit-row .input-text-wrap input.inline-edit-password-input {
+ width: 8em;
+}
+/* end Inline Editor */
+
+input {
+ line-height: 1;
+}
+
+* html .row-actions {
+ visibility: visible;
+}
+
+#dashboard-widgets h3 a {
+ height: 20px;
+ line-height: 20px;
+}
+
+#the-comment-list .comment-item,
+ul#widget-list li.widget-list-item {
+ zoom: 100%;
+}
+
+#wphead-info {
+ float: right;
+}
+
+#titlediv #title {
+ width: 98%;
+}
+
+a.button {
+ line-height: 1.4em;
+ margin: 1px;
+}
+
+* html div.widget-liquid-left-holder,
+* html div.widget-liquid-right {
display: block;
position: relative;
}
-#wpwrap, #wpcontent, #post, #wrap, #postdivrich, #postdiv, #poststuff, #titlediv, #post-body, #editorcontainer, .tablenav, .widget-control-list, li.widget-list-control-item, #dragHelper, li.widget-list-control-item h4, .widget-sortable, .widget-control-actions {
+#screen-options-wrap {
+ overflow: hidden;
+}
+
+#favorite-actions {
+ z-index: 12;
+}
+
+#favorite-inside,
+#favorite-inside a,
+.favorite-action {
+ zoom: 100%;
+}
+
+#post-status-info,
+#wpwrap,
+#wpcontent,
+#post,
+#wrap,
+#postdivrich,
+#postdiv,
+#poststuff,
+.metabox-holder,
+#titlediv,
+#post-body,
+#editorcontainer,
+.tablenav,
+.widget-control-list,
+li.widget-list-control-item,
+#dragHelper,
+li.widget-list-control-item h4,
+.widget-sortable,
+.widget-control-actions,
+#tagchecklist,
+#col-container,
+#col-left,
+#col-right {
display: block;
zoom: 100%;
}
+p.search-box {
+ position: static;
+ float: right;
+ margin: -3px 0 4px;
+}
+
* html #editorcontainer {
padding: 0;
}
-* html #editorcontainer #content {
- position: relative;
+#editorcontainer #content {
overflow: auto;
- padding: 6px;
margin: auto;
width: 98%;
}
width: 100%;
}
-#ed_toolbar input {
+#ed_toolbar input,
+#ed_reply_toolbar input {
overflow: visible;
padding: 0 4px;
}
}
#bh {
- padding-right: 15px;
+ margin: 7px 10px 0 0;
+ float: right;
}
/* without this dashboard widgets appear in one column for some screen widths */
padding-right: 1px;
}
-#tagchecklist {
- display: block;
- zoom: 100%;
-}
-
#tagchecklist span, #tagchecklist span a {
display: inline-block;
display: block;
margin: 4px 0 0 -9px;
}
-#poststuff .togbox {
- margin-left: -19px;
-}
-
.tablenav .button-secondary, .nav .button-secondary {
padding: 0 1px;
vertical-align: middle;
margin-top: 2px;
}
-.tablenav-pages .page-numbers {
- display: inline-block;
-}
-
-.tablenav-pages {
- display: block;
- margin-top: -3px;
-}
-
table.ie-fixed {
table-layout: fixed;
}
-#post-search .button, #widget-search .button {
- padding: 1px;
-}
-
.widefat tr, .widefat th {
margin-bottom: 0;
border-spacing: 0;
body {
- font-family: Tahoma;
+ font-family: Tahoma, arial;
}
-/* Half the page disapears on IE6 */
-* html body {
- width: 700px;
- position: absolute;
- left: 50%;
- margin-right: 350px;
-}
-ul, ol {
- padding: 5px 22px 5px 5px;
-}
-.step, th {
- text-align:right;
+h1 {
+ font-family: arial;
+ margin: 5px -4px 0 0;
}
-.submit input, .button, .button-secondary {
- font-family: Tahoma;
+ul, ol { padding: 5px 22px 5px 5px; }
+.step, th { text-align: right; }
+.submit input, .button, .button-secondary {
+ font-family: Tahoma, arial;
margin-right:0;
}
.form-table th {
- text-align:right;
-}
-h1 {
- font-family:arial;
- margin: 5px -4px 0 0;
+ text-align: right;
}
-html { background: #f1f1f1; }
+html { background: #f7f7f7; }
body {
background: #fff;
color: #333;
- font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
margin: 2em auto 0 auto;
width: 700px;
padding: 1em 2em;
- -moz-border-radius: 12px;
- -khtml-border-radius: 12px;
- -webkit-border-radius: 12px;
- border-radius: 12px;
+ -moz-border-radius: 11px;
+ -khtml-border-radius: 11px;
+ -webkit-border-radius: 11px;
+ border-radius: 11px;
+ border: 1px solid #dfdfdf;
}
a { color: #2583ad; text-decoration: none; }
a:hover { color: #d54e21; }
-
h1 {
- font-size: 18px;
- margin-bottom: 0;
+ border-bottom: 1px solid #dadada;
+ clear: both;
+ color: #666;
+ font: 24px Georgia, "Times New Roman", Times, serif;
+ margin: 5px 0 0 -4px;
+ padding: 0;
+ padding-bottom: 7px;
}
h2 { font-size: 16px; }
p, li {
padding-bottom: 2px;
- font-size: 13px;
+ font-size: 12px;
line-height: 18px;
}
-code {
- font-size: 13px;
-}
+code { font-size: 13px; }
ul, ol { padding: 5px 5px 5px 22px; }
-#logo { margin: 6px 0 14px 0px; border-bottom: none;}
+#logo { margin: 6px 0 14px 0; border-bottom: none;}
.step {
margin: 20px 0 15px;
}
-.step input {
- font-size: 18px;
-}
-
-a.button {
- font-size: 18px;
-}
-
.step, th { text-align: left; padding: 0; }
.submit input, .button, .button-secondary {
- font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
- padding: 5px 7px 7px;
- border: 1px solid #a3a3a3;
- margin-left: 0;
- -moz-border-radius: 3px;
- -khtml-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- color: #246;
- background: #e5e5e5;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ text-decoration: none;
+ font-size: 14px !important;
+ line-height: 16px;
+ padding: 6px 12px;
+ cursor: pointer;
+ border: 1px solid #bbb;
+ color: #464646;
+ -moz-border-radius: 15px;
+ -khtml-border-radius: 15px;
+ -webkit-border-radius: 15px;
+ border-radius: 15px;
+ -moz-box-sizing: content-box;
+ -webkit-box-sizing: content-box;
+ -khtml-box-sizing: content-box;
+ box-sizing: content-box;
+}
+
+.button:hover, .button-secondary:hover, .submit input:hover {
+ color: #000;
+ border-color: #666;
}
-.button-secondary {
- background: #cee1ef;
+.button, .submit input, .button-secondary {
+ background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
}
-.submit input:hover, .button:hover, .button-secondary:hover {
- color: #d54e21;
- border-color: #535353;
+.button:active, .submit input:active, .button-secondary:active {
+ background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
}
.form-table {
}
.form-table tr {
- background: #eaf3fa;
+ background: #f3f3f3;
}
.form-table code {
padding: 2px;
}
-h1 {
- border-bottom: 1px solid #dadada;
- clear: both;
- color: #666666;
- font: 24px Georgia, "Times New Roman", Times, serif;
- margin: 5px 0 0 -4px;
- padding: 0;
- padding-bottom: 7px;
-}
-
-#error-page {
- margin-top: 50px;
-}
+#error-page { margin-top: 50px; }
#error-page p {
- font-size: 14px;
- line-height: 16px;
+ font-size: 12px;
+ line-height: 18px;
margin: 25px 0 20px;
}
-#error-page code {
- font-size: 15px;
-}
\ No newline at end of file
+#error-page code { font-family: Consolas, Monaco, Courier, monospace; }
body {
- font-family: Tahoma;
+ font-family: Tahoma, arial;
}
form {
- margin-left:0;
margin-right: 8px;
+ margin-left: 0;
}
form .forgetmenot {
- float:right;
+ float: right;
}
-#login form .submit input {
- font-family: Tahoma;
-}
-form .submit {
- float:left;
+#login form .submit input {
+ font-family: Tahoma, arial;
}
+form .submit { float: left; }
#backtoblog a {
- left:auto;
- right:15px;
+ left: auto;
+ right: 15px;
}
#login_error, .message {
margin: 0 8px 16px 0;
}
-#nav {
- margin:0 8px 0 0;
-}
+#nav { margin: 0 8px 0 0; }
#user_pass, #user_login, #user_email {
- margin-right:0;
margin-left: 6px;
+ margin-right: 0;
+ direction:ltr;
}
h1 a {
- text-decoration:none;
-}
-/* ltr input */
-#user_login, #user_pass {
- direction:ltr;
+ text-decoration: none;
}
body {
border-top-width: 30px;
border-top-style: solid;
- font: 12px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
+ font: 11px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
}
form {
margin-left: 8px;
padding: 16px 16px 40px 16px;
- font-weight: bold;
- -moz-border-radius: 5px;
- -khtml-border-radius: 5px;
- -webkit-border-radius: 5px;
+ font-weight: normal;
+ -moz-border-radius: 11px;
+ -khtml-border-radius: 11px;
+ -webkit-border-radius: 11px;
border-radius: 5px;
+ background: #fff;
+ border: 1px solid #e5e5e5;
+ -moz-box-shadow: rgba(200,200,200,1) 0 4px 18px;
+ -webkit-box-shadow: rgba(200,200,200,1) 0 4px 18px;
+ -khtml-box-shadow: rgba(200,200,200,1) 0 4px 18px;
+ box-shadow: rgba(200,200,200,1) 0 4px 18px;
}
-form .forgetmenot { font-weight: normal; float: left; margin-bottom: 0;}
+form .forgetmenot { font-weight: normal; float: left; margin-bottom: 0; }
#login form .submit input {
- font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
- padding: 3px 5px;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ padding: 3px 10px;
border: none;
- font-size: 13px;
+ font-size: 12px;
border-width: 1px;
border-style: solid;
- -moz-border-radius: 3px;
- -khtml-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- cursor: default;
- text-decoration: none;
- margin-top: -6px;
+ -moz-border-radius: 11px;
+ -khtml-border-radius: 11px;
+ -webkit-border-radius: 11px;
+ border-radius: 11px;
+ cursor: pointer;
+ text-decoration: none;
+ margin-top: -3px;
+ text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
+}
+
+#login form p {
+ margin-bottom: 0;
+}
+
+label {
+ color: #777;
+ font-size: 13px;
+}
+
+form .forgetmenot label {
+ font-size: 11px;
+ line-height: 19px;
}
form .submit { float: right; }
form p { margin-bottom: 24px; }
h1 a {
- background: url(../images/logo-login.gif) no-repeat;
- width: 292px;
- height: 66px;
+ background: url(../images/logo-login.gif) no-repeat top center;
+ width: 326px;
+ height: 67px;
text-indent: -9999px;
overflow: hidden;
padding-bottom: 15px;
display: block;
}
+#nav {
+ text-shadow: rgba(255,255,255,1) 0 1px 0;
+}
+
#backtoblog a {
position: absolute;
top: 7px;
text-decoration: none;
}
-#login { width: 292px; margin: 7em auto; }
+#login { width: 320px; margin: 7em auto; }
#login_error, .message {
margin: 0 0 16px 8px;
border-width: 1px;
border-style: solid;
padding: 12px;
+ -moz-border-radius: 3px;
+ -khtml-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
}
#nav { margin: 0 0 0 8px; padding: 16px; }
#user_pass, #user_login, #user_email {
- font-size: 20px;
+ font-size: 24px;
width: 97%;
padding: 3px;
+ margin-top: 2px;
margin-right: 6px;
-}
\ No newline at end of file
+ margin-bottom: 16px;
+ border: 1px solid #e5e5e5;
+ background: #fbfbfb;
+}
body#media-upload ul#sidemenu {
- left:auto;
- right:0;
- width: 620px;
+ left: auto;
+ right: 0;
}
#search-filter {
- text-align:left;
+ text-align: left;
}
+/* specific to the image upload form */
.align .field label {
padding: 0 28px 0 0;
margin: 0 0 0 1em;
}
.image-align-none-label, .image-align-left-label, .image-align-center-label, .image-align-right-label {
- background-position:center right;
+ background-position: center right;
+}
+tr.image-size div.image-size-item {
+ float: right;
}
tr.image-size label {
- margin: 0 0 0 1em;
+ margin: 0 1em 0 0;
}
.filename.original {
float: right;
}
.crunching {
text-align: left;
- margin-right:0;
+ margin-right: 0;
margin-left: 5px;
}
button.dismiss {
- right:auto;
- left:5px;
+ right: auto;
+ left: 5px;
}
.file-error {
margin: 0 50px 5px 0;
}
.progress {
- left:auto;
- right:0;
+ left: auto;
+ right: 0;
+}
+.describe td {
+ padding: 0 0 0 5px;
}
.bar {
- border-right-width:0;
+ border-right-width: 0;
border-left-width: 3px;
+ border-right-style: none;
border-left-style: solid;
}
.media-item .pinkynail {
- float:right;
+ float: right;
}
-.describe-toggle-on, .describe-toggle-off {
+.describe-toggle-on,
+.describe-toggle-off {
float: left;
- margin-right:0;
+ margin-right: 0;
margin-left: 20px;
}
/* Specific to Uploader */
-
#media-upload .media-upload-form p {
margin: 0 0 1em 1em;
}
.filename {
float: right;
- margin-left:0;
+ margin-left: 0;
margin-right: 10px;
}
#media-upload .describe th.label {
- text-align:right;
+ text-align: right;
}
.menu_order {
- float:left;
+ float: left;
+}
+.media-upload-form label.form-help, td.help, #media-upload p.help, #media-upload label.help {
+ font-family: Tahoma, Arial;
+}
+#gallery-settings #basic th.label {
+ padding: 5px 0 5px 5px;
+}
+#gallery-settings .title, h3.media-title {
+ font-family: Tahoma, Arial;
+}
+#gallery-settings .describe th.label {
+ text-align: right;
+}
+#gallery-settings label,
+#gallery-settings legend {
+ margin-right: 0;
+ margin-left: 15px;
+}
+#gallery-settings .align .field label {
+ margin: 0 0 0 1.5em;
}
text-align: right;
}
-.media-upload-form label, .media-upload-form legend {
- display:block;
+.media-upload-form label,
+.media-upload-form legend {
+ display: block;
font-weight: bold;
font-size: 13px;
margin-bottom: 0.5em;
margin: 0 0 0.5em 0;
}
-th { position: relative; }
+th {
+ position: relative;
+}
.media-upload-form label.form-help, td.help {
+ font-family: "Lucida Grande", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
font-style: italic;
font-weight: normal;
}
padding: 0 0 0 28px;
margin: 0 1em 0 0;
}
+
.image-align-none-label {
background: url(../images/align-none.png) no-repeat center left;
}
background: url(../images/align-right.png) no-repeat center left;
}
-#flash-upload-ui, .insert-gallery {
- display: none;
+tr.image-size td {
+ width: 460px;
+}
+
+tr.image-size div.image-size-item {
+ float: left;
+ width: 25%;
+ margin: 0;
}
tr.image-size label {
display: inline;
- margin: 0 1em 0 0;
+ margin: 0 0 0 1em;
}
+
.pinkynail {
max-width: 40px;
max-height: 40px;
.filename.original {
float: left;
}
+
.crunching {
display: block;
line-height: 32px;
text-align: right;
margin-right: 5px;
}
+
button.dismiss {
position: absolute;
- top: 5px;
+ top: 7px;
right: 5px;
z-index: 4;
+ width: 8em;
}
+
.file-error {
- margin: 0 0 5px 50px;
+ float: left;
font-weight: bold;
+ padding: 10px;
}
.progress {
position: absolute;
- top: 0px;
- left: 0px;
+ top: 0;
+ left: 0;
width: 623px;
height: 36px;
}
+
.bar {
- width: 0px;
+ width: 0;
height: 100%;
border-right-width: 3px;
border-right-style: solid;
}
-#library-form .progress, #gallery-form .progress {
+#library-form .progress,
+#gallery-form .progress,
+#flash-upload-ui,
+.insert-gallery,
+.describe.startopen,
+.describe.startclosed {
display: none;
}
max-width: 128px;
max-height: 128px;
}
+
.media-item .pinkynail {
float: left;
margin: 2px;
thead.media-item-info tr {
background-color: transparent;
}
-thead.media-item-info th, thead.media-item-info td {
+
+thead.media-item-info th,
+thead.media-item-info td {
border: none;
margin: 0;
}
border: 8px solid #fff;
}
-.describe.startopen, .describe.startclosed {
- display: none;
-}
abbr.required {
text-decoration: none;
border: none;
}
+
.describe label {
display: inline;
}
+
.describe td {
vertical-align: middle;
+ padding: 0 5px 0 0;
}
+
.describe td.A1 {
width: 132px;
}
-.describe input[type="text"], .describe textarea {
+
+.describe input[type="text"],
+.describe textarea {
width: 460px;
+ border-width: 1px;
+ border-style: solid;
}
-.describe-toggle-on, .describe-toggle-off {
+
+.describe-toggle-on,
+.describe-toggle-off {
display: block;
line-height: 36px;
float: right;
margin-right: 20px;
}
+
.describe-toggle-off {
display: none;
}
-.clickmask {
-}
-
.hidden {
- height: 0px;
- width: 0px;
+ height: 0;
+ width: 0;
overflow: hidden;
border: none;
}
padding: 1em 0;
}
-#media-upload p.help {
+#media-upload p.help,
+#media-upload label.help {
+ font-family: "Lucida Grande", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
font-style: italic;
font-weight: normal;
}
+
#media-upload tr.image-size td.field {
text-align: center;
}
+
#media-upload #media-items {
border-width: 1px;
border-style: solid;
overflow: hidden;
max-width: 430px;
}
+
#media-upload .describe {
- border-top-width: 1px;
- border-top-style: solid;
padding: 5px;
width: 100%;
clear: both;
cursor: default;
}
+
+#media-upload .slidetoggle {
+ border-top-width: 1px;
+ border-top-style: solid;
+}
+
#media-upload .describe th.label {
padding-top: .5em;
text-align: left;
+ min-width: 120px;
}
+
#media-upload tr.align td.field {
text-align: center;
}
+
#media-upload tr.image-size {
margin-bottom: 1em;
height: 3em;
}
#filter .tablenav select {
- border-style:solid;
- border-width:1px;
- padding:2px;
- vertical-align:top;
+ border-style: solid;
+ border-width: 1px;
+ padding: 2px;
+ vertical-align: top;
+ width: auto;
}
#media-upload a.delete,
}
.menu_order_input {
- border: 1px solid #DDDDDD;
+ border: 1px solid #ddd;
font-size: 10px;
padding: 1px;
width: 23px;
}
#media-upload th.order-head {
- width: 25%;
- text-align: center;
+ width: 25%;
+ text-align: center;
}
#media-upload .widefat {
.sorthelper {
z-index: -1;
}
+
+#gallery-settings th.label {
+ width: 160px;
+}
+
+#gallery-settings #basic th.label {
+ padding: 5px 5px 5px 0;
+}
+
+#gallery-settings .title {
+ clear: both;
+ padding: 0 0 3px;
+ border-bottom-style: solid;
+ border-bottom-width: 1px;
+ font-family: Georgia,"Times New Roman",Times,serif;
+ font-size: 1.6em;
+ border-bottom-color: #DADADA;
+ color: #5A5A5A;
+}
+
+h3.media-title {
+ color: #5A5A5A;
+ font-family: Georgia,"Times New Roman",Times,serif;
+ font-size: 1.6em;
+ font-weight: normal;
+}
+
+#gallery-settings .describe td {
+ vertical-align: middle;
+ height: 3.5em;
+}
+
+#gallery-settings .describe th.label {
+ padding-top: .5em;
+ text-align: left;
+}
+
+#gallery-settings .describe {
+ padding: 5px;
+ width: 615px;
+ clear: both;
+ cursor: default;
+}
+
+#gallery-settings .describe select {
+ width: 15em;
+ border: 1px solid #dfdfdf;
+}
+
+#gallery-settings label,
+#gallery-settings legend {
+ font-size: 13px;
+ color: #464646;
+ margin-right: 15px;
+}
+
+#gallery-settings .align .field label {
+ margin: 0 1.5em 0 0;
+}
+
+#gallery-settings p.ml-submit {
+ border-top: 1px solid #dfdfdf;
+}
+
+#gallery-settings select#columns {
+ width: 6em;
+}
--- /dev/null
+div.star {
+ left: auto;
+ right: 0;
+ letter-spacing: 0;
+}
+.star img, div.star a, div.star a:hover, div.star a:visited {
+ right: auto;
+ left: 0;
+}
+#plugin-information ul#sidemenu {
+ left: auto;
+ right: 0;
+}
+#plugin-information h2 {
+ margin-right: 0;
+ margin-left: 200px;
+}
+#plugin-information .fyi {
+ margin-left: 5px;
+ margin-right: 20px;
+}
+#plugin-information .fyi h2 {
+ margin-left: 0;
+}
+#plugin-information .fyi ul {
+ padding: 10px 7px 10px 5px;
+}
+#plugin-information #section-screenshots li p {
+ padding-left: 0;
+ padding-right: 20px;
+}
+#plugin-information .updated,
+#plugin-information pre {
+ margin-right: 0;
+ margin-left: 215px;
+}
+#plugin-information .updated, #plugin-information .error {
+ clear: none;
+ direction: rtl;
+}
+#section-description {
+ direction: ltr;
+}
--- /dev/null
+/* NOTE: the following CSS rules(.star*) are taken more or less straight from the bbPress rating plugin. */
+div.star-holder {
+ position: relative;
+ height: 19px;
+ width: 100px;
+ font-size: 19px;
+}
+
+div.star {
+ height: 100%;
+ position: absolute;
+ top: 0;
+ left: 0;
+ background-color: transparent;
+ letter-spacing: 1ex;
+ border: none;
+}
+
+.star1 { width: 20%; }
+.star2 { width: 40%; }
+.star3 { width: 60%; }
+.star4 { width: 80%; }
+.star5 { width: 100%; }
+
+.star img, div.star a, div.star a:hover, div.star a:visited {
+ display: block;
+ position: absolute;
+ right: 0;
+ border: none;
+ text-decoration: none;
+}
+
+div.star img {
+ width: 19px;
+ height: 19px;
+ border-left: 1px solid #fff;
+ border-right: 1px solid #fff;
+}
+
+/* Start custom CSS */
+/* Header on thickbox */
+#plugin-information-header {
+ margin: 0;
+ padding: 0 5px;
+ font-weight: bold;
+ position: relative;
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ height: 2.5em;
+}
+#plugin-information ul#sidemenu {
+ font-weight: normal;
+ margin: 0 5px;
+ position: absolute;
+ left: 0;
+ bottom: -1px;
+}
+
+/* Install sidemenu */
+#plugin-information p.action-button {
+ width: 100%;
+ padding-bottom: 0;
+ margin-bottom: 0;
+ margin-top: 10px;
+ -moz-border-radius: 3px 0 0 3px;
+ -webkit-border-top-left-radius: 3px;
+ -khtml-border-top-left-radius: 3px;
+ border-top-left-radius: 3px;
+ -webkit-border-bottom-left-radius: 3px;
+ -khtml-border-bottom-left-radius: 3px;
+ border-top-bottom-radius: 3px;
+}
+
+#plugin-information .action-button a {
+ text-align: center;
+ font-weight: bold;
+ text-decoration: none;
+ display: block;
+ line-height: 2em;
+}
+
+#plugin-information h2 {
+ clear: none !important;
+ margin-right: 200px;
+}
+
+#plugin-information .fyi {
+ margin-left: 10px;
+ margin-bottom: 50px;
+ width: 210px;
+}
+
+#plugin-information .fyi h2 {
+ font-size: 0.9em;
+ margin-bottom: 0;
+ margin-right: 0;
+}
+
+#plugin-information .fyi h2.mainheader {
+ padding: 5px;
+ -moz-border-radius-topleft: 3px;
+ -webkit-border-top-left-radius: 3px;
+ -khtml-border-top-left-radius: 3px;
+ border-top-left-radius: 3px;
+}
+
+#plugin-information .fyi ul {
+ padding: 10px 5px 10px 7px;
+ margin: 0;
+ list-style: none;
+ -moz-border-radius-bottomleft: 3px;
+ -webkit-border-bottom-left-radius: 3px;
+ -khtml-border-bottom-left-radius: 3px;
+ border-top-bottom-radius: 3px;
+}
+
+#plugin-information .fyi li {
+ margin-right: 0;
+}
+
+#plugin-information #section-holder {
+ padding: 10px;
+}
+
+#plugin-information .section ul,
+#plugin-information .section ol {
+ margin-left: 16px;
+ list-style-type: square;
+ list-style-image: none;
+}
+
+#plugin-information #section-screenshots li img {
+ vertical-align: text-top;
+}
+
+#plugin-information #section-screenshots li p {
+ font-style: italic;
+ padding-left: 20px;
+ padding-bottom: 2em;
+}
+
+#plugin-information .updated,
+#plugin-information pre {
+ margin-right: 215px;
+}
+
+#plugin-information pre {
+ padding: 7px;
+}
\ No newline at end of file
+++ /dev/null
-.ui-tabs-nav {
- margin-right: 0;
-}
+++ /dev/null
-#posting {
- position: static !important;
-}
- .ui-tabs-nav {
- margin-left: 0;
- border: 0 !important;
-}
body {
- font-family: Tahoma;
+ font-family: Tahoma, Arial;
}
-.ui-tabs-nav {
- padding-left:0;
- padding-right:8px;
-}
-.ui-tabs-nav li {
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML {
+ margin: 0px 0 0 5px;
float: right;
}
-.button {
- font-family: Tahoma;
- margin-left:0;
- margin-right: 5px;
+/* Editor/Main Column */
+div#poststuff {
+ padding-left: 0;
+ padding-right: 10px;
}
-#wphead #viewsite {
- margin-left:0;
- margin-right: 10px;
+.posting {
+ margin-right: 0;
+ margin-left: 228px;
+ left:auto;
+ right: 0;
}
-#viewsite {
- right:auto;
- left: 8px;
+#side-info-column {
+ float: left;
+ right: auto;
+ left: 0;
+ margin-right: 0;
+ margin-left: 10px;
}
-#wphead #viewsite a {
- font-family: Tahoma;
+#side-info-column .sleeve {
+ padding-left: 0;
+ padding-right: 10px;
}
-h1 {
- right:auto;
- left:0;
+h3.tb {
+ margin-left: 0;
+ margin-right: 5px;
}
-div#posting {
- padding-left:0;
- padding-right: 16px;
+#actions {
+ float: left;
}
-#photo_directions span {
- right:auto;
- left:3px;
+#extra_fields #actions {
+ right: auto;
+ left: 4px;
}
-#img_container a {
- float:right;
+#actions li {
+ float: right;
+ margin-right: 0;
+ margin-left: 10px;
+}
+#extra_fields .button {
+ margin-right: 0;
+ margin-left: 5px;
}
-#img_container a, #img_container a:link, #img_container a:visited {
- margin:0 0 4px 4px;
+/* Photo Styles */
+#img_container a {
+ float: right;
}
-div#categories {
- right:auto;
- left:16px;
+#category-add input, #category-add select {
+ font-family: Tahoma, Arial;
}
-div#categories h2 {
- margin: .5em 1em .5em 0;
+#categorydiv ul.categorychecklist ul {
+ margin-left: 0;
+ margin-right: 18px;
}
+/* Tags */
#tagsdiv #newtag {
- margin-right:0;
- margin-left: 5px;
-}
-#jaxtag {
- padding-left:0;
- padding-right: 1em;
+ margin-right: 0;
+ margin-left: 5px;
}
-#tagchecklist {
- padding-left:0;
- padding-right: 1em;
+#tagadd {
+ margin-left: 0;
+ margin-right: 3px;
}
#tagchecklist span {
- margin-right: 10px;
margin-left: .5em;
+ margin-right: 10px;
float: right;
}
#tagchecklist span a {
- margin: 6px -9px 0pt 0;
+ margin: 6px -9px 0 0;
float: right;
}
-.submitbox {
- float: left;
-}
-.submitbox .submit input {
- text-align:right;
+#content {
+ margin-left: 0;
+ margin-right: 1%;
}
-.video_split #extra_fields {
- float:right;
-}
-.video_split .editor_area {
- float: left;
+.submit input,
+.button,
+.button-primary,
+.button-secondary,
+.button-highlighted,
+#postcustomstuff .submit input {
+ font-family: tahoma;
}
.ac_results li {
- text-align:right;
+ text-align: right;
}
#TB_ajaxContent #options {
- right:auto;
- left:25px;
+ right: auto;
+ left: 25px;
}
#post_status {
- margin-left:0;
+ margin-left: 0;
margin-right: 10px;
}
+/* Footer */
#footer {
padding: 10px 60px 0 0;
}
body {
- font: 13px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
+ font: 13px "Lucida Grande", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
color: #333;
- margin: 0px;
- padding: 0px;
+ margin: 0;
+ padding: 0;
}
-img { border: 0; }
-/* Tabs */
-@media projection , screen {
- .ui-tabs-hide {
- display: none;
- }
+img {
+ border: none;
}
-@media print {
- .ui-tabs-nav {
- display: none;
- }
+/* Header */
+#wphead {
+ border-top: none;
+ padding-top: 4px;
+ background: #444 !important;
}
-.ui-tabs-nav {
- list-style: none;
- border-bottom: 1px solid #C6D9E9;
- padding-left: 8px;
- margin-bottom: .5em;
- margin-top: -2em;
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML {
+ -moz-border-radius-bottomleft: 0;
+ -moz-border-radius-bottomright: 0;
+ -moz-border-radius-topleft: 3px;
+ -moz-border-radius-topright: 3px;
+ -khtml-border-radius-bottomleft: 0;
+ -khtml-border-radius-bottomright: 0;
+ -khtml-border-radius-topleft: 3px;
+ -khtml-border-radius-topright: 3px;
+ -webkit-border-radius-bottomleft: 0;
+ -webkit-border-radius-bottomright: 0;
+ -webkit-border-radius-topleft: 3px;
+ -webkit-border-radius-topright: 3px;
+ border-radius-bottomleft: 0;
+ border-radius-bottomright: 0;
+ border-radius-topleft: 3px;
+ border-radius-topright: 3px;
+ border-style: solid;
+ border-width: 1px;
+ cursor: pointer;
+ display: block;
+ height: 18px;
+ margin: 0px 5px 0 0;
+ padding: 0px 5px 0px;
+ background-color: #E9E9E9;
+ border-bottom-color: #E9E9E9;
+ color: #333333;
+ font-size: 10px;
+ line-height: 18px;
+ float: left;
}
-/* Additional IE specific bug fixes... */
-* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
- display: inline-block;
+.howto {
+ margin-top: 2px;
+ margin-bottom: 3px;
+ font-size: 11px;
+ font-style: italic;
+ display: block;
}
-* :first-child+html .ui-tabs-nav {
- /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
- display: inline-block;
+input.text {
+ outline-color: -moz-use-text-color;
+ outline-style: none;
+ outline-width: medium;
+ width: 100%;
}
-.ui-tabs-nav:after {
- /* clearing without presentational markup, IE gets extra treatment */
- display: block;
- clear: both;
- content: " ";
+#message {
+ -moz-border-radius: 6px;
+ -khtml-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
}
-.ui-tabs-nav li {
- float: left;
- margin: 0;
- height: 2em;
- line-height: 2em;
+/* Editor/Main Column */
+div#poststuff {
+ padding-left: 10px;
+ margin-top: 10px;
}
-.ui-tabs-nav a,.ui-tabs-nav a span {
- display: block;
+div.zerosize {
+ border: 0 none;
+ height: 0;
+ margin: 0;
+ overflow: hidden;
+ padding: 0;
+ position: absolute;
+ width: 0;
}
-.ui-tabs-nav a {
- margin: 1px 0 0;
- /* position: relative makes opacity fail for disabled tab in IE */
- padding-left: 0;
- color: #27537a;
- font-weight: bold;
- line-height: 2em;
- text-align: center;
- text-decoration: none;
- white-space: nowrap; /* required in IE 6 */
- outline: 0; /* prevent dotted border in Firefox */
- padding: 0 1em;
+#poststuff #edButtonPreview.active,
+#poststuff #edButtonHTML.active {
+ display: none;
}
-.ui-tabs-nav .ui-tabs-selected a {
+.posting {
+ margin-right: 228px;
position: relative;
- top: 1px;
- z-index: 2;
- margin-top: 0;
- -moz-border-radius-topleft: 4px;
- -moz-border-radius-topright: 4px;
- -webkit-border-top-left-radius: 4px;
- -webkit-border-top-right-radius: 4px;
- border-style: solid;
- border-width: 1px;
- background: white;
- border-bottom-width: 2px;
- margin-top: -2px;
+ left: 0;
}
-.ui-tabs-nav a:hover,.ui-tabs-nav a:focus,.ui-tabs-nav a:active,
-.ui-tabs-nav .ui-tabs-selected a:link,.ui-tabs-nav .ui-tabs-selected a:visited {
- cursor: pointer;
+#side-info-column {
+ float: right;
+ width: 218px;
+ position: absolute;
+ right: 0;
+ margin-right: 10px;
}
-/* Header */
-#wphead {
- border-top: none;
- height: 2em;
- padding-top: 8px;
+#side-info-column .sleeve {
+ padding-left: 10px;
}
-.button {
- font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
- padding: 3px 5px;
- font-size: 12px;
- line-height: 1.5em;
- border-width: 1px;
- border-style: solid;
- -moz-border-radius: 3px;
- -khtml-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- cursor: pointer;
- margin-left: 5px;
- text-decoration: none;
+#poststuff .inside {
+ font-size: 11px;
+ margin: 0 12px 12px;
}
-.howto {
- font-size: 11px;
- font-style: italic;
- display: block;
+#poststuff h2, #poststuff h3 {
+ font-size: 14px;
+ font-weight: bold;
+ padding: 7px;
+ margin: 0 0 10px;
+ background: #dfdfdf url("../images/gray-grad.png") repeat-x left top;
+ font-size: 12px;
+ font-weight: bold;
+ line-height: 1;
+ margin: 0 0 10px;
+ padding: 7px 9px;
+ text-shadow: 0 1px 0 #FFFFFF;
}
-#wphead #viewsite {
- position: absolute;
- margin-top: 12px;
- margin-left: 10px;
+h3.tb {
+ text-shadow: 0 1px 0 #FFFFFF;
+ font-weight: bold;
+ font-size: 12px;
+ margin-left: 5px;
}
-#viewsite {
- position: relative;
- right: 8px;
- top: 6px;
- margin: 0 !important;
+#TB_window {
+ border: 1px solid #333;
+ -moz-border-radius: 6px;
+ -khtml-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
}
-#wphead #viewsite a {
- font: 12px "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
- padding: 3px 4px;
- display: block;
- letter-spacing: normal;
+.metabox-holder .postbox,
+.postbox,
+.stuffbox {
+ margin-bottom: 10px;
border-width: 1px;
border-style: solid;
- -moz-border-radius: 3px;
- -khtml-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
- text-decoration: none;
+ line-height: 1;
+ -moz-border-radius: 6px;
+ -khtml-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
+ border-color: #DFDFDF;
}
-#previewview {
- padding-top: 8px !important;
- padding-bottom: 8px !important;
-}
-
-h1 {
- font-size: .75em;
- line-height: 2.666em;
- top: .5em;
- right: 0;
- margin: 0 !important;
- padding: 0 !important;
- width: 236px;
- background: none;
+.titlediv {
+ border-color: #DFDFDF;
}
-input.text {
- border: 0pt none;
- outline-color: -moz-use-text-color;
- outline-style: none;
- outline-width: medium;
- padding: 0pt;
- width: 100%;
+#title, .tbtitle {
+ -moz-border-radius: 6px;
+ -khtml-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
border-style: solid;
- color: #333333;
-}
-
-/* Editor/Main Column */
-
-div#container {
- margin: 0;
- min-width: 500px;
+ border-width: 1px;
+ font-size: 1.7em;
+ outline: none;
+ padding: 3px 4px;
+ border-color: #DFDFDF;
}
-div#container form {
- margin: 0px;
- padding: 0px;
+.tbtitle {
+ font-size: 12px;
+ padding: 3px;
}
-div#posting {
- padding-left: 16px;
- position: absolute;
- z-index: 1;
- width: 66%;
+#title {
+ width: 98%;
}
-#post_title {
- width: 99%;
+.postbox h2 {
+ background-image: url(../images/postbox-bg.gif);
+ background-position: left top;
+ background-repeat: repeat-x;
+ background-color: #DFDFDF;
}
-.titlewrap {
+.editor-container {
+ -moz-border-radius: 6px;
+ -khtml-border-radius: 6px;
+ -webkit-border-radius: 6px;
+ border-radius: 6px;
+ border-collapse: separate;
border-style: solid;
border-width: 1px;
- padding: 2px 3px;
- border-color: #CCCCCC;
+ border-color: #DFDFDF;
}
-div#posting h2 {
- margin: .5em 0 .25em 0;
- font-size: 12px;
- padding: 3px;
- background: ;
+.postdivrich {
+ position: relative;
+ padding-top: 25px;
}
-.editor-container {
- border-width: 1px;
- border-color: #ccc;
- border-style: solid;
- margin-bottom: 1em;
+#actions {
+ clear: both;
+ float: right;
+ margin-top: -19px;
+ position: relative;
+}
+#extra_fields #actions {
+ clear: both;
+ position: absolute;
+ right: 4px;
+ top: 6px;
+ margin: 0;
}
-/* Photo Styles */
-
-#photo_directions {
- margin-top: .25em;
- display: block;
- position: relative;
+#actions li {
+ float: left;
+ list-style: none;
+ margin-right: 10px;
+}
+#extra_fields .button {
+ margin-right: 5px;
}
-#photo_directions span {
- display: block;
- position: absolute;
- top: 0;
- right: 3px;
+/* Photo Styles */
+.photolist {
+ margin-top: -10px;
}
#photo_saving {
#img_container {
background-color: #fff;
+ height: 101px;
+ width: 100%;
+}
+
+#extra_fields {
+ margin-top: 10px;
+ position: relative;
+}
+
+#extra_fields .postbox {
+ margin-bottom: 5px;
+}
+
+#extra_fields .titlewrap {
+ padding: 0;
overflow: auto;
height: 100px;
}
+#img_container {
+ position: relative;
+}
+
#img_container a {
display: block;
- width: 79px;
- height: 79px;
float: left;
+ overflow: hidden;
+ vertical-align: center;
+}
+
+#img_container img, #img_container a {
+ width: 68px;
+ height: 68px;
}
#img_container img {
- width: 75px;
- height: 75px;
- border: 0px;
- padding: 2px;
+ width: 68px;
+ height: 68px;
+ border: none;
background-color: #f4f4f4;
cursor: pointer;
}
-#img_container a, #img_container a:link, #img_container a:visited {
- border: 2px solid #ccc;
- margin: 0 4px 4px 0;
-}
-#img_container a:hover, #img_container a:active {
- border: 2px solid #000;
+
+#img_container a,
+#img_container a:link,
+#img_container a:visited {
+ border: 1px solid #ccc;
+ display: block;
+ position: relative;
+}
+
+#img_container a:hover,
+#img_container a:active {
+ border-color: #000;
+ z-index: 1000;
+ border-width: 2px;
+ margin: -1px;
+}
+
+/* Video */
+#embed-code {
+ width: 100%;
+ height: 98px;
}
/* Submit Column */
+#viewsite {
+ padding: 0;
+ margin: 0 0 20px 0;
+ font-size: 10px;
+ clear: both;
+}
-div#categories {
- font-size: 85%;
- position: absolute;
- top: 50px;
- right: 16px;
- width: 27%;
- z-index: 2;
+#viewsite .button {
+ margin: 0 0 0px 0;
+ display: block;
}
-div#categories h2 {
- color: #333;
+.wp-hidden-children .wp-hidden-child {
+ display: none;
+}
+
+#category-adder {
+ padding: 4px 0;
+}
+
+#category-adder h4 {
+ margin: 0 0 8px;
+}
+
+#category-add input {
+ width: 94%;
+ font-family: Verdana, Arial, Helvetica, sans-serif;
+ font-size: 13px;
+ margin: 1px;
+ padding: 3px;
+}
+
+#category-add select {
+ width: 70%;
+ -x-system-font: none;
+ border-style: solid;
+ border-width: 1px;
+ font-family: "Lucida Grande", "Bitstream Vera Sans", Verdana, Arial, sans-serif;
font-size: 12px;
- margin: .5em 0 .5em 1em;
- padding: 0;
+ height: 2em;
+ line-height: 20px;
+ padding: 2px;
+ margin: 1px;
+ vertical-align: top;
}
-#categories-all {
- overflow: auto;
- &n