<body>
<h1 id="logo" style="text-align: center">
<img alt="WordPress" src="wp-admin/images/wordpress-logo.png" />
- <br /> Version 2.8.5
+ <br /> Version 2.9
</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.8.5:</h2>
+<h2>Upgrading from any previous WordPress to 2.9:</h2>
<ol>
<li>Delete your old WP files, saving ones you've modified.</li>
<li>Upload the new files.</li>
<h1>System Recommendations</h1>
<ul>
<li>PHP version <strong>4.3</strong> or higher.</li>
- <li>MySQL version <strong>4.0</strong> or higher.</li>
+ <li>MySQL version <strong>4.1.2</strong> or higher.</li>
<li>... and a link to <a href="http://wordpress.org/">http://wordpress.org</a> on your site.</li>
</ul>
<p>WordPress is the official continuation of <a href="http://cafelog.com/">b2/cafélog</a>, which came from Michel V. The work has been continued by the <a href="http://wordpress.org/about/">WordPress developers</a>. If you would like to support WordPress, please consider <a href="http://wordpress.org/donate/">donating</a>.</p>
$x->send();
}
- if ( !empty( $_POST['action']) )
- do_action( 'wp_ajax_nopriv_' . $_POST['action'] );
+ if ( !empty( $_REQUEST['action']) )
+ do_action( 'wp_ajax_nopriv_' . $_REQUEST['action'] );
die('-1');
}
echo $test_str;
die;
} elseif ( 2 == $_GET['test'] ) {
+ if ( !isset($_SERVER['HTTP_ACCEPT_ENCODING']) )
+ die('-1');
if ( false !== strpos( strtolower($_SERVER['HTTP_ACCEPT_ENCODING']), 'deflate') && function_exists('gzdeflate') && ! $force_gzip ) {
header('Content-Encoding: deflate');
$out = gzdeflate( $test_str, 1 );
die('0');
break;
+case 'imgedit-preview' :
+ $post_id = intval($_GET['postid']);
+ if ( empty($post_id) || !current_user_can('edit_post', $post_id) )
+ die('-1');
+
+ check_ajax_referer( "image_editor-$post_id" );
+
+ include_once( ABSPATH . 'wp-admin/includes/image-edit.php' );
+ if ( !stream_preview_image($post_id) )
+ die('-1');
+
+ die();
+ break;
+case 'oembed-cache' :
+ $return = ( $wp_embed->cache_oembed( $_GET['post'] ) ) ? '1' : '0';
+ die( $return );
+ break;
default :
do_action( 'wp_ajax_' . $_GET['action'] );
die('0');
if ( 0 != $total % $per_page && 1 != mt_rand( 1, $per_page ) ) // Only do the expensive stuff on a page-break, and about 1 other time per page
die( (string) time() );
+ $post_id = 0;
$status = 'total_comments'; // What type of comment count are we looking for?
$parsed = parse_url( $url );
if ( isset( $parsed['query'] ) ) {
parse_str( $parsed['query'], $query_vars );
if ( !empty( $query_vars['comment_status'] ) )
$status = $query_vars['comment_status'];
+ if ( !empty( $query_vars['p'] ) )
+ $post_id = (int) $query_vars['p'];
}
- $comment_count = wp_count_comments();
+ $comment_count = wp_count_comments($post_id);
$time = time(); // The time since the last comment count
if ( isset( $comment_count->$status ) ) // We're looking for a known type of comment count
$id = isset($_POST['id'])? (int) $_POST['id'] : 0;
switch ( $action = $_POST['action'] ) :
case 'delete-comment' : // On success, die with time() instead of 1
- check_ajax_referer( "delete-comment_$id" );
if ( !$comment = get_comment( $id ) )
die( (string) time() );
if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
die('-1');
- if ( isset($_POST['spam']) && 1 == $_POST['spam'] ) {
- if ( 'spam' == wp_get_comment_status( $comment->comment_ID ) )
+ check_ajax_referer( "delete-comment_$id" );
+ $status = wp_get_comment_status( $comment->comment_ID );
+
+ if ( isset($_POST['trash']) && 1 == $_POST['trash'] ) {
+ if ( 'trash' == $status )
die( (string) time() );
- $r = wp_set_comment_status( $comment->comment_ID, 'spam' );
- } else {
+ $r = wp_trash_comment( $comment->comment_ID );
+ } elseif ( isset($_POST['untrash']) && 1 == $_POST['untrash'] ) {
+ if ( 'trash' != $status )
+ die( (string) time() );
+ $r = wp_untrash_comment( $comment->comment_ID );
+ } elseif ( isset($_POST['spam']) && 1 == $_POST['spam'] ) {
+ if ( 'spam' == $status )
+ die( (string) time() );
+ $r = wp_spam_comment( $comment->comment_ID );
+ } elseif ( isset($_POST['unspam']) && 1 == $_POST['unspam'] ) {
+ if ( 'spam' != $status )
+ die( (string) time() );
+ $r = wp_unspam_comment( $comment->comment_ID );
+ } elseif ( isset($_POST['delete']) && 1 == $_POST['delete'] ) {
$r = wp_delete_comment( $comment->comment_ID );
+ } else {
+ die('-1');
}
+
if ( $r ) // Decide if we need to send back '1' or a more complicated response including page links and comment counts
_wp_ajax_delete_comment_response( $comment->comment_ID );
die( '0' );
die('0');
break;
case 'delete-tag' :
- check_ajax_referer( "delete-tag_$id" );
+ $tag_id = (int) $_POST['tag_ID'];
+ check_ajax_referer( "delete-tag_$tag_id" );
if ( !current_user_can( 'manage_categories' ) )
die('-1');
- if ( !empty($_POST['taxonomy']) )
- $taxonomy = $_POST['taxonomy'];
- else
- $taxonomy = 'post_tag';
+ $taxonomy = !empty($_POST['taxonomy']) ? $_POST['taxonomy'] : 'post_tag';
- $tag = get_term( $id, $taxonomy );
+ $tag = get_term( $tag_id, $taxonomy );
if ( !$tag || is_wp_error( $tag ) )
die('1');
- if ( wp_delete_term($id, $taxonomy))
+ if ( wp_delete_term($tag_id, $taxonomy))
die('1');
else
die('0');
else
die('0');
break;
+case 'trash-post' :
+case 'untrash-post' :
+ check_ajax_referer( "{$action}_$id" );
+ if ( !current_user_can( 'delete_post', $id ) )
+ die('-1');
+
+ if ( !get_post( $id ) )
+ die('1');
+
+ if ( 'trash-post' == $action )
+ $done = wp_trash_post( $id );
+ else
+ $done = wp_untrash_post( $id );
+
+ if ( $done )
+ die('1');
+
+ die('0');
+ break;
case 'delete-page' :
check_ajax_referer( "{$action}_$id" );
if ( !current_user_can( 'delete_page', $id ) )
$x->send();
}
- if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
- die('-1');
- if ( !current_user_can( 'moderate_comments' ) )
+ if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) && !current_user_can( 'moderate_comments' ) )
die('-1');
$current = wp_get_comment_status( $comment->comment_ID );
if ( $_POST['new'] == $current )
die( (string) time() );
- $r = 0;
- if ( in_array( $current, array( 'unapproved', 'spam' ) ) ) {
- check_ajax_referer( "approve-comment_$id" );
+ check_ajax_referer( "approve-comment_$id" );
+ if ( in_array( $current, array( 'unapproved', 'spam' ) ) )
$result = wp_set_comment_status( $comment->comment_ID, 'approve', true );
- } else {
- check_ajax_referer( "unapprove-comment_$id" );
+ else
$result = wp_set_comment_status( $comment->comment_ID, 'hold', true );
- }
+
if ( is_wp_error($result) ) {
$x = new WP_Ajax_Response( array(
'what' => 'comment',
$parent = 0;
$post_category = isset($_POST['post_category'])? (array) $_POST['post_category'] : array();
$checked_categories = array_map( 'absint', (array) $post_category );
- $popular_ids = isset( $_POST['popular_ids'] ) ?
- array_map( 'absint', explode( ',', $_POST['popular_ids'] ) ) :
- false;
+ $popular_ids = wp_popular_terms_checklist('category', 0, 10, false);
- $x = new WP_Ajax_Response();
foreach ( $names as $cat_name ) {
$cat_name = trim($cat_name);
$category_nicename = sanitize_title($cat_name);
wp_category_checklist( 0, $cat_id, $checked_categories, $popular_ids );
$data = ob_get_contents();
ob_end_clean();
- $x->add( array(
+ $add = array(
'what' => 'category',
'id' => $cat_id,
- 'data' => $data,
+ 'data' => str_replace( array("\n", "\t"), '', $data),
'position' => -1
- ) );
+ );
}
if ( $parent ) { // Foncy - replace the parent and all its children
$parent = get_category( $parent );
+ $term_id = $parent->term_id;
+
+ while ( $parent->parent ) { // get the top parent
+ $parent = &get_category( $parent->parent );
+ if ( is_wp_error( $parent ) )
+ break;
+ $term_id = $parent->term_id;
+ }
+
ob_start();
- dropdown_categories( 0, $parent );
+ wp_category_checklist( 0, $term_id, $checked_categories, $popular_ids, null, false );
$data = ob_get_contents();
ob_end_clean();
- $x->add( array(
+ $add = array(
'what' => 'category',
- 'id' => $parent->term_id,
- 'old_id' => $parent->term_id,
- 'data' => $data,
+ 'id' => $term_id,
+ 'data' => str_replace( array("\n", "\t"), '', $data),
'position' => -1
- ) );
-
+ );
}
+
+ ob_start();
+ wp_dropdown_categories( array( 'hide_empty' => 0, 'name' => 'newcat_parent', 'orderby' => 'name', 'hierarchical' => 1, 'show_option_none' => __('Parent category') ) );
+ $sup = ob_get_contents();
+ ob_end_clean();
+ $add['supplemental'] = array( 'newcat_parent' => $sup );
+
+ $x = new WP_Ajax_Response( $add );
$x->send();
break;
case 'add-link-category' : // On the Fly
if ( !current_user_can( 'manage_categories' ) )
die('-1');
- if ( '' === trim($_POST['name']) ) {
- $x = new WP_Ajax_Response( array(
- 'what' => 'tag',
- 'id' => new WP_Error( 'name', __('You did not enter a tag name.') )
- ) );
- $x->send();
- }
-
- if ( !empty($_POST['taxonomy']) )
- $taxonomy = $_POST['taxonomy'];
- else
- $taxonomy = 'post_tag';
-
- $tag = wp_insert_term($_POST['name'], $taxonomy, $_POST );
+ $taxonomy = !empty($_POST['taxonomy']) ? $_POST['taxonomy'] : 'post_tag';
+ $tag = wp_insert_term($_POST['tag-name'], $taxonomy, $_POST );
- if ( is_wp_error($tag) ) {
- $x = new WP_Ajax_Response( array(
- 'what' => 'tag',
- 'id' => $tag
- ) );
- $x->send();
+ if ( !$tag || is_wp_error($tag) || (!$tag = get_term( $tag['term_id'], $taxonomy )) ) {
+ echo '<div class="error"><p>' . __('An error has occured. Please reload the page and try again.') . '</p></div>';
+ exit;
}
- if ( !$tag || (!$tag = get_term( $tag['term_id'], $taxonomy )) )
- die('0');
-
- $tag_full_name = $tag->name;
- $tag_full_name = esc_attr($tag_full_name);
-
- $x = new WP_Ajax_Response( array(
- 'what' => 'tag',
- 'id' => $tag->term_id,
- 'position' => '-1',
- 'data' => _tag_row( $tag, '', $taxonomy ),
- '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();
+ echo _tag_row( $tag, '', $taxonomy );
+ exit;
break;
case 'get-tagcloud' :
if ( !current_user_can( 'edit_posts' ) )
break;
case 'add-comment' :
check_ajax_referer( $action );
- if ( !current_user_can( 'edit_post', $id ) )
+ if ( !current_user_can( 'edit_posts' ) )
die('-1');
$search = isset($_POST['s']) ? $_POST['s'] : false;
$status = isset($_POST['comment_status']) ? $_POST['comment_status'] : 'all';
if ( empty($status) )
die('1');
- elseif ( in_array($status, array('draft', 'pending') ) )
+ elseif ( in_array($status, array('draft', 'pending', 'trash') ) )
die( __('Error: you are replying to a comment on a draft post.') );
$user = wp_get_current_user();
$message = sprintf( __('Draft Saved at %s.'), date_i18n( $draft_saved_date_format ) );
$supplemental = array();
+ if ( isset($login_grace_period) )
+ $supplemental['session_expired'] = add_query_arg( 'interim-login', 1, wp_login_url() );
$id = $revision_id = 0;
if($_POST['post_ID'] < 0) {
case 'autosave-generate-nonces' :
check_ajax_referer( 'autosave', 'autosavenonce' );
$ID = (int) $_POST['post_ID'];
- if($_POST['post_type'] == 'post') {
- if(current_user_can('edit_post', $ID))
- die(wp_create_nonce('update-post_' . $ID));
- }
- if($_POST['post_type'] == 'page') {
- if(current_user_can('edit_page', $ID)) {
- die(wp_create_nonce('update-page_' . $ID));
- }
- }
+ $post_type = ( 'page' == $_POST['post_type'] ) ? 'page' : 'post';
+ if ( current_user_can( "edit_{$post_type}", $ID ) )
+ die( json_encode( array( 'updateNonce' => wp_create_nonce( "update-{$post_type}_{$ID}" ), 'deleteURL' => str_replace( '&', '&', wp_nonce_url( admin_url( $post_type . '.php?action=trash&post=' . $ID ), "trash-{$post_type}_{$ID}" ) ) ) ) );
+ do_action('autosave_generate_nonces');
die('0');
break;
case 'closed-postboxes' :
update_usermeta($user->ID, 'closedpostboxes_'.$page, $closed);
if ( is_array($hidden) ) {
- $hidden = array_diff( $hidden, array('submitdiv', 'pagesubmitdiv', 'linksubmitdiv') ); // postboxes that are always shown
+ $hidden = array_diff( $hidden, array('submitdiv', 'linksubmitdiv') ); // postboxes that are always shown
update_usermeta($user->ID, 'meta-box-hidden_'.$page, $hidden);
}
break;
case 'tag' :
- if ( !empty($_POST['taxonomy']) )
- $taxonomy = $_POST['taxonomy'];
- else
- $taxonomy = 'post_tag';
+ $taxonomy = !empty($_POST['taxonomy']) ? $_POST['taxonomy'] : 'post_tag';
$tag = get_term( $id, $taxonomy );
$_POST['description'] = $tag->description;
if ( !$tag || is_wp_error( $tag ) )
die( __('Tag not updated.') );
- echo _tag_row($tag);
+ echo _tag_row($tag, '', $taxonomy);
} else {
die( __('Tag not updated.') );
}
$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]);
+ $search_terms = array_map('_search_terms_tidy', $matches[0]);
$searchand = $search = '';
- foreach( (array) $search_terms as $term) {
+ 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 ';
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" );
+ $posts = $wpdb->get_results( "SELECT ID, post_title, post_status, post_date FROM $wpdb->posts WHERE post_type = '$what' AND post_status IN ('draft', 'publish') AND ($search) ORDER BY post_date_gmt DESC LIMIT 50" );
if ( ! $posts )
exit( __('No posts found.') );
- $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Time').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
+ $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th>'.__('Date').'</th><th>'.__('Status').'</th></tr></thead><tbody>';
foreach ( $posts as $post ) {
switch ( $post->post_status ) {
$stat = __('Pending Review');
break;
case 'draft' :
- $stat = __('Unpublished');
+ $stat = __('Draft');
break;
}
die();
break;
+case 'image-editor':
+ $attachment_id = intval($_POST['postid']);
+ if ( empty($attachment_id) || !current_user_can('edit_post', $attachment_id) )
+ die('-1');
+
+ check_ajax_referer( "image_editor-$attachment_id" );
+ include_once( ABSPATH . 'wp-admin/includes/image-edit.php' );
+
+ $msg = false;
+ switch ( $_POST['do'] ) {
+ case 'save' :
+ $msg = wp_save_image($attachment_id);
+ $msg = json_encode($msg);
+ die($msg);
+ break;
+ case 'scale' :
+ $msg = wp_save_image($attachment_id);
+ break;
+ case 'restore' :
+ $msg = wp_restore_image($attachment_id);
+ break;
+ }
+
+ wp_image_editor($attachment_id, $msg);
+ die();
+ break;
+case 'set-post-thumbnail':
+ $post_id = intval( $_POST['post_id'] );
+ if ( !current_user_can( 'edit_post', $post_id ) )
+ die( '-1' );
+ $thumbnail_id = intval( $_POST['thumbnail_id'] );
+
+ if ( $thumbnail_id == '-1' ) {
+ delete_post_meta( $post_id, '_thumbnail_id' );
+ die( _wp_post_thumbnail_html() );
+ }
+
+ if ( $thumbnail_id && get_post( $thumbnail_id ) ) {
+ $thumbnail_html = wp_get_attachment_image( $thumbnail_id, 'thumbnail' );
+ if ( !empty( $thumbnail_html ) ) {
+ update_post_meta( $post_id, '_thumbnail_id', $thumbnail_id );
+ die( _wp_post_thumbnail_html( $thumbnail_id ) );
+ }
+ }
+ die( '0' );
default :
do_action( 'wp_ajax_' . $_POST['action'] );
die('0');
//<![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();}}};
var userSettings = {'url':'<?php echo SITECOOKIEPATH; ?>','uid':'<?php if ( ! isset($current_user) ) $current_user = wp_get_current_user(); echo $current_user->ID; ?>','time':'<?php echo time() ?>'};
-var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>', pagenow = '<?php echo substr($pagenow, 0, -4); ?>', adminpage = '<?php echo $admin_body_class; ?>';
+var ajaxurl = '<?php echo admin_url('admin-ajax.php'); ?>', pagenow = '<?php echo substr($pagenow, 0, -4); ?>', adminpage = '<?php echo $admin_body_class; ?>', thousandsSeparator = '<?php echo $wp_locale->number_format['thousands_sep']; ?>', decimalPoint = '<?php echo $wp_locale->number_format['decimal_point']; ?>';
//]]>
</script>
<?php
update_category_cache();
+// Schedule trash collection
+if ( !wp_next_scheduled('wp_scheduled_delete') && !defined('WP_INSTALLING') )
+ wp_schedule_event(time(), 'daily', 'wp_scheduled_delete');
+
set_screen_options();
$posts_per_page = get_option('posts_per_page');
$date_format = get_option('date_format');
$time_format = get_option('time_format');
-wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'popuptitle', 'popupurl', 'text', 'trackback', 'pingback'));
+wp_reset_vars(array('profile', 'redirect', 'redirect_url', 'a', 'text', 'trackback', 'pingback'));
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'));
$_COOKIE[SECURE_AUTH_COOKIE] = $_REQUEST['auth_cookie'];
elseif ( empty($_COOKIE[AUTH_COOKIE]) && !empty($_REQUEST['auth_cookie']) )
$_COOKIE[AUTH_COOKIE] = $_REQUEST['auth_cookie'];
+if ( empty($_COOKIE[LOGGED_IN_COOKIE]) && !empty($_REQUEST['logged_in_cookie']) )
+ $_COOKIE[LOGGED_IN_COOKIE] = $_REQUEST['logged_in_cookie'];
unset($current_user);
require_once('admin.php');
break;
case 'delete':
+ if ( !isset( $_GET['cat_ID'] ) ) {
+ wp_redirect('categories.php');
+ exit;
+ }
+
$cat_ID = (int) $_GET['cat_ID'];
check_admin_referer('delete-category_' . $cat_ID);
if ( !current_user_can('manage_categories') )
wp_die(__('Cheatin’ uh?'));
- $cat_name = get_cat_name($cat_ID);
-
// Don't delete the default cats.
if ( $cat_ID == get_option('default_category') )
- wp_die(sprintf(__("Can’t delete the <strong>%s</strong> category: this is the default one"), $cat_name));
+ wp_die( sprintf( __("Can’t delete the <strong>%s</strong> category: this is the default one"), get_cat_name($cat_ID) ) );
wp_delete_category($cat_ID);
if ( !current_user_can('manage_categories') )
wp_die( __('You are not allowed to delete categories.') );
- foreach ( (array) $_GET['delete'] as $cat_ID ) {
- $cat_name = get_cat_name($cat_ID);
+ $cats = (array) $_GET['delete'];
+ $default_cat = get_option('default_category');
+ foreach ( $cats as $cat_ID ) {
+ $cat_ID = (int) $cat_ID;
- // Don't delete the default cats.
- if ( $cat_ID == get_option('default_category') )
- wp_die(sprintf(__("Can’t delete the <strong>%s</strong> category: this is the default one"), $cat_name));
+ // Don't delete the default cat.
+ if ( $cat_ID == $default_cat )
+ wp_die( sprintf( __("Can’t delete the <strong>%s</strong> category: this is the default one"), get_cat_name($cat_ID) ) );
wp_delete_category($cat_ID);
}
wp_safe_redirect( wp_get_referer() );
- exit();
+ exit;
break;
case 'edit':
if ( empty($pagenum) )
$pagenum = 1;
-$cats_per_page = get_user_option('categories_per_page');
-if ( empty($cats_per_page) )
+$cats_per_page = (int) get_user_option( 'categories_per_page', 0, false );
+if ( empty( $cats_per_page ) || $cats_per_page < 1 )
$cats_per_page = 20;
-$cats_per_page = apply_filters('edit_categories_per_page', $cats_per_page);
+$cats_per_page = apply_filters( 'edit_categories_per_page', $cats_per_page );
if ( !empty($_GET['s']) )
$num_cats = count(get_categories(array('hide_empty' => 0, 'search' => $_GET['s'])));
<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>
+ <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 esc_attr_e('Add Category'); ?>" /></p>
if ( isset( $_POST['deletecomment'] ) )
$action = 'deletecomment';
+if ( 'cdc' == $action )
+ $action = 'delete';
+elseif ( 'mac' == $action )
+ $action = 'approve';
+
+if ( isset( $_GET['dt'] ) ) {
+ if ( 'spam' == $_GET['dt'] )
+ $action = 'spam';
+ elseif ( 'trash' == $_GET['dt'] )
+ $action = 'trash';
+}
+
/**
* Display error message at bottom of comments.
*
if ( !current_user_can('edit_post', $comment->comment_post_ID) )
comment_footer_die( __('You are not allowed to edit comments on this post.') );
+ if ( 'trash' == $comment->comment_approved )
+ comment_footer_die( __('This comment is in the Trash. Please move it out of the Trash if you want to edit it.') );
+
$comment = get_comment_to_edit( $comment_id );
include('edit-form-comment.php');
break;
-case 'cdc' :
-case 'mac' :
+case 'delete' :
+case 'approve' :
+case 'trash' :
+case 'spam' :
require_once('admin-header.php');
$comment_id = absint( $_GET['c'] );
- $formaction = 'cdc' == $action ? 'deletecomment' : 'approvecomment';
- $nonce_action = 'cdc' == $action ? 'delete-comment_' : 'approve-comment_';
+ $formaction = $action . 'comment';
+ $nonce_action = 'approve' == $action ? 'approve-comment_' : 'delete-comment_';
$nonce_action .= $comment_id;
if ( !$comment = get_comment_to_edit( $comment_id ) )
comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'edit.php') );
if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
- comment_footer_die( 'cdc' == $action ? __('You are not allowed to delete comments on this post.') : __('You are not allowed to edit comments on this post, so you cannot approve this comment.') );
+ comment_footer_die( 'approve' != $action ? __('You are not allowed to delete comments on this post.') : __('You are not allowed to edit comments on this post, so you cannot approve this comment.') );
?>
<div class='wrap'>
<div class="narrow">
<?php
-if ( 'spam' == $_GET['dt'] ) {
- $caution_msg = __('You are about to mark the following comment as spam:');
- $button = __('Spam Comment');
-} elseif ( 'cdc' == $action ) {
- $caution_msg = __('You are about to delete the following comment:');
- $button = __('Delete Comment');
-} else {
- $caution_msg = __('You are about to approve the following comment:');
- $button = __('Approve Comment');
+switch ( $action ) {
+ case 'spam' :
+ $caution_msg = __('You are about to mark the following comment as spam:');
+ $button = __('Spam Comment');
+ break;
+ case 'trash' :
+ $caution_msg = __('You are about to move the following comment to the Trash:');
+ $button = __('Trash Comment');
+ break;
+ case 'delete' :
+ $caution_msg = __('You are about to delete the following comment:');
+ $button = __('Permanently Delete Comment');
+ break;
+ default :
+ $caution_msg = __('You are about to approve the following comment:');
+ $button = __('Approve Comment');
+ break;
}
?>
<p><strong><?php _e('Caution:'); ?></strong> <?php echo $caution_msg; ?></p>
-<p><?php _e('Are you sure you want to do that?'); ?></p>
-
-<form action='comment.php' method='get'>
-
-<table width="100%">
-<tr>
-<td><input type='button' class="button" value='<?php esc_attr_e('No'); ?>' onclick="self.location='<?php echo admin_url('edit-comments.php'); ?>" /></td>
-<td class="textright"><input type='submit' class="button" value='<?php echo esc_attr($button); ?>' /></td>
-</tr>
-</table>
-
-<?php wp_nonce_field( $nonce_action ); ?>
-<input type='hidden' name='action' value='<?php echo esc_attr($formaction); ?>' />
-<?php if ( 'spam' == $_GET['dt'] ) { ?>
-<input type='hidden' name='dt' value='spam' />
-<?php } ?>
-<input type='hidden' name='p' value='<?php echo esc_attr($comment->comment_post_ID); ?>' />
-<input type='hidden' name='c' value='<?php echo esc_attr($comment->comment_ID); ?>' />
-<input type='hidden' name='noredir' value='1' />
-</form>
-
-<table class="form-table" cellpadding="5">
+<table class="form-table comment-ays">
<tr class="alt">
<th scope="row"><?php _e('Author'); ?></th>
<td><?php echo $comment->comment_author; ?></td>
</tr>
</table>
+<p><?php _e('Are you sure you want to do that?'); ?></p>
+
+<form action='comment.php' method='get'>
+
+<table width="100%">
+<tr>
+<td><a class="button" href="<?php echo admin_url('edit-comments.php'); ?>"><?php esc_attr_e('No'); ?></a></td>
+<td class="textright"><input type='submit' class="button" value='<?php echo esc_attr($button); ?>' /></td>
+</tr>
+</table>
+
+<?php wp_nonce_field( $nonce_action ); ?>
+<input type='hidden' name='action' value='<?php echo esc_attr($formaction); ?>' />
+<input type='hidden' name='p' value='<?php echo esc_attr($comment->comment_post_ID); ?>' />
+<input type='hidden' name='c' value='<?php echo esc_attr($comment->comment_ID); ?>' />
+<input type='hidden' name='noredir' value='1' />
+</form>
+
</div>
</div>
<?php
break;
case 'deletecomment' :
+case 'trashcomment' :
+case 'untrashcomment' :
+case 'spamcomment' :
+case 'unspamcomment' :
$comment_id = absint( $_REQUEST['c'] );
check_admin_referer( 'delete-comment_' . $comment_id );
- if ( isset( $_REQUEST['noredir'] ) )
- $noredir = true;
- else
- $noredir = false;
+ $noredir = isset($_REQUEST['noredir']);
- if ( !$comment = get_comment( $comment_id ) )
+ if ( !$comment = get_comment($comment_id) )
comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'edit-comments.php') );
-
- if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
+ if ( !current_user_can('edit_post', $comment->comment_post_ID ) )
comment_footer_die( __('You are not allowed to edit comments on this post.') );
- if ( 'spam' == $_REQUEST['dt'] )
- wp_set_comment_status( $comment->comment_ID, 'spam' );
- else
- wp_delete_comment( $comment->comment_ID );
-
- if ( '' != wp_get_referer() && false == $noredir && false === strpos(wp_get_referer(), 'comment.php' ) )
- wp_redirect( wp_get_referer() );
- else if ( '' != wp_get_original_referer() && false == $noredir )
- wp_redirect( wp_get_original_referer() );
+ if ( '' != wp_get_referer() && false == $noredir && false === strpos(wp_get_referer(), 'comment.php') )
+ $redir = wp_get_referer();
+ elseif ( '' != wp_get_original_referer() && false == $noredir )
+ $redir = wp_get_original_referer();
else
- wp_redirect( admin_url('edit-comments.php') );
+ $redir = admin_url('edit-comments.php');
+
+ $redir = remove_query_arg( array('spammed', 'unspammed', 'trashed', 'untrashed', 'deleted', 'ids'), $redir );
+
+ switch ( $action ) {
+ case 'deletecomment' :
+ wp_delete_comment( $comment_id );
+ $redir = add_query_arg( array('deleted' => '1'), $redir );
+ break;
+ case 'trashcomment' :
+ wp_trash_comment($comment_id);
+ $redir = add_query_arg( array('trashed' => '1', 'ids' => $comment_id), $redir );
+ break;
+ case 'untrashcomment' :
+ wp_untrash_comment($comment_id);
+ $redir = add_query_arg( array('untrashed' => '1'), $redir );
+ break;
+ case 'spamcomment' :
+ wp_spam_comment($comment_id);
+ $redir = add_query_arg( array('spammed' => '1', 'ids' => $comment_id), $redir );
+ break;
+ case 'unspamcomment' :
+ wp_unspam_comment($comment_id);
+ $redir = add_query_arg( array('unspammed' => '1'), $redir );
+ break;
+ }
+
+ wp_redirect( $redir );
die;
break;
+case 'approvecomment' :
case 'unapprovecomment' :
$comment_id = absint( $_GET['c'] );
- check_admin_referer( 'unapprove-comment_' . $comment_id );
+ check_admin_referer( 'approve-comment_' . $comment_id );
- if ( isset( $_GET['noredir'] ) )
- $noredir = true;
- else
- $noredir = false;
+ $noredir = isset( $_GET['noredir'] );
if ( !$comment = get_comment( $comment_id ) )
comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'edit.php') );
- if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) )
- comment_footer_die( __('You are not allowed to edit comments on this post, so you cannot disapprove this comment.') );
-
- wp_set_comment_status( $comment->comment_ID, 'hold' );
+ if ( !current_user_can( 'edit_post', $comment->comment_post_ID ) ) {
+ if ( 'approvecomment' == $action )
+ comment_footer_die( __('You are not allowed to edit comments on this post, so you cannot approve this comment.') );
+ else
+ comment_footer_die( __('You are not allowed to edit comments on this post, so you cannot disapprove this comment.') );
+ }
if ( '' != wp_get_referer() && false == $noredir )
- wp_redirect( wp_get_referer() );
+ $redir = remove_query_arg( array('approved', 'unapproved'), wp_get_referer() );
else
- wp_redirect( admin_url('edit-comments.php?p=' . absint( $comment->comment_post_ID ) . '#comments') );
+ $redir = admin_url('edit-comments.php?p=' . absint( $comment->comment_post_ID ) );
- exit();
- break;
-
-case 'approvecomment' :
- $comment_id = absint( $_GET['c'] );
- check_admin_referer( 'approve-comment_' . $comment_id );
-
- if ( isset( $_GET['noredir'] ) )
- $noredir = true;
- else
- $noredir = false;
-
- if ( !$comment = get_comment( $comment_id ) )
- comment_footer_die( __('Oops, no comment with this ID.') . sprintf(' <a href="%s">'.__('Go back').'</a>!', 'edit.php') );
-
- if ( !current_user_can('edit_post', $comment->comment_post_ID) )
- comment_footer_die( __('You are not allowed to edit comments on this post, so you cannot approve this comment.') );
+ if ( 'approvecomment' == $action ) {
+ wp_set_comment_status( $comment_id, 'approve' );
+ $redir = add_query_arg( array( 'approved' => 1 ), $redir );
+ } else {
+ wp_set_comment_status( $comment_id, 'hold' );
+ $redir = add_query_arg( array( 'unapproved' => 1 ), $redir );
+ }
- wp_set_comment_status( $comment->comment_ID, 'approve' );
-
- if ( '' != wp_get_referer() && false == $noredir )
- wp_redirect( wp_get_referer() );
- else
- wp_redirect( admin_url('edit-comments.php?p=' . absint( $comment->comment_post_ID ) . '#comments') );
+ wp_redirect( $redir );
exit();
break;
include('admin-footer.php');
-?>
\ No newline at end of file
+?>
-html {
- background-color: #f7f6f1;
-}
-
-* html input,
-* html .widget {
- border-color: #8cbdd5;
-}
-
-textarea,
-input,
-select {
- border-color: #dfdfdf;
-}
-
-kbd,
-code {
- background: #eaeaea;
-}
-
-input[readonly] {
- background-color: #eee;
-}
-
-.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,
-#wpbody,
-.form-table .pre {
- color: #333;
-}
-
-body > #upload-menu {
- border-bottom-color: #fff;
-}
-
-#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;
-}
-
-div.dashboard-widget-notice {
- background-color: #cfe1ef;
-}
-
-div.dashboard-widget-submit {
- border-top-color: #ccc;
-}
-
-div.tabs-panel,
-ul#category-tabs li.tabs {
- border-color: #dfdfdf;
-}
-
-ul#category-tabs li.tabs {
- background-color: #f1f1f1;
-}
-
-input.disabled,
-textarea.disabled {
- background-color: #ccc;
-}
-/* #upload-menu li a.upload-tab-link, */
-.login #backtoblog a:hover,
-#plugin-information .action-button a,
-#plugin-information .action-button a:hover,
-#plugin-information .action-button a:visited {
- color: #fff;
-}
-
-.widget .widget-top,
-.postbox h3,
-.stuffbox h3 {
- background: #d5e6f2 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;
-}
-
-.description,
-.form-wrap p {
- color: #666;
-}
-
-strong .post-com-count span {
- background-color: #21759b;
-}
-
-.sorthelper {
- background-color: #ccf3fa;
-}
-
-.ac_match,
-.subsubsub a.current {
- color: #000;
-}
-
-.wrap h2 {
- color: #093e56;
-}
-
-.ac_over {
- background-color: #f0f0b8;
-}
-
-.ac_results {
- background-color: #fff;
- border-color: #808080;
-}
-
-.ac_results li {
- color: #101010;
-}
-
-.alt
-.alternate {
- background-color: #edfbfc;
-}
-
-.available-theme a.screenshot {
- background-color: #f1f1f1;
- border-color: #ddd;
-}
-
-.bar {
- background-color: #e8e8e8;
- border-right-color: #99d;
-}
-
-#media-upload {
- background: #fff;
-}
-
-#media-upload .slidetoggle {
- border-top-color: #dfdfdf;
-}
-
-.error,
-#login #login_error {
- background-color: #ffebe8;
- border-color: #c00;
-}
-
-.error a {
- color: #c00;
-}
-
-.form-invalid {
- background-color: #ffebe8 !important;
-}
-
-.form-invalid input {
- border-color: #c00 !important;
-}
-
-.submit {
- border-color: #8cbdd5;
-}
-
-.highlight {
- background-color: #e4f2fd;
- color: #d54e21;
-}
-
-.howto,
-.nonessential,
-#edit-slug-box,
-.form-input-tip,
-.rss-widget span.rss-date,
-.subsubsub {
- color: #666;
-}
-
-.media-item {
- border-bottom-color: #dfdfdf;
-}
-
-#wpbody-content #media-items .describe {
- border-top-color: #dfdfdf;
-}
-
-.describe input[type="text"],
-.describe textarea {
- border-color: #dfdfdf;
-}
-
-.media-upload-form label.form-help,
-td.help {
- color: #9a9a9a;
-}
-
-.post-com-count {
- background-image: url(../images/bubble_bg.gif);
- color: #fff;
-}
-
-.post-com-count span {
- background-color: #bbb;
- color: #fff;
-}
-
-.post-com-count:hover span {
- background-color: #d54e21;
-}
-
-.quicktags, .search {
- background-color: #ccc;
- color: #000;
-}
-
-.side-info h5 {
- border-bottom-color: #dadada;
-}
-
-.side-info ul {
- color: #666;
-}
-
-.button,
-.button-secondary,
-.submit input,
-input[type=button],
-input[type=submit] {
- border-color: #dfdfdf;
- color: #464646;
-}
-
-.button:hover,
-.button-secondary:hover,
-.submit input:hover,
-input[type=button]:hover,
-input[type=submit]:hover {
- color: #000;
- border-color: #adaca7;
-}
-
-.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: #5b86ab !important;
- font-weight: bold;
- color: #fff !important;
- background: #5580a6 url(../images/button-grad-vs.png) repeat-x scroll left top;
-}
-
-.button-primary:active,
-#login form .submit input:active {
- background: #21759b url(../images/button-grad-active-vs.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: #80a3d2 !important;
-}
-
-a:active,
-a:focus {
- color: #d54e21;
-}
-
-a:hover,
-#wphead #viewsite a:hover,
-#adminmenu a:hover,
-#adminmenu ul.wp-submenu a:hover,
-#the-comment-list .comment a:hover,
-#rightnow a:hover,
-#login form .submit input:hover,
-#media-upload a.del-link:hover,
-div.dashboard-widget-submit input:hover,
-.subsubsub a:hover,
-.subsubsub a.current:hover,
-.ui-tabs-nav a:hover,
-.plugins .inactive a:hover,
-#all-plugins-table .plugins .inactive a:hover,
-#search-plugins-table .plugins .inactive a:hover {
- color: #d54e21;
-}
-
-#the-comment-list .comment-item,
-#dashboard-widgets #dashboard_quick_press form p.submit {
- border-color: #dfdfdf;
-}
-
-#dashboard_right_now .table {
- background:#faf9f7 !important;
-}
-
-.button-primary:hover,
-#login form .submit input:hover {
- border-color: #2e5475 !important;
- color: #eaf2fa !important;
-}
-
-#side-sortables #category-tabs .tabs a {
- color: #333;
-}
-
-#rightnow .rbutton {
- background-color: #ebebeb;
- color: #264761;
-}
-
-.submitbox .submit {
- background-color: #464646;
- color: #ccc;
-}
-
-.plugins a.delete:hover,
-#all-plugins-table .plugins a.delete:hover,
-#search-plugins-table .plugins a.delete:hover,
-.submitbox .submitdelete,
-a.delete {
- color: #f00;
- border-bottom-color: #f00;
-}
-
-.submitbox .submitdelete:hover,
-#media-items a.delete:hover {
- color: #fff;
- background-color: #f00;
- border-bottom-color: #f00;
-}
-
-#normal-sortables .submitbox .submitdelete:hover {
- color: #000;
- background-color: #f00;
- border-bottom-color: #f00;
-}
-
-.tablenav .dots {
- border-color: transparent;
-}
-
-.tablenav .next,
-.tablenav .prev {
- border-color: transparent;
- color: #21759b;
-}
-
-.tablenav .next:hover,
-.tablenav .prev:hover {
- border-color: transparent;
- color: #d54e21;
-}
-
-.updated,
-.login #login_error,
-.login .message {
- background-color: #ffffe0;
- border-color: #e6db55;
-}
-
-.update-message {
- color: #000000;
-}
-
-a.page-numbers {
- border-bottom-color: #b8d3e2;
-}
-
-.commentlist li {
- border-bottom-color: #ccc;
-}
-
-.widefat td,
-.widefat th,
-#install-plugins .plugins td,
-#install-plugins .plugins th {
- border-color: #dfdfdf;
-}
-
-.widefat th {
- text-shadow: rgba(255,255,255,0.8) 0 1px 0;
-}
-
-.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: #d5e6f2 url(../images/blue-grad.png) repeat-x scroll left top;
-}
-
-h3.dashboard-widget-title small a {
- color: #d7d7d7;
-}
-
-h3.dashboard-widget-title small a:hover {
- color: #fff;
-}
-
-a,
-#adminmenu a,
-#poststuff #edButtonPreview,
-#poststuff #edButtonHTML,
-#the-comment-list p.comment-author strong a,
-#media-upload a.del-link,
-#media-items a.delete,
-.plugins a.delete,
-.ui-tabs-nav a {
- color: #1c6280;
-}
-
-/* Because we don't want visited on these links */
-body.press-this .tabs a,
-body.press-this .tabs a:hover {
- background-color: #fff;
- border-color: #c6d9e9;
- border-bottom-color: #fff;
- color: #d54e21;
-}
-
-#adminmenu #awaiting-mod,
-#adminmenu .update-plugins,
-#sidemenu a .update-plugins,
-#rightnow .reallynow,
-#plugin-information .action-button {
- background-color: #d54e21;
- color: #fff;
-}
-
-#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) 0 -1px 0;
- -khtml-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
- -webkit-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
- box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
-}
-
-#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;
-}
-
-div#media-upload-header,
-div#plugin-information-header {
- background-color: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#currenttheme img {
- border-color: #666;
-}
-
-#dashboard_secondary div.dashboard-widget-content ul li a {
- background-color: #f9f9f9;
-}
-
-input.readonly, textarea.readonly {
- background-color: #ddd;
-}
-
-#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,
-.tablenav .displaying-num,
-#submitted-on {
- color: #777;
-}
-
-.login #nav a {
- color: #21759b !important;
-}
-
-.login #nav a:hover {
- color: #d54e21 !important;
-}
-
-#footer,
-#footer-upgrade {
- background: #1d507d;
- color: #b6d1e4;
-}
-
-#media-items {
- border-color: #dfdfdf;
-}
-
-.checkbox,
-.side-info,
-.plugins tr,
-.postbox,
-#your-profile #rich_editing {
- background-color: #fff;
-}
-
-.plugins .inactive,
-.plugins .inactive th,
-.plugins .inactive td,
-tr.inactive + tr.plugin-update-tr .plugin-update {
- background-color: #ebeeef;
-}
-
-.plugin-update-tr .update-message {
- background-color: #fffbe4;
- border-color: #dfdfdf;
-}
-
-.plugins .active,
-.plugins .active th,
-.plugins .active td {
- color: #000;
-}
-
-.plugins .inactive a {
- color: #557799;
-}
-
-#the-comment-list .unapproved,
-#the-comment-list .unapproved th,
-#the-comment-list .unapproved td {
- background-color: #ffffe0;
-}
-
-#the-comment-list .approve a {
- color: #006505;
-}
-
-#the-comment-list .unapprove a {
- color: #d98500;
-}
-
-#the-comment-list .delete a {
- color: #bc0b0b;
-}
-
-.widget,
-#widget-list .widget-top,
-.postbox,
-#titlediv,
-#poststuff .postarea,
-.stuffbox {
- border-color: #dfdfdf;
-}
-
-.widget,
-.postbox {
- background-color: #fff;
-}
-
-.ui-sortable .postbox h3 {
- color: #093e56;
-}
-
-.widget .widget-top,
-.ui-sortable .postbox h3:hover {
- color: #000;
-}
-
-.curtime #timestamp {
- background-image: url(../images/date-button.gif);
-}
-
-#quicktags #ed_link {
- color: #00f;
-}
-
-#rightnow .youhave {
- background-color: #f0f6fb;
-}
-
-#rightnow a {
- color: #448abd;
-}
-
-.tagchecklist span a,
-#bulk-titles div a {
- background: url(../images/xit.gif) no-repeat;
-}
-
-.tagchecklist span a:hover,
-#bulk-titles div a:hover {
- background: url(../images/xit.gif) no-repeat -10px 0;
-}
-
-#update-nag {
- background-color: #fffeeb;
- border-color: #ccc;
- color: #555;
-}
-
-.login #backtoblog a {
- color: #ccc;
-}
-
-#wphead {
- background-color: #1d507d;
-}
-
-body.login {
- border-top-color: #093e56;
-}
-
-#wphead h1 a {
- color: #fff;
-}
-
-#login form input {
- color: #555;
-}
-
-#user_info {
- color: #b6d1e4;
-}
-
-#user_info a:link,
-#user_info a:visited,
-#footer a:link,
-#footer a:visited {
- color: #fff;
- text-decoration: none;
-}
-
-#user_info a:hover,
-#user_info a:active,
-#footer a:hover,
-#footer a:active {
- text-decoration: underline;
-}
-
-div#media-upload-error,
-.file-error,
-abbr.required,
-.widget-control-remove:hover,
-.delete a:hover {
- color: #f00;
-}
-
-/* password strength meter */
-#pass-strength-result {
- background-color: #eee;
- border-color: #ddd !important;
-}
-
-#pass-strength-result.bad {
- background-color: #ffb78c;
- border-color: #ff853c !important;
-}
-
-#pass-strength-result.good {
- background-color: #ffec8b;
- border-color: #fc0 !important;
-}
-
-#pass-strength-result.short {
- background-color: #ffa0a0;
- border-color: #f04040 !important;
-}
-
-#pass-strength-result.strong {
- background-color: #c3ff88;
- border-color: #8dff1c !important;
-}
-
-/* editors */
-#quicktags {
- border-color: #dfdfdf;
- background-color: #dfdfdf;
-}
-
-#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: #f2f1eb;
- border-color: #dfdfdf;
- color: #999;
-}
-
-#poststuff #editor-toolbar .active {
- border-bottom-color: #e3eef7;
- background-color: #e3eef7;
- 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:active {
- color: #000;
-}
-
-/* Containers */
-.wp_themeSkin iframe {
- background: #fff;
-}
-
-/* Layout */
-.wp_themeSkin .mceStatusbar {
- color: #000;
- background-color: #f5f5f5;
-}
-
-/* Button */
-.wp_themeSkin .mceButton {
- background-color: #e9e8e8;
- border-color: #b2b2b2;
-}
-
-.wp_themeSkin a.mceButtonEnabled:hover,
-.wp_themeSkin a.mceButtonActive,
-.wp_themeSkin a.mceButtonSelected {
- background-color: #d5d5d5;
- border-color: #777 !important;
-}
-
-.wp_themeSkin .mceButtonDisabled {
- border-color: #ccc !important;
-}
-
-/* ListBox */
-.wp_themeSkin .mceListBox .mceText,
-.wp_themeSkin .mceListBox .mceOpen {
- border-color: #b2b2b2;
- background-color: #d5d5d5;
-}
-
-.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
-.wp_themeSkin .mceListBoxHover .mceOpen,
-.wp_themeSkin .mceListBoxSelected .mceOpen,
-.wp_themeSkin .mceListBoxSelected .mceText {
- border-color: #777 !important;
- background-color: #d5d5d5;
-}
-
-.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
-.wp_themeSkin .mceListBoxHover .mceText {
- border-color: #777 !important;
-}
-
-.wp_themeSkin select.mceListBox {
- border-color: #b2b2b2;
- background-color: #fff;
-}
-
-/* SplitButton */
-.wp_themeSkin .mceSplitButton a.mceAction,
-.wp_themeSkin .mceSplitButton a.mceOpen {
- 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: #d5d5d5;
- border-color: #777 !important;
-}
-
-.wp_themeSkin .mceSplitButtonActive {
- background-color: #b2b2b2;
-}
-
-/* ColorSplitButton */
-.wp_themeSkin div.mceColorSplitMenu table {
- background-color: #ebebeb;
- border-color: #b2b2b2;
-}
-
-.wp_themeSkin .mceColorSplitMenu a {
- border-color: #b2b2b2;
-}
-
-.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
- border-color: #fff;
-}
-
-.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
- border-color: #0a246a;
- background-color: #b6bdd2;
-}
-
-.wp_themeSkin a.mceMoreColors:hover {
- border-color: #0a246a;
-}
-
-/* Menu */
-.wp_themeSkin .mceMenu {
- border-color: #ddd;
-}
-
-.wp_themeSkin .mceMenu table {
- background-color: #ebeaeb;
-}
-
-.wp_themeSkin .mceMenu .mceText {
- color: #000;
-}
-
-.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
-.wp_themeSkin .mceMenu .mceMenuItemActive {
- background-color: #f5f5f5;
-}
-.wp_themeSkin td.mceMenuItemSeparator {
- background-color: #aaa;
-}
-.wp_themeSkin .mceMenuItemTitle a {
- background-color: #ccc;
- border-bottom-color: #aaa;
-}
-.wp_themeSkin .mceMenuItemTitle span.mceText {
- color: #000;
-}
-.wp_themeSkin .mceMenuItemDisabled .mceText {
- color: #888;
-}
-
-#quicktags,
-.wp_themeSkin tr.mceFirst td.mceToolbar {
- background: #e3eef7 url("../images/ed-bg-vs.gif") repeat-x scroll left top;
-}
-.wp_themeSkin tr.mceFirst td.mceToolbar {
- border-color: #dfdfdf;
-}
-
-.wp-admin #mceModalBlocker {
- background: #000;
-}
-
-.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
- background: #444;
- 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;
-}
-
-.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
- background: #444;
- 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,
-.editwidget .widget-inside {
- border-color: #dfdfdf;
-}
-
-#titlediv #title {
- background-color: #fff;
-}
-
-#tTips p#tTips_inside {
- background-color: #ddd;
- color: #333;
-}
-
-#timestampdiv input,
-#namediv input,
-#poststuff .inside .the-tagcloud {
- border-color: #dfdfdf;
-}
-
-/* menu */
-#adminmenu * {
- border-color: #dfdfdf;
-}
-
-#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-vs.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-vs.gif) no-repeat scroll left -109px;
-}
-
-#adminmenu a.menu-top {
- background: #eaf3fa url(../images/menu-bits-vs.gif) repeat-x scroll left -379px;
-}
-
-#adminmenu .wp-submenu a {
- background: #fff url(../images/menu-bits-vs.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: #3c6b95 url(../images/menu-bits-vs.gif) top left repeat-x;
- border-color: #1d507d;
- color: #fff;
- text-shadow: rgba(0,0,0,0.4) 0 -1px 0;
-}
-
-#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: #6583c0;
-}
-
-#adminmenu .wp-submenu .current a.current {
- background: transparent url(../images/menu-bits-vs.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) 0 1px 0;
-}
-
-#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: #fdd;
-}
-
-table.diff .diff-deletedline del {
- background-color: #f99;
-}
-
-table.diff .diff-addedline {
- background-color: #dfd;
-}
-
-table.diff .diff-addedline ins {
- background-color: #9f9;
-}
-
-#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: #eae9e4;
- 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,
-.vim-current th,
-.vim-current td {
- 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: #fff;
- border-color: #ddd;
-}
-
-.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-vs.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-vs.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.tabs 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: #5580a6 url(../images/fav-vs.png) repeat-x 0 center;
- border-color: #517ea5 !important;
- border-bottom-color: #416686 !important;
-}
-
-#favorite-actions .slide-down {
- background-image: url(../images/fav-top-vs.gif);
- background-position:0 0;
- background-repeat: repeat-x;
-}
-
-#favorite-inside {
- border-color: #5b86ac;
- background-color: #5580a6;
-}
-
-#favorite-toggle {
- background: transparent url(../images/fav-arrow-vs.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-profile,
-#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-vs.gif) no-repeat scroll center center;
-}
-
-#wphead #site-visit-button {
- background-color: #3c6b95;
- background-image: url(../images/visit-site-button-grad-vs.gif);
- color: #b6d1e4;
- text-shadow: #3f3f3f 0 -1px 0;
-}
-
-#wphead a:hover #site-visit-button {
- color: #fff;
-}
-
-#wphead a:focus #site-visit-button,
-#wphead a:active #site-visit-button {
- background-position: 0 -27px;
-}
-
-.popular-tags,
-.feature-filter {
- background-color: #fff;
- border-color: #dfdfdf;
-}
-
-#theme-information .action-button {
- border-top-color: #dfdfdf;
-}
-
-.theme-listing br.line {
- border-bottom-color: #ccc;
-}
-
-div.widgets-sortables,
-#widgets-left .inactive {
- background-color: #f1f1f1;
- border-color: #ddd;
-}
-
-#available-widgets .widget-holder {
- background-color: #fff;
- border-color: #ddd;
-}
-
-#widgets-left .sidebar-name {
- background-color: #aaa;
- background-image: url(../images/ed-bg-vs.gif);
- text-shadow: #FFFFFF 0 1px 0;
- border-color: #dfdfdf;
-}
-
-#widgets-right .sidebar-name {
- background-image: url(../images/fav-vs.png);
- text-shadow: #3f3f3f 0 -1px 0;
- background-color: #636363;
- border-color: #636363;
- color: #fff;
-}
-
-.sidebar-name:hover,
-#removing-widget {
- color: #d54e21;
-}
-
-#removing-widget span {
- color: black;
-}
-
-#widgets-left .sidebar-name-arrow {
- background: transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -109px;
-}
-
-#widgets-right .sidebar-name-arrow {
- background: transparent url(../images/fav-arrow-vs.gif) no-repeat scroll 0 -1px;
-}
-
-.in-widget-title {
- color: #606060;
-}
-
-.deleting .widget-title * {
- color: #aaa;
-}
+html{background-color:#f7f6f1;}* html input,* html .widget{border-color:#8cbdd5;}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],select{border-color:#dfdfdf;background-color:#fff;}kbd,code{background:#eaeaea;}input[readonly]{background-color:#eee;}.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,#wpbody,.form-table .pre{color:#333;}body>#upload-menu{border-bottom-color:#fff;}#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,#poststuff .inside label.deleted{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;}div.dashboard-widget-notice{background-color:#cfe1ef;}div.dashboard-widget-submit{border-top-color:#ccc;}div.tabs-panel,ul#category-tabs li.tabs{border-color:#dfdfdf;}ul#category-tabs li.tabs{background-color:#f1f1f1;}input.disabled,textarea.disabled{background-color:#ccc;}.login #backtoblog a:hover,#plugin-information .action-button a,#plugin-information .action-button a:hover,#plugin-information .action-button a:visited{color:#fff;}.widget .widget-top,.postbox h3,.stuffbox h3{background:#d5e6f2 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;}.description,.form-wrap p{color:#666;}strong .post-com-count span{background-color:#21759b;}.sorthelper{background-color:#ccf3fa;}.ac_match,.subsubsub a.current{color:#000;}.wrap h2{color:#093e56;}.ac_over{background-color:#f0f0b8;}.ac_results{background-color:#fff;border-color:#808080;}.ac_results li{color:#101010;}.alt .alternate{background-color:#edfbfc;}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd;}.bar{background-color:#e8e8e8;border-right-color:#99d;}#media-upload,#media-upload .media-item .slidetoggle{background:#fff;}#media-upload .slidetoggle{border-top-color:#dfdfdf;}.error,.login #login_error{background-color:#ffebe8;border-color:#c00;}.error a{color:#c00;}.form-invalid{background-color:#ffebe8!important;}.form-invalid input,.form-invalid select{border-color:#c00!important;}.submit{border-color:#8cbdd5;}.highlight{background-color:#e4f2fd;color:#d54e21;}.howto,.nonessential,#edit-slug-box,.form-input-tip,.rss-widget span.rss-date,.subsubsub{color:#666;}.media-item{border-bottom-color:#dfdfdf;}#wpbody-content #media-items .describe{border-top-color:#dfdfdf;}.media-upload-form label.form-help,td.help{color:#9a9a9a;}.post-com-count{background-image:url(../images/bubble_bg.gif);color:#fff;}.post-com-count span{background-color:#bbb;color:#fff;}.post-com-count:hover span{background-color:#d54e21;}.quicktags,.search{background-color:#ccc;color:#000;}.side-info h5{border-bottom-color:#dadada;}.side-info ul{color:#666;}.button,.button-secondary,.submit input,input[type=button],input[type=submit]{border-color:#dfdfdf;color:#464646;}.button:hover,.button-secondary:hover,.submit input:hover,input[type=button]:hover,input[type=submit]:hover{color:#000;border-color:#adaca7;}.button,.submit input,.button-secondary{background:#f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;text-shadow:rgba(255,255,255,1) 0 1px 0;}.button:active,.submit input:active,.button-secondary:active{background:#eee url(../images/white-grad-active.png) repeat-x scroll left top;}input.button-primary,button.button-primary,a.button-primary{border-color:#5b86ab;font-weight:bold;color:#fff;background:#5580a6 url(../images/button-grad-vs.png) repeat-x scroll left top;text-shadow:rgba(0,0,0,0.3) 0 -1px 0;}input.button-primary:active,button.button-primary:active,a.button-primary:active{background:#21759b url(../images/button-grad-active-vs.png) repeat-x scroll left top;color:#eaf2fa;}input.button-primary:hover,button.button-primary:hover,a.button-primary:hover,a.button-primary:focus,a.button-primary:active{border-color:#2e5475;color:#eaf2fa;}.button-disabled,.button[disabled],.button:disabled,.button-secondary[disabled],.button-secondary:disabled,a.button.disabled{color:#aaa!important;border-color:#ddd!important;}.button-primary-disabled,.button-primary[disabled],.button-primary:disabled{color:#B0C3E2!important;background:#6590A6!important;}a:hover,a:active,a:focus{color:#d54e21;}#wphead #viewsite a:hover,#adminmenu a:hover,#adminmenu ul.wp-submenu a:hover,#the-comment-list .comment a:hover,#rightnow a:hover,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.ui-tabs-nav a:hover,.plugins .inactive a:hover,#all-plugins-table .plugins .inactive a:hover,#search-plugins-table .plugins .inactive a:hover{color:#d54e21;}#the-comment-list .comment-item,#dashboard-widgets #dashboard_quick_press form p.submit{border-color:#dfdfdf;}#dashboard_right_now .table{background:#faf9f7!important;}#side-sortables #category-tabs .tabs a{color:#333;}#rightnow .rbutton{background-color:#ebebeb;color:#264761;}.submitbox .submit{background-color:#464646;color:#ccc;}.plugins a.delete:hover,#all-plugins-table .plugins a.delete:hover,#search-plugins-table .plugins a.delete:hover,.submitbox .submitdelete{color:#f00;border-bottom-color:#f00;}.submitbox .submitdelete:hover,#media-items a.delete:hover{color:#fff;background-color:#f00;border-bottom-color:#f00;}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:#f00;border-bottom-color:#f00;}.tablenav .dots{border-color:transparent;}.tablenav .next,.tablenav .prev{border-color:transparent;color:#21759b;}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21;}.updated,.login .message{background-color:#ffffe0;border-color:#e6db55;}.update-message{color:#000;}a.page-numbers{border-bottom-color:#b8d3e2;}.commentlist li{border-bottom-color:#ccc;}.widefat td,.widefat th,#install-plugins .plugins td,#install-plugins .plugins th{border-color:#dfdfdf;}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0;}.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:#d5e6f2 url(../images/blue-grad.png) repeat-x scroll left top;}h3.dashboard-widget-title small a{color:#d7d7d7;}h3.dashboard-widget-title small a:hover{color:#fff;}a,#adminmenu a,#poststuff #edButtonPreview,#poststuff #edButtonHTML,#the-comment-list p.comment-author strong a,#media-upload a.del-link,#media-items a.delete,.plugins a.delete,.ui-tabs-nav a{color:#1c6280;}body.press-this .tabs a,body.press-this .tabs a:hover{background-color:#fff;border-color:#c6d9e9;border-bottom-color:#fff;color:#d54e21;}#adminmenu #awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow,#plugin-information .action-button{background-color:#d54e21;color:#fff;}#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) 0 -1px 0;-khtml-box-shadow:rgba(0,0,0,0.2) 0 -1px 0;-webkit-box-shadow:rgba(0,0,0,0.2) 0 -1px 0;box-shadow:rgba(0,0,0,0.2) 0 -1px 0;}#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;}div#media-upload-header,div#plugin-information-header{background-color:#f9f9f9;border-bottom-color:#dfdfdf;}#currenttheme img{border-color:#666;}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#f9f9f9;}input.readonly,textarea.readonly{background-color:#ddd;}#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,.tablenav .displaying-num,#submitted-on{color:#777;}.login #nav a{color:#21759b!important;}.login #nav a:hover{color:#d54e21!important;}#footer,#footer-upgrade{background:#1d507d;color:#b6d1e4;}#media-items,.imgedit-group{border-color:#dfdfdf;}.checkbox,.side-info,.plugins tr,.postbox,#your-profile #rich_editing{background-color:#fff;}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#ebeeef;}.plugin-update-tr .update-message{background-color:#fffbe4;border-color:#dfdfdf;}.plugins .active,.plugins .active th,.plugins .active td{color:#000;}.plugins .inactive a{color:#579;}#the-comment-list tr.undo,#the-comment-list div.undo{background-color:#f4f4f4;}#the-comment-list .unapproved{background-color:#ffffe0;}#the-comment-list .approve a{color:#006505;}#the-comment-list .unapprove a{color:#d98500;}table.widefat span.delete a,table.widefat span.trash a,table.widefat span.spam a,#dashboard_recent_comments .delete a,#dashboard_recent_comments .trash a,#dashboard_recent_comments .spam a{color:#bc0b0b;}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;}.widget,.postbox{background-color:#fff;}.ui-sortable .postbox h3{color:#093e56;}.widget .widget-top,.ui-sortable .postbox h3:hover{color:#000;}.curtime #timestamp{background-image:url(../images/date-button.gif);}#quicktags #ed_link{color:#00f;}#rightnow .youhave{background-color:#f0f6fb;}#rightnow a{color:#448abd;}.tagchecklist span a,#bulk-titles div a{background:url(../images/xit.gif) no-repeat;}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../images/xit.gif) no-repeat -10px 0;}#update-nag{background-color:#fffeeb;border-color:#ccc;color:#555;}.login #backtoblog a{color:#ccc;}#wphead{background-color:#1d507d;}body.login{border-top-color:#093e56;}#wphead h1 a{color:#fff;}#user_info{color:#b6d1e4;}#user_info a:link,#user_info a:visited,#footer a:link,#footer a:visited{color:#fff;text-decoration:none;}#user_info a:hover,#user_info a:active,#footer a:hover,#footer a:active{text-decoration:underline;}div#media-upload-error,.file-error,abbr.required,.widget-control-remove:hover,table.widefat .delete a:hover,table.widefat .trash a:hover,table.widefat .spam a:hover,#dashboard_recent_comments .delete a:hover,#dashboard_recent_comments .trash a:hover,#dashboard_recent_comments .spam a:hover{color:#f00;}#pass-strength-result{background-color:#eee;border-color:#ddd!important;}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c!important;}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0!important;}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040!important;}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c!important;}#quicktags{border-color:#dfdfdf;background-color:#dfdfdf;}#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:#f2f1eb;border-color:#dfdfdf;color:#999;}#poststuff #editor-toolbar .active{border-bottom-color:#e3eef7;background-color:#e3eef7;color:#333;}#post-status-info{background-color:#ededed;}.wp_themeSkin *,.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{color:#000;}.wp_themeSkin iframe{background:#fff;}.wp_themeSkin .mceStatusbar{color:#000;background-color:#f5f5f5;}.wp_themeSkin .mceButton{background-color:#e9e8e8;border-color:#b2b2b2;}.wp_themeSkin a.mceButtonEnabled:hover,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonSelected{background-color:#d5d5d5;border-color:#777!important;}.wp_themeSkin .mceButtonDisabled{border-color:#ccc!important;}.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen{border-color:#b2b2b2;background-color:#d5d5d5;}.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin .mceListBoxSelected .mceText{border-color:#777!important;background-color:#d5d5d5;}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText{border-color:#777!important;}.wp_themeSkin select.mceListBox{border-color:#b2b2b2;background-color:#fff;}.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen{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:#d5d5d5;border-color:#777!important;}.wp_themeSkin .mceSplitButtonActive{background-color:#b2b2b2;}.wp_themeSkin div.mceColorSplitMenu table{background-color:#ebebeb;border-color:#b2b2b2;}.wp_themeSkin .mceColorSplitMenu a{border-color:#b2b2b2;}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors{border-color:#fff;}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover{border-color:#0a246a;background-color:#b6bdd2;}.wp_themeSkin a.mceMoreColors:hover{border-color:#0a246a;}.wp_themeSkin .mceMenu{border-color:#ddd;}.wp_themeSkin .mceMenu table{background-color:#ebeaeb;}.wp_themeSkin .mceMenu .mceText{color:#000;}.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,.wp_themeSkin .mceMenu .mceMenuItemActive{background-color:#f5f5f5;}.wp_themeSkin td.mceMenuItemSeparator{background-color:#aaa;}.wp_themeSkin .mceMenuItemTitle a{background-color:#ccc;border-bottom-color:#aaa;}.wp_themeSkin .mceMenuItemTitle span.mceText{color:#000;}.wp_themeSkin .mceMenuItemDisabled .mceText{color:#888;}#quicktags,.wp_themeSkin tr.mceFirst td.mceToolbar{background:#e3eef7 url("../images/ed-bg-vs.gif") repeat-x scroll left top;}.wp_themeSkin tr.mceFirst td.mceToolbar{border-color:#dfdfdf;}.wp-admin #mceModalBlocker{background:#000;}.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft{background:#444;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;}.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight{background:#444;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;}#editorcontainer,#post-status-info,#titlediv #title,.editwidget .widget-inside{border-color:#dfdfdf;}#titlediv #title{background-color:#fff;}#tTips p#tTips_inside{background-color:#ddd;color:#333;}#timestampdiv input,#namediv input,#poststuff .inside .the-tagcloud{border-color:#dfdfdf;}#adminmenu *{border-color:#dfdfdf;}#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-vs.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-vs.gif) no-repeat scroll left -109px;}#adminmenu a.menu-top{background:#eaf3fa url(../images/menu-bits-vs.gif) repeat-x scroll left -379px;}#adminmenu .wp-submenu a{background:#fff url(../images/menu-bits-vs.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:#3c6b95 url(../images/menu-bits-vs.gif) top left repeat-x;border-color:#1d507d;color:#fff;text-shadow:rgba(0,0,0,0.4) 0 -1px 0;}#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:#6583c0;}#adminmenu .wp-submenu .current a.current{background:transparent url(../images/menu-bits-vs.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) 0 1px 0;}#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;}#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;}table.diff .diff-deletedline{background-color:#fdd;}table.diff .diff-deletedline del{background-color:#f99;}table.diff .diff-addedline{background-color:#dfd;}table.diff .diff-addedline ins{background-color:#9f9;}#att-info{background-color:#e4f2fd;}#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:#eae9e4;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;}.vim-current,.vim-current th,.vim-current td{background-color:#e4f2fd!important;}.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-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:#fff;border-color:#ddd;}.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-vs.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-vs.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.tabs 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:#5580a6 url(../images/fav-vs.png) repeat-x 0 center;border-color:#517ea5!important;border-bottom-color:#416686!important;}#favorite-actions .slide-down{background-image:url(../images/fav-top-vs.gif);background-position:0 0;background-repeat:repeat-x;}#favorite-inside{border-color:#5b86ac;background-color:#5580a6;}#favorite-toggle{background:transparent url(../images/fav-arrow-vs.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;}#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-profile,#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-vs.gif) no-repeat scroll center center;}#wphead #site-visit-button{background-color:#3c6b95;background-image:url(../images/visit-site-button-grad-vs.gif);color:#b6d1e4;text-shadow:#3f3f3f 0 -1px 0;}#wphead a:hover #site-visit-button{color:#fff;}#wphead a:focus #site-visit-button,#wphead a:active #site-visit-button{background-position:0 -27px;}.popular-tags,.feature-filter{background-color:#fff;border-color:#dfdfdf;}#theme-information .action-button{border-top-color:#dfdfdf;}.theme-listing br.line{border-bottom-color:#ccc;}div.widgets-sortables,#widgets-left .inactive{background-color:#f1f1f1;border-color:#ddd;}#available-widgets .widget-holder{background-color:#fff;border-color:#ddd;}#widgets-left .sidebar-name{background-color:#aaa;background-image:url(../images/ed-bg-vs.gif);text-shadow:#FFF 0 1px 0;border-color:#dfdfdf;}#widgets-right .sidebar-name{background-image:url(../images/fav-vs.png);text-shadow:#3f3f3f 0 -1px 0;background-color:#636363;border-color:#636363;color:#fff;}.sidebar-name:hover,#removing-widget{color:#d54e21;}#removing-widget span{color:black;}#widgets-left .sidebar-name-arrow{background:transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -109px;}#widgets-right .sidebar-name-arrow{background:transparent url(../images/fav-arrow-vs.gif) no-repeat scroll 0 -1px;}.in-widget-title{color:#606060;}.deleting .widget-title *{color:#aaa;}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1;}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea;}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:.5;}#dashboard_recent_comments div.undo{border-top-color:#dfdfdf;}.comment-ays,.comment-ays th{border-color:#ddd;}.comment-ays th{background-color:#f1f1f1;}
\ No newline at end of file
--- /dev/null
+html {
+ background-color: #f7f6f1;
+}
+
+* html input,
+* html .widget {
+ border-color: #8cbdd5;
+}
+
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="file"],
+input[type="button"],
+input[type="submit"],
+input[type="reset"],
+select {
+ border-color: #dfdfdf;
+ background-color: #fff;
+}
+
+kbd,
+code {
+ background: #eaeaea;
+}
+
+input[readonly] {
+ background-color: #eee;
+}
+
+.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,
+#wpbody,
+.form-table .pre {
+ color: #333;
+}
+
+body > #upload-menu {
+ border-bottom-color: #fff;
+}
+
+#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,
+#poststuff .inside label.deleted {
+ 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;
+}
+
+div.dashboard-widget-notice {
+ background-color: #cfe1ef;
+}
+
+div.dashboard-widget-submit {
+ border-top-color: #ccc;
+}
+
+div.tabs-panel,
+ul#category-tabs li.tabs {
+ border-color: #dfdfdf;
+}
+
+ul#category-tabs li.tabs {
+ background-color: #f1f1f1;
+}
+
+input.disabled,
+textarea.disabled {
+ background-color: #ccc;
+}
+/* #upload-menu li a.upload-tab-link, */
+.login #backtoblog a:hover,
+#plugin-information .action-button a,
+#plugin-information .action-button a:hover,
+#plugin-information .action-button a:visited {
+ color: #fff;
+}
+
+.widget .widget-top,
+.postbox h3,
+.stuffbox h3 {
+ background: #d5e6f2 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;
+}
+
+.description,
+.form-wrap p {
+ color: #666;
+}
+
+strong .post-com-count span {
+ background-color: #21759b;
+}
+
+.sorthelper {
+ background-color: #ccf3fa;
+}
+
+.ac_match,
+.subsubsub a.current {
+ color: #000;
+}
+
+.wrap h2 {
+ color: #093e56;
+}
+
+.ac_over {
+ background-color: #f0f0b8;
+}
+
+.ac_results {
+ background-color: #fff;
+ border-color: #808080;
+}
+
+.ac_results li {
+ color: #101010;
+}
+
+.alt
+.alternate {
+ background-color: #edfbfc;
+}
+
+.available-theme a.screenshot {
+ background-color: #f1f1f1;
+ border-color: #ddd;
+}
+
+.bar {
+ background-color: #e8e8e8;
+ border-right-color: #99d;
+}
+
+#media-upload,
+#media-upload .media-item .slidetoggle {
+ background: #fff;
+}
+
+#media-upload .slidetoggle {
+ border-top-color: #dfdfdf;
+}
+
+.error,
+.login #login_error {
+ background-color: #ffebe8;
+ border-color: #c00;
+}
+
+.error a {
+ color: #c00;
+}
+
+.form-invalid {
+ background-color: #ffebe8 !important;
+}
+
+.form-invalid input,
+.form-invalid select {
+ border-color: #c00 !important;
+}
+
+.submit {
+ border-color: #8cbdd5;
+}
+
+.highlight {
+ background-color: #e4f2fd;
+ color: #d54e21;
+}
+
+.howto,
+.nonessential,
+#edit-slug-box,
+.form-input-tip,
+.rss-widget span.rss-date,
+.subsubsub {
+ color: #666;
+}
+
+.media-item {
+ border-bottom-color: #dfdfdf;
+}
+
+#wpbody-content #media-items .describe {
+ border-top-color: #dfdfdf;
+}
+
+.media-upload-form label.form-help,
+td.help {
+ color: #9a9a9a;
+}
+
+.post-com-count {
+ background-image: url(../images/bubble_bg.gif);
+ color: #fff;
+}
+
+.post-com-count span {
+ background-color: #bbb;
+ color: #fff;
+}
+
+.post-com-count:hover span {
+ background-color: #d54e21;
+}
+
+.quicktags, .search {
+ background-color: #ccc;
+ color: #000;
+}
+
+.side-info h5 {
+ border-bottom-color: #dadada;
+}
+
+.side-info ul {
+ color: #666;
+}
+
+.button,
+.button-secondary,
+.submit input,
+input[type=button],
+input[type=submit] {
+ border-color: #dfdfdf;
+ color: #464646;
+}
+
+.button:hover,
+.button-secondary:hover,
+.submit input:hover,
+input[type=button]:hover,
+input[type=submit]:hover {
+ color: #000;
+ border-color: #adaca7;
+}
+
+.button,
+.submit input,
+.button-secondary {
+ background: #f2f2f2 url(../images/white-grad.png) repeat-x scroll left top;
+ text-shadow: rgba(255,255,255,1) 0 1px 0;
+}
+
+.button:active,
+.submit input:active,
+.button-secondary:active {
+ background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
+}
+
+input.button-primary,
+button.button-primary,
+a.button-primary {
+ border-color: #5b86ab;
+ font-weight: bold;
+ color: #fff;
+ background: #5580a6 url(../images/button-grad-vs.png) repeat-x scroll left top;
+ text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
+}
+
+input.button-primary:active,
+button.button-primary:active,
+a.button-primary:active {
+ background: #21759b url(../images/button-grad-active-vs.png) repeat-x scroll left top;
+ color: #eaf2fa;
+}
+
+input.button-primary:hover,
+button.button-primary:hover,
+a.button-primary:hover,
+a.button-primary:focus,
+a.button-primary:active {
+ border-color: #2e5475;
+ color: #eaf2fa;
+}
+
+.button-disabled,
+.button[disabled],
+.button:disabled,
+.button-secondary[disabled],
+.button-secondary:disabled,
+a.button.disabled {
+ color: #aaa !important;
+ border-color: #ddd !important;
+}
+
+.button-primary-disabled,
+.button-primary[disabled],
+.button-primary:disabled {
+ color: #B0C3E2 !important;
+ background: #6590A6 !important;
+}
+
+a:hover,
+a:active,
+a:focus {
+ color: #d54e21;
+}
+
+#wphead #viewsite a:hover,
+#adminmenu a:hover,
+#adminmenu ul.wp-submenu a:hover,
+#the-comment-list .comment a:hover,
+#rightnow a:hover,
+#media-upload a.del-link:hover,
+div.dashboard-widget-submit input:hover,
+.subsubsub a:hover,
+.subsubsub a.current:hover,
+.ui-tabs-nav a:hover,
+.plugins .inactive a:hover,
+#all-plugins-table .plugins .inactive a:hover,
+#search-plugins-table .plugins .inactive a:hover {
+ color: #d54e21;
+}
+
+#the-comment-list .comment-item,
+#dashboard-widgets #dashboard_quick_press form p.submit {
+ border-color: #dfdfdf;
+}
+
+#dashboard_right_now .table {
+ background:#faf9f7 !important;
+}
+
+#side-sortables #category-tabs .tabs a {
+ color: #333;
+}
+
+#rightnow .rbutton {
+ background-color: #ebebeb;
+ color: #264761;
+}
+
+.submitbox .submit {
+ background-color: #464646;
+ color: #ccc;
+}
+
+.plugins a.delete:hover,
+#all-plugins-table .plugins a.delete:hover,
+#search-plugins-table .plugins a.delete:hover,
+.submitbox .submitdelete {
+ color: #f00;
+ border-bottom-color: #f00;
+}
+
+.submitbox .submitdelete:hover,
+#media-items a.delete:hover {
+ color: #fff;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
+#normal-sortables .submitbox .submitdelete:hover {
+ color: #000;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
+.tablenav .dots {
+ border-color: transparent;
+}
+
+.tablenav .next,
+.tablenav .prev {
+ border-color: transparent;
+ color: #21759b;
+}
+
+.tablenav .next:hover,
+.tablenav .prev:hover {
+ border-color: transparent;
+ color: #d54e21;
+}
+
+.updated,
+.login .message {
+ background-color: #ffffe0;
+ border-color: #e6db55;
+}
+
+.update-message {
+ color: #000000;
+}
+
+a.page-numbers {
+ border-bottom-color: #b8d3e2;
+}
+
+.commentlist li {
+ border-bottom-color: #ccc;
+}
+
+.widefat td,
+.widefat th,
+#install-plugins .plugins td,
+#install-plugins .plugins th {
+ border-color: #dfdfdf;
+}
+
+.widefat th {
+ text-shadow: rgba(255,255,255,0.8) 0 1px 0;
+}
+
+.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: #d5e6f2 url(../images/blue-grad.png) repeat-x scroll left top;
+}
+
+h3.dashboard-widget-title small a {
+ color: #d7d7d7;
+}
+
+h3.dashboard-widget-title small a:hover {
+ color: #fff;
+}
+
+a,
+#adminmenu a,
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML,
+#the-comment-list p.comment-author strong a,
+#media-upload a.del-link,
+#media-items a.delete,
+.plugins a.delete,
+.ui-tabs-nav a {
+ color: #1c6280;
+}
+
+/* Because we don't want visited on these links */
+body.press-this .tabs a,
+body.press-this .tabs a:hover {
+ background-color: #fff;
+ border-color: #c6d9e9;
+ border-bottom-color: #fff;
+ color: #d54e21;
+}
+
+#adminmenu #awaiting-mod,
+#adminmenu .update-plugins,
+#sidemenu a .update-plugins,
+#rightnow .reallynow,
+#plugin-information .action-button {
+ background-color: #d54e21;
+ color: #fff;
+}
+
+#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) 0 -1px 0;
+ -khtml-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
+ -webkit-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
+ box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
+}
+
+#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;
+}
+
+div#media-upload-header,
+div#plugin-information-header {
+ background-color: #f9f9f9;
+ border-bottom-color: #dfdfdf;
+}
+
+#currenttheme img {
+ border-color: #666;
+}
+
+#dashboard_secondary div.dashboard-widget-content ul li a {
+ background-color: #f9f9f9;
+}
+
+input.readonly, textarea.readonly {
+ background-color: #ddd;
+}
+
+#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,
+.tablenav .displaying-num,
+#submitted-on {
+ color: #777;
+}
+
+.login #nav a {
+ color: #21759b !important;
+}
+
+.login #nav a:hover {
+ color: #d54e21 !important;
+}
+
+#footer,
+#footer-upgrade {
+ background: #1d507d;
+ color: #b6d1e4;
+}
+
+#media-items,
+.imgedit-group {
+ border-color: #dfdfdf;
+}
+
+.checkbox,
+.side-info,
+.plugins tr,
+.postbox,
+#your-profile #rich_editing {
+ background-color: #fff;
+}
+
+.plugins .inactive,
+.plugins .inactive th,
+.plugins .inactive td,
+tr.inactive + tr.plugin-update-tr .plugin-update {
+ background-color: #ebeeef;
+}
+
+.plugin-update-tr .update-message {
+ background-color: #fffbe4;
+ border-color: #dfdfdf;
+}
+
+.plugins .active,
+.plugins .active th,
+.plugins .active td {
+ color: #000;
+}
+
+.plugins .inactive a {
+ color: #557799;
+}
+
+#the-comment-list tr.undo,
+#the-comment-list div.undo {
+ background-color: #f4f4f4;
+}
+
+#the-comment-list .unapproved {
+ background-color: #ffffe0;
+}
+
+#the-comment-list .approve a {
+ color: #006505;
+}
+
+#the-comment-list .unapprove a {
+ color: #d98500;
+}
+
+table.widefat span.delete a,
+table.widefat span.trash a,
+table.widefat span.spam a,
+#dashboard_recent_comments .delete a,
+#dashboard_recent_comments .trash a,
+#dashboard_recent_comments .spam a {
+ color: #bc0b0b;
+}
+
+.widget,
+#widget-list .widget-top,
+.postbox,
+#titlediv,
+#poststuff .postarea,
+.stuffbox {
+ border-color: #dfdfdf;
+}
+
+.widget,
+.postbox {
+ background-color: #fff;
+}
+
+.ui-sortable .postbox h3 {
+ color: #093e56;
+}
+
+.widget .widget-top,
+.ui-sortable .postbox h3:hover {
+ color: #000;
+}
+
+.curtime #timestamp {
+ background-image: url(../images/date-button.gif);
+}
+
+#quicktags #ed_link {
+ color: #00f;
+}
+
+#rightnow .youhave {
+ background-color: #f0f6fb;
+}
+
+#rightnow a {
+ color: #448abd;
+}
+
+.tagchecklist span a,
+#bulk-titles div a {
+ background: url(../images/xit.gif) no-repeat;
+}
+
+.tagchecklist span a:hover,
+#bulk-titles div a:hover {
+ background: url(../images/xit.gif) no-repeat -10px 0;
+}
+
+#update-nag {
+ background-color: #fffeeb;
+ border-color: #ccc;
+ color: #555;
+}
+
+.login #backtoblog a {
+ color: #ccc;
+}
+
+#wphead {
+ background-color: #1d507d;
+}
+
+body.login {
+ border-top-color: #093e56;
+}
+
+#wphead h1 a {
+ color: #fff;
+}
+
+#user_info {
+ color: #b6d1e4;
+}
+
+#user_info a:link,
+#user_info a:visited,
+#footer a:link,
+#footer a:visited {
+ color: #fff;
+ text-decoration: none;
+}
+
+#user_info a:hover,
+#user_info a:active,
+#footer a:hover,
+#footer a:active {
+ text-decoration: underline;
+}
+
+div#media-upload-error,
+.file-error,
+abbr.required,
+.widget-control-remove:hover,
+table.widefat .delete a:hover,
+table.widefat .trash a:hover,
+table.widefat .spam a:hover,
+#dashboard_recent_comments .delete a:hover,
+#dashboard_recent_comments .trash a:hover,
+#dashboard_recent_comments .spam a:hover {
+ color: #f00;
+}
+
+/* password strength meter */
+#pass-strength-result {
+ background-color: #eee;
+ border-color: #ddd !important;
+}
+
+#pass-strength-result.bad {
+ background-color: #ffb78c;
+ border-color: #ff853c !important;
+}
+
+#pass-strength-result.good {
+ background-color: #ffec8b;
+ border-color: #fc0 !important;
+}
+
+#pass-strength-result.short {
+ background-color: #ffa0a0;
+ border-color: #f04040 !important;
+}
+
+#pass-strength-result.strong {
+ background-color: #c3ff88;
+ border-color: #8dff1c !important;
+}
+
+/* editors */
+#quicktags {
+ border-color: #dfdfdf;
+ background-color: #dfdfdf;
+}
+
+#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: #f2f1eb;
+ border-color: #dfdfdf;
+ color: #999;
+}
+
+#poststuff #editor-toolbar .active {
+ border-bottom-color: #e3eef7;
+ background-color: #e3eef7;
+ 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:active {
+ color: #000;
+}
+
+/* Containers */
+.wp_themeSkin iframe {
+ background: #fff;
+}
+
+/* Layout */
+.wp_themeSkin .mceStatusbar {
+ color: #000;
+ background-color: #f5f5f5;
+}
+
+/* Button */
+.wp_themeSkin .mceButton {
+ background-color: #e9e8e8;
+ border-color: #b2b2b2;
+}
+
+.wp_themeSkin a.mceButtonEnabled:hover,
+.wp_themeSkin a.mceButtonActive,
+.wp_themeSkin a.mceButtonSelected {
+ background-color: #d5d5d5;
+ border-color: #777 !important;
+}
+
+.wp_themeSkin .mceButtonDisabled {
+ border-color: #ccc !important;
+}
+
+/* ListBox */
+.wp_themeSkin .mceListBox .mceText,
+.wp_themeSkin .mceListBox .mceOpen {
+ border-color: #b2b2b2;
+ background-color: #d5d5d5;
+}
+
+.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
+.wp_themeSkin .mceListBoxHover .mceOpen,
+.wp_themeSkin .mceListBoxSelected .mceOpen,
+.wp_themeSkin .mceListBoxSelected .mceText {
+ border-color: #777 !important;
+ background-color: #d5d5d5;
+}
+
+.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
+.wp_themeSkin .mceListBoxHover .mceText {
+ border-color: #777 !important;
+}
+
+.wp_themeSkin select.mceListBox {
+ border-color: #b2b2b2;
+ background-color: #fff;
+}
+
+/* SplitButton */
+.wp_themeSkin .mceSplitButton a.mceAction,
+.wp_themeSkin .mceSplitButton a.mceOpen {
+ 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: #d5d5d5;
+ border-color: #777 !important;
+}
+
+.wp_themeSkin .mceSplitButtonActive {
+ background-color: #b2b2b2;
+}
+
+/* ColorSplitButton */
+.wp_themeSkin div.mceColorSplitMenu table {
+ background-color: #ebebeb;
+ border-color: #b2b2b2;
+}
+
+.wp_themeSkin .mceColorSplitMenu a {
+ border-color: #b2b2b2;
+}
+
+.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
+ border-color: #fff;
+}
+
+.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
+ border-color: #0a246a;
+ background-color: #b6bdd2;
+}
+
+.wp_themeSkin a.mceMoreColors:hover {
+ border-color: #0a246a;
+}
+
+/* Menu */
+.wp_themeSkin .mceMenu {
+ border-color: #ddd;
+}
+
+.wp_themeSkin .mceMenu table {
+ background-color: #ebeaeb;
+}
+
+.wp_themeSkin .mceMenu .mceText {
+ color: #000;
+}
+
+.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
+.wp_themeSkin .mceMenu .mceMenuItemActive {
+ background-color: #f5f5f5;
+}
+.wp_themeSkin td.mceMenuItemSeparator {
+ background-color: #aaa;
+}
+.wp_themeSkin .mceMenuItemTitle a {
+ background-color: #ccc;
+ border-bottom-color: #aaa;
+}
+.wp_themeSkin .mceMenuItemTitle span.mceText {
+ color: #000;
+}
+.wp_themeSkin .mceMenuItemDisabled .mceText {
+ color: #888;
+}
+
+#quicktags,
+.wp_themeSkin tr.mceFirst td.mceToolbar {
+ background: #e3eef7 url("../images/ed-bg-vs.gif") repeat-x scroll left top;
+}
+.wp_themeSkin tr.mceFirst td.mceToolbar {
+ border-color: #dfdfdf;
+}
+
+.wp-admin #mceModalBlocker {
+ background: #000;
+}
+
+.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft {
+ background: #444;
+ 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;
+}
+
+.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight {
+ background: #444;
+ 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,
+.editwidget .widget-inside {
+ border-color: #dfdfdf;
+}
+
+#titlediv #title {
+ background-color: #fff;
+}
+
+#tTips p#tTips_inside {
+ background-color: #ddd;
+ color: #333;
+}
+
+#timestampdiv input,
+#namediv input,
+#poststuff .inside .the-tagcloud {
+ border-color: #dfdfdf;
+}
+
+/* menu */
+#adminmenu * {
+ border-color: #dfdfdf;
+}
+
+#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-vs.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-vs.gif) no-repeat scroll left -109px;
+}
+
+#adminmenu a.menu-top {
+ background: #eaf3fa url(../images/menu-bits-vs.gif) repeat-x scroll left -379px;
+}
+
+#adminmenu .wp-submenu a {
+ background: #fff url(../images/menu-bits-vs.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: #3c6b95 url(../images/menu-bits-vs.gif) top left repeat-x;
+ border-color: #1d507d;
+ color: #fff;
+ text-shadow: rgba(0,0,0,0.4) 0 -1px 0;
+}
+
+#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: #6583c0;
+}
+
+#adminmenu .wp-submenu .current a.current {
+ background: transparent url(../images/menu-bits-vs.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) 0 1px 0;
+}
+
+#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: #fdd;
+}
+
+table.diff .diff-deletedline del {
+ background-color: #f99;
+}
+
+table.diff .diff-addedline {
+ background-color: #dfd;
+}
+
+table.diff .diff-addedline ins {
+ background-color: #9f9;
+}
+
+#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: #eae9e4;
+ 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,
+.vim-current th,
+.vim-current td {
+ 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: #fff;
+ border-color: #ddd;
+}
+
+.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-vs.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-vs.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.tabs 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: #5580a6 url(../images/fav-vs.png) repeat-x 0 center;
+ border-color: #517ea5 !important;
+ border-bottom-color: #416686 !important;
+}
+
+#favorite-actions .slide-down {
+ background-image: url(../images/fav-top-vs.gif);
+ background-position:0 0;
+ background-repeat: repeat-x;
+}
+
+#favorite-inside {
+ border-color: #5b86ac;
+ background-color: #5580a6;
+}
+
+#favorite-toggle {
+ background: transparent url(../images/fav-arrow-vs.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;
+}
+
+#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-profile,
+#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-vs.gif) no-repeat scroll center center;
+}
+
+#wphead #site-visit-button {
+ background-color: #3c6b95;
+ background-image: url(../images/visit-site-button-grad-vs.gif);
+ color: #b6d1e4;
+ text-shadow: #3f3f3f 0 -1px 0;
+}
+
+#wphead a:hover #site-visit-button {
+ color: #fff;
+}
+
+#wphead a:focus #site-visit-button,
+#wphead a:active #site-visit-button {
+ background-position: 0 -27px;
+}
+
+.popular-tags,
+.feature-filter {
+ background-color: #fff;
+ border-color: #dfdfdf;
+}
+
+#theme-information .action-button {
+ border-top-color: #dfdfdf;
+}
+
+.theme-listing br.line {
+ border-bottom-color: #ccc;
+}
+
+div.widgets-sortables,
+#widgets-left .inactive {
+ background-color: #f1f1f1;
+ border-color: #ddd;
+}
+
+#available-widgets .widget-holder {
+ background-color: #fff;
+ border-color: #ddd;
+}
+
+#widgets-left .sidebar-name {
+ background-color: #aaa;
+ background-image: url(../images/ed-bg-vs.gif);
+ text-shadow: #FFFFFF 0 1px 0;
+ border-color: #dfdfdf;
+}
+
+#widgets-right .sidebar-name {
+ background-image: url(../images/fav-vs.png);
+ text-shadow: #3f3f3f 0 -1px 0;
+ background-color: #636363;
+ border-color: #636363;
+ color: #fff;
+}
+
+.sidebar-name:hover,
+#removing-widget {
+ color: #d54e21;
+}
+
+#removing-widget span {
+ color: black;
+}
+
+#widgets-left .sidebar-name-arrow {
+ background: transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -109px;
+}
+
+#widgets-right .sidebar-name-arrow {
+ background: transparent url(../images/fav-arrow-vs.gif) no-repeat scroll 0 -1px;
+}
+
+.in-widget-title {
+ color: #606060;
+}
+
+.deleting .widget-title * {
+ color: #aaa;
+}
+
+.imgedit-menu div {
+ border-color: #d5d5d5;
+ background-color: #f1f1f1;
+}
+
+.imgedit-menu div:hover {
+ border-color: #c1c1c1;
+ background-color: #eaeaea;
+}
+
+.imgedit-menu div.disabled {
+ border-color: #ccc;
+ background-color: #ddd;
+ filter: alpha(opacity=50);
+ opacity: 0.5;
+}
+
+#dashboard_recent_comments div.undo {
+ border-top-color: #dfdfdf;
+}
+
+.comment-ays,
+.comment-ays th {
+ border-color: #ddd;
+}
+
+.comment-ays th {
+ background-color: #f1f1f1;
+}
-html {
- background-color: #f9f9f9;
-}
-
-* html input,
-* html .widget {
- border-color: #dfdfdf;
-}
-
-textarea,
-input,
-select {
- border-color: #DFDFDF;
-}
-
-kbd,
-code {
- background: #eaeaea;
-}
-
-input[readonly] {
- background-color: #eee;
-}
-
-.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,
-#wpbody,
-.form-table .pre {
- color: #333;
-}
-
-body > #upload-menu {
- border-bottom-color: #fff;
-}
-
-#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;
-}
-
-div.dashboard-widget-notice {
- background-color: #cfe1ef;
-}
-
-div.dashboard-widget-submit {
- border-top-color: #ccc;
-}
-
-div.tabs-panel,
-ul#category-tabs li.tabs {
- border-color: #dfdfdf;
-}
-
-ul#category-tabs li.tabs {
- background-color: #f1f1f1;
-}
-
-input.disabled,
-textarea.disabled {
- background-color: #ccc;
-}
-/* #upload-menu li a.upload-tab-link, */
-.login #backtoblog a:hover,
-#plugin-information .action-button a,
-#plugin-information .action-button a:hover,
-#plugin-information .action-button a:visited {
- color: #fff;
-}
-
-.widget .widget-top,
-.postbox h3,
-.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;
-}
-
-.description,
-.form-wrap p {
- color: #666;
-}
-
-strong .post-com-count span {
- background-color: #21759b;
-}
-
-.sorthelper {
- background-color: #ccf3fa;
-}
-
-.ac_match,
-.subsubsub a.current {
- color: #000;
-}
-
-.wrap h2 {
- color: #464646;
-}
-
-.ac_over {
- background-color: #f0f0b8;
-}
-
-.ac_results {
- background-color: #fff;
- border-color: #808080;
-}
-
-.ac_results li {
- color: #101010;
-}
-
-.alternate,
-.alt {
- background-color: #f9f9f9;
-}
-
-.available-theme a.screenshot {
- background-color: #f1f1f1;
- border-color: #ddd;
-}
-
-.bar {
- background-color: #e8e8e8;
- border-right-color: #99d;
-}
-
-#media-upload {
- background: #fff;
-}
-
-#media-upload .slidetoggle {
- border-top-color: #dfdfdf;
-}
-
-.error,
-#login #login_error {
- background-color: #ffebe8;
- border-color: #c00;
-}
-
-.error a {
- color: #c00;
-}
-
-.form-invalid {
- background-color: #ffebe8 !important;
-}
-
-.form-invalid input {
- border-color: #c00 !important;
-}
-
-.submit {
- border-color: #DFDFDF;
-}
-
-.highlight {
- background-color: #e4f2fd;
- color: #d54e21;
-}
-
-.howto,
-.nonessential,
-#edit-slug-box,
-.form-input-tip,
-.rss-widget span.rss-date,
-.subsubsub {
- color: #666;
-}
-
-.media-item {
- border-bottom-color: #dfdfdf;
-}
-
-#wpbody-content #media-items .describe {
- border-top-color: #dfdfdf;
-}
-
-.describe input[type="text"],
-.describe textarea {
- border-color: #dfdfdf;
-}
-
-.media-upload-form label.form-help,
-td.help {
- color: #9a9a9a;
-}
-
-.post-com-count {
- background-image: url(../images/bubble_bg.gif);
- color: #fff;
-}
-
-.post-com-count span {
- background-color: #bbb;
- color: #fff;
-}
-
-.post-com-count:hover span {
- background-color: #d54e21;
-}
-
-.quicktags, .search {
- background-color: #ccc;
- color: #000;
-}
-
-.side-info h5 {
- border-bottom-color: #dadada;
-}
-
-.side-info ul {
- color: #666;
-}
-
-.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,
-.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;
-}
-
-a:hover,
-#wphead #viewsite a:hover,
-#adminmenu a:hover,
-#adminmenu ul.wp-submenu a:hover,
-#the-comment-list .comment a:hover,
-#rightnow a:hover,
-#login form .submit input:hover,
-#media-upload a.del-link:hover,
-div.dashboard-widget-submit input:hover,
-.subsubsub a:hover,
-.subsubsub a.current:hover,
-.ui-tabs-nav a:hover,
-.plugins .inactive a:hover,
-#all-plugins-table .plugins .inactive a:hover,
-#search-plugins-table .plugins .inactive a:hover {
- color: #d54e21;
-}
-
-#the-comment-list .comment-item,
-#dashboard-widgets #dashboard_quick_press form p.submit {
- border-color: #dfdfdf;
-}
-
-.button-primary:hover,
-#login form .submit input:hover {
- border-color: #13455b !important;
- color: #EAF2FA !important;
-}
-
-#side-sortables #category-tabs .tabs a {
- color: #333;
-}
-
-#rightnow .rbutton {
- background-color: #ebebeb;
- color: #264761;
-}
-
-.submitbox .submit {
- background-color: #464646;
- color: #ccc;
-}
-
-.plugins a.delete:hover,
-#all-plugins-table .plugins a.delete:hover,
-#search-plugins-table .plugins a.delete:hover,
-.submitbox .submitdelete,
-a.delete {
- color: #f00;
- border-bottom-color: #f00;
-}
-
-.submitbox .submitdelete:hover,
-#media-items a.delete:hover {
- color: #fff;
- background-color: #f00;
- border-bottom-color: #f00;
-}
-
-#normal-sortables .submitbox .submitdelete:hover {
- color: #000;
- background-color: #f00;
- border-bottom-color: #f00;
-}
-
-.tablenav .dots {
- border-color: transparent;
-}
-
-.tablenav .next,
-.tablenav .prev {
- border-color: transparent;
- color: #21759b;
-}
-
-.tablenav .next:hover,
-.tablenav .prev:hover {
- border-color: transparent;
- color: #d54e21;
-}
-
-.updated,
-.login #login_error,
-.login .message {
- background-color: #ffffe0;
- border-color: #e6db55;
-}
-
-.update-message {
- color: #000000;
-}
-
-a.page-numbers {
- border-bottom-color: #B8D3E2;
-}
-
-.commentlist li {
- border-bottom-color: #ccc;
-}
-
-.widefat td,
-.widefat th,
-#install-plugins .plugins td,
-#install-plugins .plugins th {
- border-color: #dfdfdf;
-}
-
-.widefat th {
- text-shadow: rgba(255,255,255,0.8) 0 1px 0;
-}
-
-.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;
-}
-
-h3.dashboard-widget-title small a {
- color: #d7d7d7;
-}
-
-h3.dashboard-widget-title small a:hover {
- color: #fff;
-}
-
-a,
-#adminmenu a,
-#poststuff #edButtonPreview,
-#poststuff #edButtonHTML,
-#the-comment-list p.comment-author strong a,
-#media-upload a.del-link,
-#media-items a.delete,
-.plugins a.delete,
-.ui-tabs-nav a {
- color: #21759b;
-}
-
-/* Because we don't want visited on these links */
-body.press-this .tabs a,
-body.press-this .tabs a:hover {
- background-color: #fff;
- border-color: #c6d9e9;
- border-bottom-color: #fff;
- color: #d54e21;
-}
-
-#adminmenu #awaiting-mod,
-#adminmenu .update-plugins,
-#sidemenu a .update-plugins,
-#rightnow .reallynow,
-#plugin-information .action-button {
- background-color: #d54e21;
- color: #fff;
-}
-
-#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) 0 -1px 0;
- -khtml-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
- -webkit-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
- box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
-}
-
-#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;
-}
-
-div#media-upload-header,
-div#plugin-information-header {
- background-color: #f9f9f9;
- border-bottom-color: #dfdfdf;
-}
-
-#currenttheme img {
- border-color: #666;
-}
-
-#dashboard_secondary div.dashboard-widget-content ul li a {
- background-color: #f9f9f9;
-}
-
-input.readonly, textarea.readonly {
- background-color: #ddd;
-}
-
-#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,
-.tablenav .displaying-num,
-#submitted-on {
- color: #777;
-}
-
-.login #nav a {
- color: #21759b !important;
-}
-
-.login #nav a:hover {
- color: #d54e21 !important;
-}
-
-#footer,
-#footer-upgrade {
- background: #464646;
- color: #999;
-}
-
-#media-items {
- border-color: #dfdfdf;
-}
-
-.checkbox,
-.side-info,
-.plugins tr,
-#your-profile #rich_editing {
- background-color: #fff;
-}
-
-.plugins .inactive,
-.plugins .inactive th,
-.plugins .inactive td,
-tr.inactive + tr.plugin-update-tr .plugin-update {
- background-color: #eee;
-}
-
-.plugin-update-tr .update-message {
- background-color: #fffbe4;
- border-color: #dfdfdf;
-}
-
-.plugins .active,
-.plugins .active th,
-.plugins .active td {
- color: #000;
-}
-
-.plugins .inactive a {
- color: #557799;
-}
-
-#the-comment-list .unapproved,
-#the-comment-list .unapproved th,
-#the-comment-list .unapproved td {
- background-color: #ffffe0;
-}
-
-#the-comment-list .approve a {
- color: #006505;
-}
-
-#the-comment-list .unapprove a {
- color: #d98500;
-}
-
-#the-comment-list .delete a {
- color: #bc0b0b;
-}
-
-.widget,
-#widget-list .widget-top,
-.postbox,
-#titlediv,
-#poststuff .postarea,
-.stuffbox {
- border-color: #dfdfdf;
-}
-
-.widget,
-.postbox {
- background-color: #fff;
-}
-
-.ui-sortable .postbox h3 {
- color: #464646;
-}
-
-.widget .widget-top,
-.ui-sortable .postbox h3:hover {
- color: #000;
-}
-
-.curtime #timestamp {
- background-image: url(../images/date-button.gif);
-}
-
-#quicktags #ed_link {
- color: #00f;
-}
-
-#rightnow .youhave {
- background-color: #f0f6fb;
-}
-
-#rightnow a {
- color: #448abd;
-}
-
-.tagchecklist span a,
-#bulk-titles div a {
- background: url(../images/xit.gif) no-repeat;
-}
-
-.tagchecklist span a:hover,
-#bulk-titles div a:hover {
- background: url(../images/xit.gif) no-repeat -10px 0;
-}
-
-#update-nag {
- background-color: #fffeeb;
- border-color: #ccc;
- color: #555;
-}
-
-.login #backtoblog a {
- color: #ccc;
-}
-
-#wphead {
- background-color: #464646;
-}
-
-body.login {
- border-top-color: #464646;
-}
-
-#wphead h1 a {
- color: #fff;
-}
-
-#login form input {
- color: #555;
-}
-
-#user_info {
- color: #999;
-}
-
-#user_info a:link,
-#user_info a:visited,
-#footer a:link,
-#footer a:visited {
- color: #ccc;
- text-decoration: none;
-}
-
-#user_info a:hover,
-#footer a:hover {
- color: #fff;
- text-decoration: underline !important;
-}
-
-#user_info a:active,
-#footer a:active {
- color: #ccc !important;
-}
-
-div#media-upload-error,
-.file-error,
-abbr.required,
-.widget-control-remove:hover,
-.delete a:hover {
- color: #f00;
-}
-
-#pass-strength-result {
- background-color: #eee;
- border-color: #ddd !important;
-}
-
-#pass-strength-result.bad {
- background-color: #ffb78c;
- border-color: #ff853c !important;
-}
-
-#pass-strength-result.good {
- background-color: #ffec8b;
- border-color: #fc0 !important;
-}
-
-#pass-strength-result.short {
- background-color: #ffa0a0;
- border-color: #f04040 !important;
-}
-
-#pass-strength-result.strong {
- background-color: #c3ff88;
- border-color: #8dff1c !important;
-}
-
-/* editors */
-#quicktags {
- border-color: #dfdfdf;
- background-color: #dfdfdf;
-}
-
-#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:active {
- color: #000;
-}
-
-/* Containers */
-.wp_themeSkin iframe {
- background: #fff;
-}
-
-/* Layout */
-.wp_themeSkin .mceStatusbar {
- color: #000;
- background-color: #f5f5f5;
-}
-
-/* Button */
-.wp_themeSkin .mceButton {
- background-color: #e9e8e8;
- border-color: #B2B2B2;
-}
-
-.wp_themeSkin a.mceButtonEnabled:hover,
-.wp_themeSkin a.mceButtonActive,
-.wp_themeSkin a.mceButtonSelected {
- background-color: #d5d5d5;
- border-color: #777 !important;
-}
-
-.wp_themeSkin .mceButtonDisabled {
- border-color: #ccc !important;
-}
-
-/* ListBox */
-.wp_themeSkin .mceListBox .mceText,
-.wp_themeSkin .mceListBox .mceOpen {
- border-color: #B2B2B2;
- background-color: #d5d5d5;
-}
-
-.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
-.wp_themeSkin .mceListBoxHover .mceOpen,
-.wp_themeSkin .mceListBoxSelected .mceOpen,
-.wp_themeSkin .mceListBoxSelected .mceText {
- border-color: #777 !important;
- background-color: #d5d5d5;
-}
-
-.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
-.wp_themeSkin .mceListBoxHover .mceText {
- border-color: #777 !important;
-}
-
-.wp_themeSkin select.mceListBox {
- border-color: #B2B2B2;
- background-color: #fff;
-}
-
-/* SplitButton */
-.wp_themeSkin .mceSplitButton a.mceAction,
-.wp_themeSkin .mceSplitButton a.mceOpen {
- 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: #d5d5d5;
- border-color: #777 !important;
-}
-
-.wp_themeSkin .mceSplitButtonActive {
- background-color: #B2B2B2;
-}
-
-/* ColorSplitButton */
-.wp_themeSkin div.mceColorSplitMenu table {
- background-color: #ebebeb;
- border-color: #B2B2B2;
-}
-
-.wp_themeSkin .mceColorSplitMenu a {
- border-color: #B2B2B2;
-}
-
-.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
- border-color: #fff;
-}
-
-.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
- border-color: #0A246A;
- background-color: #B6BDD2;
-}
-
-.wp_themeSkin a.mceMoreColors:hover {
- border-color: #0A246A;
-}
-
-/* Menu */
-.wp_themeSkin .mceMenu {
- border-color: #ddd;
-}
-
-.wp_themeSkin .mceMenu table {
- background-color: #ebeaeb;
-}
-
-.wp_themeSkin .mceMenu .mceText {
- color: #000;
-}
-
-.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
-.wp_themeSkin .mceMenu .mceMenuItemActive {
- background-color: #f5f5f5;
-}
-.wp_themeSkin td.mceMenuItemSeparator {
- background-color: #aaa;
-}
-.wp_themeSkin .mceMenuItemTitle a {
- background-color: #ccc;
- border-bottom-color: #aaa;
-}
-.wp_themeSkin .mceMenuItemTitle span.mceText {
- color: #000;
-}
-.wp_themeSkin .mceMenuItemDisabled .mceText {
- color: #888;
-}
-
-.wp_themeSkin tr.mceFirst td.mceToolbar {
- background: #dfdfdf url("../images/ed-bg.gif") repeat-x scroll left top;
- border-color: #dfdfdf;
-}
-
-.wp-admin #mceModalBlocker {
- background: #000;
-}
-
-.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;
-}
-
-.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,
-.editwidget .widget-inside {
- border-color: #dfdfdf;
-}
-
-#titlediv #title {
- background-color: #fff;
-}
-
-#tTips p#tTips_inside {
- background-color: #ddd;
- color: #333;
-}
-
-#timestampdiv input,
-#namediv input,
-#poststuff .inside .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-deletedline del {
- background-color: #ff9999;
-}
-
-table.diff .diff-addedline {
- background-color: #ddffdd;
-}
-
-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,
-.vim-current th,
-.vim-current td {
- 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-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.tabs 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-profile,
-#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;
-}
-
-#wphead #site-visit-button {
- background-color:#585858;
- background-image: url(../images/visit-site-button-grad.gif);
- color:#aaa;
- text-shadow: #3F3F3F 0 -1px 0;
-}
-
-#wphead a:hover #site-visit-button {
- color:#fff;
-}
-
-#wphead a:focus #site-visit-button,
-#wphead a:active #site-visit-button {
- background-position:0 -27px;
-}
-
-.popular-tags,
-.feature-filter {
- background-color: #FFFFFF;
- border-color: #DFDFDF;
-}
-
-#theme-information .action-button {
- border-top-color: #DFDFDF;
-}
-
-.theme-listing br.line {
- border-bottom-color: #ccc;
-}
-
-div.widgets-sortables,
-#widgets-left .inactive {
- background-color: #f1f1f1;
- border-color: #ddd;
-}
-
-#available-widgets .widget-holder {
- background-color: #fff;
- border-color: #ddd;
-}
-
-#widgets-left .sidebar-name {
- background-color: #aaa;
- background-image: url(../images/ed-bg.gif);
- text-shadow: #FFFFFF 0 1px 0;
- border-color: #dfdfdf;
-}
-
-#widgets-right .sidebar-name {
- background-image: url(../images/fav.png);
- text-shadow: #3f3f3f 0 -1px 0;
- background-color: #636363;
- border-color: #636363;
- color: #fff;
-}
-
-.sidebar-name:hover,
-#removing-widget {
- color: #d54e21;
-}
-
-#removing-widget span {
- color: black;
-}
-
-#widgets-left .sidebar-name-arrow {
- background: transparent url(../images/menu-bits.gif) no-repeat scroll left -109px;
-}
-
-#widgets-right .sidebar-name-arrow {
- background: transparent url(../images/fav-arrow.gif) no-repeat scroll 0 -1px;
-}
-
-.in-widget-title {
- color: #606060;
-}
-
-.deleting .widget-title * {
- color: #aaa;
-}
+html{background-color:#f9f9f9;}* html input,* html .widget{border-color:#dfdfdf;}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],select{border-color:#dfdfdf;background-color:#fff;}kbd,code{background:#eaeaea;}input[readonly]{background-color:#eee;}.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,#wpbody,.form-table .pre{color:#333;}body>#upload-menu{border-bottom-color:#fff;}#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,#poststuff .inside label.deleted{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;}div.dashboard-widget-notice{background-color:#cfe1ef;}div.dashboard-widget-submit{border-top-color:#ccc;}div.tabs-panel,ul#category-tabs li.tabs{border-color:#dfdfdf;}ul#category-tabs li.tabs{background-color:#f1f1f1;}input.disabled,textarea.disabled{background-color:#ccc;}.login #backtoblog a:hover,#plugin-information .action-button a,#plugin-information .action-button a:hover,#plugin-information .action-button a:visited{color:#fff;}.widget .widget-top,.postbox h3,.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;}.description,.form-wrap p{color:#666;}strong .post-com-count span{background-color:#21759b;}.sorthelper{background-color:#ccf3fa;}.ac_match,.subsubsub a.current{color:#000;}.wrap h2{color:#464646;}.ac_over{background-color:#f0f0b8;}.ac_results{background-color:#fff;border-color:#808080;}.ac_results li{color:#101010;}.alternate,.alt{background-color:#f9f9f9;}.available-theme a.screenshot{background-color:#f1f1f1;border-color:#ddd;}.bar{background-color:#e8e8e8;border-right-color:#99d;}#media-upload,#media-upload .media-item .slidetoggle{background:#fff;}#media-upload .slidetoggle{border-top-color:#dfdfdf;}.error,.login #login_error{background-color:#ffebe8;border-color:#c00;}.error a{color:#c00;}.form-invalid{background-color:#ffebe8!important;}.form-invalid input,.form-invalid select{border-color:#c00!important;}.submit{border-color:#DFDFDF;}.highlight{background-color:#e4f2fd;color:#d54e21;}.howto,.nonessential,#edit-slug-box,.form-input-tip,.rss-widget span.rss-date,.subsubsub{color:#666;}.media-item{border-bottom-color:#dfdfdf;}#wpbody-content #media-items .describe{border-top-color:#dfdfdf;}.media-upload-form label.form-help,td.help{color:#9a9a9a;}.post-com-count{background-image:url(../images/bubble_bg.gif);color:#fff;}.post-com-count span{background-color:#bbb;color:#fff;}.post-com-count:hover span{background-color:#d54e21;}.quicktags,.search{background-color:#ccc;color:#000;}.side-info h5{border-bottom-color:#dadada;}.side-info ul{color:#666;}.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;text-shadow:rgba(255,255,255,1) 0 1px 0;}.button:active,.submit input:active,.button-secondary:active{background:#eee url(../images/white-grad-active.png) repeat-x scroll left top;}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background:#21759B url(../images/button-grad.png) repeat-x scroll left top;text-shadow:rgba(0,0,0,0.3) 0 -1px 0;}input.button-primary:active,button.button-primary:active,a.button-primary:active{background:#21759b url(../images/button-grad-active.png) repeat-x scroll left top;color:#eaf2fa;}input.button-primary:hover,button.button-primary:hover,a.button-primary:hover,a.button-primary:focus,a.button-primary:active{border-color:#13455b;color:#eaf2fa;}.button-disabled,.button[disabled],.button:disabled,.button-secondary[disabled],.button-secondary:disabled,a.button.disabled{color:#aaa!important;border-color:#ddd!important;}.button-primary-disabled,.button-primary[disabled],.button-primary:disabled{color:#9FD0D5!important;background:#298CBA!important;}a:hover,a:active,a:focus{color:#d54e21;}#wphead #viewsite a:hover,#adminmenu a:hover,#adminmenu ul.wp-submenu a:hover,#the-comment-list .comment a:hover,#rightnow a:hover,#media-upload a.del-link:hover,div.dashboard-widget-submit input:hover,.subsubsub a:hover,.subsubsub a.current:hover,.ui-tabs-nav a:hover,.plugins .inactive a:hover,#all-plugins-table .plugins .inactive a:hover,#search-plugins-table .plugins .inactive a:hover{color:#d54e21;}#the-comment-list .comment-item,#dashboard-widgets #dashboard_quick_press form p.submit{border-color:#dfdfdf;}#side-sortables #category-tabs .tabs a{color:#333;}#rightnow .rbutton{background-color:#ebebeb;color:#264761;}.submitbox .submit{background-color:#464646;color:#ccc;}.plugins a.delete:hover,#all-plugins-table .plugins a.delete:hover,#search-plugins-table .plugins a.delete:hover,.submitbox .submitdelete{color:#f00;border-bottom-color:#f00;}.submitbox .submitdelete:hover,#media-items a.delete:hover{color:#fff;background-color:#f00;border-bottom-color:#f00;}#normal-sortables .submitbox .submitdelete:hover{color:#000;background-color:#f00;border-bottom-color:#f00;}.tablenav .dots{border-color:transparent;}.tablenav .next,.tablenav .prev{border-color:transparent;color:#21759b;}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21;}.updated,.login .message{background-color:#ffffe0;border-color:#e6db55;}.update-message{color:#000;}a.page-numbers{border-bottom-color:#B8D3E2;}.commentlist li{border-bottom-color:#ccc;}.widefat td,.widefat th,#install-plugins .plugins td,#install-plugins .plugins th{border-color:#dfdfdf;}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0;}.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;}h3.dashboard-widget-title small a{color:#d7d7d7;}h3.dashboard-widget-title small a:hover{color:#fff;}a,#adminmenu a,#poststuff #edButtonPreview,#poststuff #edButtonHTML,#the-comment-list p.comment-author strong a,#media-upload a.del-link,#media-items a.delete,.plugins a.delete,.ui-tabs-nav a{color:#21759b;}body.press-this .tabs a,body.press-this .tabs a:hover{background-color:#fff;border-color:#c6d9e9;border-bottom-color:#fff;color:#d54e21;}#adminmenu #awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow,#plugin-information .action-button{background-color:#d54e21;color:#fff;}#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) 0 -1px 0;-khtml-box-shadow:rgba(0,0,0,0.2) 0 -1px 0;-webkit-box-shadow:rgba(0,0,0,0.2) 0 -1px 0;box-shadow:rgba(0,0,0,0.2) 0 -1px 0;}#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;}div#media-upload-header,div#plugin-information-header{background-color:#f9f9f9;border-bottom-color:#dfdfdf;}#currenttheme img{border-color:#666;}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#f9f9f9;}input.readonly,textarea.readonly{background-color:#ddd;}#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,.tablenav .displaying-num,#submitted-on{color:#777;}.login #nav a{color:#21759b!important;}.login #nav a:hover{color:#d54e21!important;}#footer,#footer-upgrade{background:#464646;color:#999;}#media-items,.imgedit-group{border-color:#dfdfdf;}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fff;}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#eee;}.plugin-update-tr .update-message{background-color:#fffbe4;border-color:#dfdfdf;}.plugins .active,.plugins .active th,.plugins .active td{color:#000;}.plugins .inactive a{color:#579;}#the-comment-list tr.undo,#the-comment-list div.undo{background-color:#f4f4f4;}#the-comment-list .unapproved{background-color:#ffffe0;}#the-comment-list .approve a{color:#006505;}#the-comment-list .unapprove a{color:#d98500;}table.widefat span.delete a,table.widefat span.trash a,table.widefat span.spam a,#dashboard_recent_comments .delete a,#dashboard_recent_comments .trash a,#dashboard_recent_comments .spam a{color:#bc0b0b;}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;}.widget,.postbox{background-color:#fff;}.ui-sortable .postbox h3{color:#464646;}.widget .widget-top,.ui-sortable .postbox h3:hover{color:#000;}.curtime #timestamp{background-image:url(../images/date-button.gif);}#quicktags #ed_link{color:#00f;}#rightnow .youhave{background-color:#f0f6fb;}#rightnow a{color:#448abd;}.tagchecklist span a,#bulk-titles div a{background:url(../images/xit.gif) no-repeat;}.tagchecklist span a:hover,#bulk-titles div a:hover{background:url(../images/xit.gif) no-repeat -10px 0;}#update-nag{background-color:#fffeeb;border-color:#ccc;color:#555;}.login #backtoblog a{color:#ccc;}#wphead{background-color:#464646;}body.login{border-top-color:#464646;}#wphead h1 a{color:#fff;}#user_info{color:#999;}#user_info a:link,#user_info a:visited,#footer a:link,#footer a:visited{color:#ccc;text-decoration:none;}#user_info a:hover,#footer a:hover{color:#fff;text-decoration:underline!important;}#user_info a:active,#footer a:active{color:#ccc!important;}div#media-upload-error,.file-error,abbr.required,.widget-control-remove:hover,table.widefat .delete a:hover,table.widefat .trash a:hover,table.widefat .spam a:hover,#dashboard_recent_comments .delete a:hover,#dashboard_recent_comments .trash a:hover #dashboard_recent_comments .spam a:hover{color:#f00;}#pass-strength-result{background-color:#eee;border-color:#ddd!important;}#pass-strength-result.bad{background-color:#ffb78c;border-color:#ff853c!important;}#pass-strength-result.good{background-color:#ffec8b;border-color:#fc0!important;}#pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040!important;}#pass-strength-result.strong{background-color:#c3ff88;border-color:#8dff1c!important;}#quicktags{border-color:#dfdfdf;background-color:#dfdfdf;}#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;}#post-status-info{background-color:#EDEDED;}.wp_themeSkin *,.wp_themeSkin a:hover,.wp_themeSkin a:link,.wp_themeSkin a:visited,.wp_themeSkin a:active{color:#000;}.wp_themeSkin iframe{background:#fff;}.wp_themeSkin .mceStatusbar{color:#000;background-color:#f5f5f5;}.wp_themeSkin .mceButton{background-color:#e9e8e8;border-color:#B2B2B2;}.wp_themeSkin a.mceButtonEnabled:hover,.wp_themeSkin a.mceButtonActive,.wp_themeSkin a.mceButtonSelected{background-color:#d5d5d5;border-color:#777!important;}.wp_themeSkin .mceButtonDisabled{border-color:#ccc!important;}.wp_themeSkin .mceListBox .mceText,.wp_themeSkin .mceListBox .mceOpen{border-color:#B2B2B2;background-color:#d5d5d5;}.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,.wp_themeSkin .mceListBoxHover .mceOpen,.wp_themeSkin .mceListBoxSelected .mceOpen,.wp_themeSkin .mceListBoxSelected .mceText{border-color:#777!important;background-color:#d5d5d5;}.wp_themeSkin table.mceListBoxEnabled:hover .mceText,.wp_themeSkin .mceListBoxHover .mceText{border-color:#777!important;}.wp_themeSkin select.mceListBox{border-color:#B2B2B2;background-color:#fff;}.wp_themeSkin .mceSplitButton a.mceAction,.wp_themeSkin .mceSplitButton a.mceOpen{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:#d5d5d5;border-color:#777!important;}.wp_themeSkin .mceSplitButtonActive{background-color:#B2B2B2;}.wp_themeSkin div.mceColorSplitMenu table{background-color:#ebebeb;border-color:#B2B2B2;}.wp_themeSkin .mceColorSplitMenu a{border-color:#B2B2B2;}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors{border-color:#fff;}.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover{border-color:#0A246A;background-color:#B6BDD2;}.wp_themeSkin a.mceMoreColors:hover{border-color:#0A246A;}.wp_themeSkin .mceMenu{border-color:#ddd;}.wp_themeSkin .mceMenu table{background-color:#ebeaeb;}.wp_themeSkin .mceMenu .mceText{color:#000;}.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,.wp_themeSkin .mceMenu .mceMenuItemActive{background-color:#f5f5f5;}.wp_themeSkin td.mceMenuItemSeparator{background-color:#aaa;}.wp_themeSkin .mceMenuItemTitle a{background-color:#ccc;border-bottom-color:#aaa;}.wp_themeSkin .mceMenuItemTitle span.mceText{color:#000;}.wp_themeSkin .mceMenuItemDisabled .mceText{color:#888;}.wp_themeSkin tr.mceFirst td.mceToolbar{background:#dfdfdf url("../images/ed-bg.gif") repeat-x scroll left top;border-color:#dfdfdf;}.wp-admin #mceModalBlocker{background:#000;}.wp-admin .clearlooks2 .mceFocus .mceTop .mceLeft{background:#444;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;}.wp-admin .clearlooks2 .mceFocus .mceTop .mceRight{background:#444;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;}#editorcontainer,#post-status-info,#titlediv #title,.editwidget .widget-inside{border-color:#dfdfdf;}#titlediv #title{background-color:#fff;}#tTips p#tTips_inside{background-color:#ddd;color:#333;}#timestampdiv input,#namediv input,#poststuff .inside .the-tagcloud{border-color:#ddd;}#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:#FFF 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) 0 -1px 0;}#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) 0 1px 0;}#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;}#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;}table.diff .diff-deletedline{background-color:#fdd;}table.diff .diff-deletedline del{background-color:#f99;}table.diff .diff-addedline{background-color:#dfd;}table.diff .diff-addedline ins{background-color:#9f9;}#att-info{background-color:#E4F2FD;}#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;}.vim-current,.vim-current th,.vim-current td{background-color:#E4F2FD!important;}.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-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:#FFF;border-color:#ddd;}.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.tabs 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;}#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-profile,#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;}#wphead #site-visit-button{background-color:#585858;background-image:url(../images/visit-site-button-grad.gif);color:#aaa;text-shadow:#3F3F3F 0 -1px 0;}#wphead a:hover #site-visit-button{color:#fff;}#wphead a:focus #site-visit-button,#wphead a:active #site-visit-button{background-position:0 -27px;}.popular-tags,.feature-filter{background-color:#FFF;border-color:#DFDFDF;}#theme-information .action-button{border-top-color:#DFDFDF;}.theme-listing br.line{border-bottom-color:#ccc;}div.widgets-sortables,#widgets-left .inactive{background-color:#f1f1f1;border-color:#ddd;}#available-widgets .widget-holder{background-color:#fff;border-color:#ddd;}#widgets-left .sidebar-name{background-color:#aaa;background-image:url(../images/ed-bg.gif);text-shadow:#FFF 0 1px 0;border-color:#dfdfdf;}#widgets-right .sidebar-name{background-image:url(../images/fav.png);text-shadow:#3f3f3f 0 -1px 0;background-color:#636363;border-color:#636363;color:#fff;}.sidebar-name:hover,#removing-widget{color:#d54e21;}#removing-widget span{color:black;}#widgets-left .sidebar-name-arrow{background:transparent url(../images/menu-bits.gif) no-repeat scroll left -109px;}#widgets-right .sidebar-name-arrow{background:transparent url(../images/fav-arrow.gif) no-repeat scroll 0 -1px;}.in-widget-title{color:#606060;}.deleting .widget-title *{color:#aaa;}.imgedit-menu div{border-color:#d5d5d5;background-color:#f1f1f1;}.imgedit-menu div:hover{border-color:#c1c1c1;background-color:#eaeaea;}.imgedit-menu div.disabled{border-color:#ccc;background-color:#ddd;filter:alpha(opacity=50);opacity:.5;}#dashboard_recent_comments div.undo{border-top-color:#dfdfdf;}.comment-ays,.comment-ays th{border-color:#ddd;}.comment-ays th{background-color:#f1f1f1;}
\ No newline at end of file
--- /dev/null
+html {
+ background-color: #f9f9f9;
+}
+
+* html input,
+* html .widget {
+ border-color: #dfdfdf;
+}
+
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="file"],
+input[type="button"],
+input[type="submit"],
+input[type="reset"],
+select {
+ border-color: #dfdfdf;
+ background-color: #fff;
+}
+
+kbd,
+code {
+ background: #eaeaea;
+}
+
+input[readonly] {
+ background-color: #eee;
+}
+
+.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,
+#wpbody,
+.form-table .pre {
+ color: #333;
+}
+
+body > #upload-menu {
+ border-bottom-color: #fff;
+}
+
+#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,
+#poststuff .inside label.deleted {
+ 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;
+}
+
+div.dashboard-widget-notice {
+ background-color: #cfe1ef;
+}
+
+div.dashboard-widget-submit {
+ border-top-color: #ccc;
+}
+
+div.tabs-panel,
+ul#category-tabs li.tabs {
+ border-color: #dfdfdf;
+}
+
+ul#category-tabs li.tabs {
+ background-color: #f1f1f1;
+}
+
+input.disabled,
+textarea.disabled {
+ background-color: #ccc;
+}
+/* #upload-menu li a.upload-tab-link, */
+.login #backtoblog a:hover,
+#plugin-information .action-button a,
+#plugin-information .action-button a:hover,
+#plugin-information .action-button a:visited {
+ color: #fff;
+}
+
+.widget .widget-top,
+.postbox h3,
+.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;
+}
+
+.description,
+.form-wrap p {
+ color: #666;
+}
+
+strong .post-com-count span {
+ background-color: #21759b;
+}
+
+.sorthelper {
+ background-color: #ccf3fa;
+}
+
+.ac_match,
+.subsubsub a.current {
+ color: #000;
+}
+
+.wrap h2 {
+ color: #464646;
+}
+
+.ac_over {
+ background-color: #f0f0b8;
+}
+
+.ac_results {
+ background-color: #fff;
+ border-color: #808080;
+}
+
+.ac_results li {
+ color: #101010;
+}
+
+.alternate,
+.alt {
+ background-color: #f9f9f9;
+}
+
+.available-theme a.screenshot {
+ background-color: #f1f1f1;
+ border-color: #ddd;
+}
+
+.bar {
+ background-color: #e8e8e8;
+ border-right-color: #99d;
+}
+
+#media-upload,
+#media-upload .media-item .slidetoggle {
+ background: #fff;
+}
+
+#media-upload .slidetoggle {
+ border-top-color: #dfdfdf;
+}
+
+.error,
+.login #login_error {
+ background-color: #ffebe8;
+ border-color: #c00;
+}
+
+.error a {
+ color: #c00;
+}
+
+.form-invalid {
+ background-color: #ffebe8 !important;
+}
+
+.form-invalid input,
+.form-invalid select {
+ border-color: #c00 !important;
+}
+
+.submit {
+ border-color: #DFDFDF;
+}
+
+.highlight {
+ background-color: #e4f2fd;
+ color: #d54e21;
+}
+
+.howto,
+.nonessential,
+#edit-slug-box,
+.form-input-tip,
+.rss-widget span.rss-date,
+.subsubsub {
+ color: #666;
+}
+
+.media-item {
+ border-bottom-color: #dfdfdf;
+}
+
+#wpbody-content #media-items .describe {
+ border-top-color: #dfdfdf;
+}
+
+.media-upload-form label.form-help,
+td.help {
+ color: #9a9a9a;
+}
+
+.post-com-count {
+ background-image: url(../images/bubble_bg.gif);
+ color: #fff;
+}
+
+.post-com-count span {
+ background-color: #bbb;
+ color: #fff;
+}
+
+.post-com-count:hover span {
+ background-color: #d54e21;
+}
+
+.quicktags, .search {
+ background-color: #ccc;
+ color: #000;
+}
+
+.side-info h5 {
+ border-bottom-color: #dadada;
+}
+
+.side-info ul {
+ color: #666;
+}
+
+.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;
+ text-shadow: rgba(255,255,255,1) 0 1px 0;
+}
+
+.button:active,
+.submit input:active,
+.button-secondary:active {
+ background: #eee url(../images/white-grad-active.png) repeat-x scroll left top;
+}
+
+input.button-primary,
+button.button-primary,
+a.button-primary {
+ border-color: #298cba;
+ font-weight: bold;
+ color: #fff;
+ background: #21759B url(../images/button-grad.png) repeat-x scroll left top;
+ text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
+}
+
+input.button-primary:active,
+button.button-primary:active,
+a.button-primary:active {
+ background: #21759b url(../images/button-grad-active.png) repeat-x scroll left top;
+ color: #eaf2fa;
+}
+
+input.button-primary:hover,
+button.button-primary:hover,
+a.button-primary:hover,
+a.button-primary:focus,
+a.button-primary:active {
+ border-color: #13455b;
+ color: #eaf2fa;
+}
+
+.button-disabled,
+.button[disabled],
+.button:disabled,
+.button-secondary[disabled],
+.button-secondary:disabled,
+a.button.disabled {
+ color: #aaa !important;
+ border-color: #ddd !important;
+}
+
+.button-primary-disabled,
+.button-primary[disabled],
+.button-primary:disabled {
+ color: #9FD0D5 !important;
+ background: #298CBA !important;
+}
+
+a:hover,
+a:active,
+a:focus {
+ color: #d54e21;
+}
+
+#wphead #viewsite a:hover,
+#adminmenu a:hover,
+#adminmenu ul.wp-submenu a:hover,
+#the-comment-list .comment a:hover,
+#rightnow a:hover,
+#media-upload a.del-link:hover,
+div.dashboard-widget-submit input:hover,
+.subsubsub a:hover,
+.subsubsub a.current:hover,
+.ui-tabs-nav a:hover,
+.plugins .inactive a:hover,
+#all-plugins-table .plugins .inactive a:hover,
+#search-plugins-table .plugins .inactive a:hover {
+ color: #d54e21;
+}
+
+#the-comment-list .comment-item,
+#dashboard-widgets #dashboard_quick_press form p.submit {
+ border-color: #dfdfdf;
+}
+
+#side-sortables #category-tabs .tabs a {
+ color: #333;
+}
+
+#rightnow .rbutton {
+ background-color: #ebebeb;
+ color: #264761;
+}
+
+.submitbox .submit {
+ background-color: #464646;
+ color: #ccc;
+}
+
+.plugins a.delete:hover,
+#all-plugins-table .plugins a.delete:hover,
+#search-plugins-table .plugins a.delete:hover,
+.submitbox .submitdelete {
+ color: #f00;
+ border-bottom-color: #f00;
+}
+
+.submitbox .submitdelete:hover,
+#media-items a.delete:hover {
+ color: #fff;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
+#normal-sortables .submitbox .submitdelete:hover {
+ color: #000;
+ background-color: #f00;
+ border-bottom-color: #f00;
+}
+
+.tablenav .dots {
+ border-color: transparent;
+}
+
+.tablenav .next,
+.tablenav .prev {
+ border-color: transparent;
+ color: #21759b;
+}
+
+.tablenav .next:hover,
+.tablenav .prev:hover {
+ border-color: transparent;
+ color: #d54e21;
+}
+
+.updated,
+.login .message {
+ background-color: #ffffe0;
+ border-color: #e6db55;
+}
+
+.update-message {
+ color: #000000;
+}
+
+a.page-numbers {
+ border-bottom-color: #B8D3E2;
+}
+
+.commentlist li {
+ border-bottom-color: #ccc;
+}
+
+.widefat td,
+.widefat th,
+#install-plugins .plugins td,
+#install-plugins .plugins th {
+ border-color: #dfdfdf;
+}
+
+.widefat th {
+ text-shadow: rgba(255,255,255,0.8) 0 1px 0;
+}
+
+.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;
+}
+
+h3.dashboard-widget-title small a {
+ color: #d7d7d7;
+}
+
+h3.dashboard-widget-title small a:hover {
+ color: #fff;
+}
+
+a,
+#adminmenu a,
+#poststuff #edButtonPreview,
+#poststuff #edButtonHTML,
+#the-comment-list p.comment-author strong a,
+#media-upload a.del-link,
+#media-items a.delete,
+.plugins a.delete,
+.ui-tabs-nav a {
+ color: #21759b;
+}
+
+/* Because we don't want visited on these links */
+body.press-this .tabs a,
+body.press-this .tabs a:hover {
+ background-color: #fff;
+ border-color: #c6d9e9;
+ border-bottom-color: #fff;
+ color: #d54e21;
+}
+
+#adminmenu #awaiting-mod,
+#adminmenu .update-plugins,
+#sidemenu a .update-plugins,
+#rightnow .reallynow,
+#plugin-information .action-button {
+ background-color: #d54e21;
+ color: #fff;
+}
+
+#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) 0 -1px 0;
+ -khtml-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
+ -webkit-box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
+ box-shadow: rgba(0,0,0,0.2) 0 -1px 0;
+}
+
+#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;
+}
+
+div#media-upload-header,
+div#plugin-information-header {
+ background-color: #f9f9f9;
+ border-bottom-color: #dfdfdf;
+}
+
+#currenttheme img {
+ border-color: #666;
+}
+
+#dashboard_secondary div.dashboard-widget-content ul li a {
+ background-color: #f9f9f9;
+}
+
+input.readonly, textarea.readonly {
+ background-color: #ddd;
+}
+
+#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,
+.tablenav .displaying-num,
+#submitted-on {
+ color: #777;
+}
+
+.login #nav a {
+ color: #21759b !important;
+}
+
+.login #nav a:hover {
+ color: #d54e21 !important;
+}
+
+#footer,
+#footer-upgrade {
+ background: #464646;
+ color: #999;
+}
+
+#media-items,
+.imgedit-group {
+ border-color: #dfdfdf;
+}
+
+.checkbox,
+.side-info,
+.plugins tr,
+#your-profile #rich_editing {
+ background-color: #fff;
+}
+
+.plugins .inactive,
+.plugins .inactive th,
+.plugins .inactive td,
+tr.inactive + tr.plugin-update-tr .plugin-update {
+ background-color: #eee;
+}
+
+.plugin-update-tr .update-message {
+ background-color: #fffbe4;
+ border-color: #dfdfdf;
+}
+
+.plugins .active,
+.plugins .active th,
+.plugins .active td {
+ color: #000;
+}
+
+.plugins .inactive a {
+ color: #557799;
+}
+
+#the-comment-list tr.undo,
+#the-comment-list div.undo {
+ background-color: #f4f4f4;
+}
+
+#the-comment-list .unapproved {
+ background-color: #ffffe0;
+}
+
+#the-comment-list .approve a {
+ color: #006505;
+}
+
+#the-comment-list .unapprove a {
+ color: #d98500;
+}
+
+table.widefat span.delete a,
+table.widefat span.trash a,
+table.widefat span.spam a,
+#dashboard_recent_comments .delete a,
+#dashboard_recent_comments .trash a,
+#dashboard_recent_comments .spam a {
+ color: #bc0b0b;
+}
+
+.widget,
+#widget-list .widget-top,
+.postbox,
+#titlediv,
+#poststuff .postarea,
+.stuffbox {
+ border-color: #dfdfdf;
+}
+
+.widget,
+.postbox {
+ background-color: #fff;
+}
+
+.ui-sortable .postbox h3 {
+ color: #464646;
+}
+
+.widget .widget-top,
+.ui-sortable .postbox h3:hover {
+ color: #000;
+}
+
+.curtime #timestamp {
+ background-image: url(../images/date-button.gif);
+}
+
+#quicktags #ed_link {
+ color: #00f;
+}
+
+#rightnow .youhave {
+ background-color: #f0f6fb;
+}
+
+#rightnow a {
+ color: #448abd;
+}
+
+.tagchecklist span a,
+#bulk-titles div a {
+ background: url(../images/xit.gif) no-repeat;
+}
+
+.tagchecklist span a:hover,
+#bulk-titles div a:hover {
+ background: url(../images/xit.gif) no-repeat -10px 0;
+}
+
+#update-nag {
+ background-color: #fffeeb;
+ border-color: #ccc;
+ color: #555;
+}
+
+.login #backtoblog a {
+ color: #ccc;
+}
+
+#wphead {
+ background-color: #464646;
+}
+
+body.login {
+ border-top-color: #464646;
+}
+
+#wphead h1 a {
+ color: #fff;
+}
+
+#user_info {
+ color: #999;
+}
+
+#user_info a:link,
+#user_info a:visited,
+#footer a:link,
+#footer a:visited {
+ color: #ccc;
+ text-decoration: none;
+}
+
+#user_info a:hover,
+#footer a:hover {
+ color: #fff;
+ text-decoration: underline !important;
+}
+
+#user_info a:active,
+#footer a:active {
+ color: #ccc !important;
+}
+
+div#media-upload-error,
+.file-error,
+abbr.required,
+.widget-control-remove:hover,
+table.widefat .delete a:hover,
+table.widefat .trash a:hover,
+table.widefat .spam a:hover,
+#dashboard_recent_comments .delete a:hover,
+#dashboard_recent_comments .trash a:hover
+#dashboard_recent_comments .spam a:hover {
+ color: #f00;
+}
+
+#pass-strength-result {
+ background-color: #eee;
+ border-color: #ddd !important;
+}
+
+#pass-strength-result.bad {
+ background-color: #ffb78c;
+ border-color: #ff853c !important;
+}
+
+#pass-strength-result.good {
+ background-color: #ffec8b;
+ border-color: #fc0 !important;
+}
+
+#pass-strength-result.short {
+ background-color: #ffa0a0;
+ border-color: #f04040 !important;
+}
+
+#pass-strength-result.strong {
+ background-color: #c3ff88;
+ border-color: #8dff1c !important;
+}
+
+/* editors */
+#quicktags {
+ border-color: #dfdfdf;
+ background-color: #dfdfdf;
+}
+
+#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:active {
+ color: #000;
+}
+
+/* Containers */
+.wp_themeSkin iframe {
+ background: #fff;
+}
+
+/* Layout */
+.wp_themeSkin .mceStatusbar {
+ color: #000;
+ background-color: #f5f5f5;
+}
+
+/* Button */
+.wp_themeSkin .mceButton {
+ background-color: #e9e8e8;
+ border-color: #B2B2B2;
+}
+
+.wp_themeSkin a.mceButtonEnabled:hover,
+.wp_themeSkin a.mceButtonActive,
+.wp_themeSkin a.mceButtonSelected {
+ background-color: #d5d5d5;
+ border-color: #777 !important;
+}
+
+.wp_themeSkin .mceButtonDisabled {
+ border-color: #ccc !important;
+}
+
+/* ListBox */
+.wp_themeSkin .mceListBox .mceText,
+.wp_themeSkin .mceListBox .mceOpen {
+ border-color: #B2B2B2;
+ background-color: #d5d5d5;
+}
+
+.wp_themeSkin table.mceListBoxEnabled:hover .mceOpen,
+.wp_themeSkin .mceListBoxHover .mceOpen,
+.wp_themeSkin .mceListBoxSelected .mceOpen,
+.wp_themeSkin .mceListBoxSelected .mceText {
+ border-color: #777 !important;
+ background-color: #d5d5d5;
+}
+
+.wp_themeSkin table.mceListBoxEnabled:hover .mceText,
+.wp_themeSkin .mceListBoxHover .mceText {
+ border-color: #777 !important;
+}
+
+.wp_themeSkin select.mceListBox {
+ border-color: #B2B2B2;
+ background-color: #fff;
+}
+
+/* SplitButton */
+.wp_themeSkin .mceSplitButton a.mceAction,
+.wp_themeSkin .mceSplitButton a.mceOpen {
+ 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: #d5d5d5;
+ border-color: #777 !important;
+}
+
+.wp_themeSkin .mceSplitButtonActive {
+ background-color: #B2B2B2;
+}
+
+/* ColorSplitButton */
+.wp_themeSkin div.mceColorSplitMenu table {
+ background-color: #ebebeb;
+ border-color: #B2B2B2;
+}
+
+.wp_themeSkin .mceColorSplitMenu a {
+ border-color: #B2B2B2;
+}
+
+.wp_themeSkin .mceColorSplitMenu a.mceMoreColors {
+ border-color: #fff;
+}
+
+.wp_themeSkin .mceColorSplitMenu a.mceMoreColors:hover {
+ border-color: #0A246A;
+ background-color: #B6BDD2;
+}
+
+.wp_themeSkin a.mceMoreColors:hover {
+ border-color: #0A246A;
+}
+
+/* Menu */
+.wp_themeSkin .mceMenu {
+ border-color: #ddd;
+}
+
+.wp_themeSkin .mceMenu table {
+ background-color: #ebeaeb;
+}
+
+.wp_themeSkin .mceMenu .mceText {
+ color: #000;
+}
+
+.wp_themeSkin .mceMenu .mceMenuItemEnabled a:hover,
+.wp_themeSkin .mceMenu .mceMenuItemActive {
+ background-color: #f5f5f5;
+}
+.wp_themeSkin td.mceMenuItemSeparator {
+ background-color: #aaa;
+}
+.wp_themeSkin .mceMenuItemTitle a {
+ background-color: #ccc;
+ border-bottom-color: #aaa;
+}
+.wp_themeSkin .mceMenuItemTitle span.mceText {
+ color: #000;
+}
+.wp_themeSkin .mceMenuItemDisabled .mceText {
+ color: #888;
+}
+
+.wp_themeSkin tr.mceFirst td.mceToolbar {
+ background: #dfdfdf url("../images/ed-bg.gif") repeat-x scroll left top;
+ border-color: #dfdfdf;
+}
+
+.wp-admin #mceModalBlocker {
+ background: #000;
+}
+
+.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;
+}
+
+.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,
+.editwidget .widget-inside {
+ border-color: #dfdfdf;
+}
+
+#titlediv #title {
+ background-color: #fff;
+}
+
+#tTips p#tTips_inside {
+ background-color: #ddd;
+ color: #333;
+}
+
+#timestampdiv input,
+#namediv input,
+#poststuff .inside .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-deletedline del {
+ background-color: #ff9999;
+}
+
+table.diff .diff-addedline {
+ background-color: #ddffdd;
+}
+
+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,
+.vim-current th,
+.vim-current td {
+ 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-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.tabs 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;
+}
+
+#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-profile,
+#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;
+}
+
+#wphead #site-visit-button {
+ background-color:#585858;
+ background-image: url(../images/visit-site-button-grad.gif);
+ color:#aaa;
+ text-shadow: #3F3F3F 0 -1px 0;
+}
+
+#wphead a:hover #site-visit-button {
+ color:#fff;
+}
+
+#wphead a:focus #site-visit-button,
+#wphead a:active #site-visit-button {
+ background-position:0 -27px;
+}
+
+.popular-tags,
+.feature-filter {
+ background-color: #FFFFFF;
+ border-color: #DFDFDF;
+}
+
+#theme-information .action-button {
+ border-top-color: #DFDFDF;
+}
+
+.theme-listing br.line {
+ border-bottom-color: #ccc;
+}
+
+div.widgets-sortables,
+#widgets-left .inactive {
+ background-color: #f1f1f1;
+ border-color: #ddd;
+}
+
+#available-widgets .widget-holder {
+ background-color: #fff;
+ border-color: #ddd;
+}
+
+#widgets-left .sidebar-name {
+ background-color: #aaa;
+ background-image: url(../images/ed-bg.gif);
+ text-shadow: #FFFFFF 0 1px 0;
+ border-color: #dfdfdf;
+}
+
+#widgets-right .sidebar-name {
+ background-image: url(../images/fav.png);
+ text-shadow: #3f3f3f 0 -1px 0;
+ background-color: #636363;
+ border-color: #636363;
+ color: #fff;
+}
+
+.sidebar-name:hover,
+#removing-widget {
+ color: #d54e21;
+}
+
+#removing-widget span {
+ color: black;
+}
+
+#widgets-left .sidebar-name-arrow {
+ background: transparent url(../images/menu-bits.gif) no-repeat scroll left -109px;
+}
+
+#widgets-right .sidebar-name-arrow {
+ background: transparent url(../images/fav-arrow.gif) no-repeat scroll 0 -1px;
+}
+
+.in-widget-title {
+ color: #606060;
+}
+
+.deleting .widget-title * {
+ color: #aaa;
+}
+
+.imgedit-menu div {
+ border-color: #d5d5d5;
+ background-color: #f1f1f1;
+}
+
+.imgedit-menu div:hover {
+ border-color: #c1c1c1;
+ background-color: #eaeaea;
+}
+
+.imgedit-menu div.disabled {
+ border-color: #ccc;
+ background-color: #ddd;
+ filter: alpha(opacity=50);
+ opacity: 0.5;
+}
+
+#dashboard_recent_comments div.undo {
+ border-top-color: #dfdfdf;
+}
+
+.comment-ays,
+.comment-ays th {
+ border-color: #ddd;
+}
+
+.comment-ays th {
+ background-color: #f1f1f1;
+}
-.postbox p, .postbox ul, .postbox ol, .postbox blockquote, #wp-version-message { font-size: 11px; }
-
-.edit-box {
- display: none;
-}
-
-h3:hover .edit-box {
- display: inline;
-}
-
-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;
- border-color: #ccc;
-}
-
-#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;
-}
-
-#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
- min-width: 0;
-}
-
-div.postbox div.inside {
- margin: 10px;
- position: relative;
-}
-
-#dashboard-widgets a {
- text-decoration: none;
-}
-
-#dashboard-widgets h3 a {
- text-decoration: underline;
-}
-
-#dashboard-widgets h3 .postbox-title-action {
- position: absolute;
- right: 30px;
- padding: 0;
-}
-
-#dashboard-widgets h4 {
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
- font-size: 13px;
- margin: 0 0 .2em;
- padding: 0;
-}
-
-/* Right Now */
-
-#dashboard_right_now p.sub,
-#dashboard_right_now .table, #dashboard_right_now .versions {
- margin: -12px;
-}
-
-#dashboard_right_now .inside {
- font-size: 12px;
-}
-
-#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;
-}
-
-#dashboard_right_now .table {
- background: #f9f9f9;
- border-top: #ececec 1px solid;
- border-bottom: #ececec 1px solid;
- margin: 0 -9px 10px;
- padding: 0 10px;
-}
-
-#dashboard_right_now table {
- width: 100%;
-}
-
-#dashboard_right_now table td {
- border-top: #ececec 1px solid;
- padding: 3px 0;
- white-space: nowrap;
-}
-
-#dashboard_right_now table tr.first td {
- border-top: none;
-}
-
-#dashboard_right_now td.b {
- padding-right: 6px;
- text-align: right;
- font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
- font-size: 14px;
-}
-
-#dashboard_right_now td.b a {
- font-size: 18px;
-}
-
-#dashboard_right_now td.b a:hover {
- color: #d54e21;
-}
-
-#dashboard_right_now .t {
- font-size: 12px;
- padding-right: 12px;
- padding-top: 6px;
- color: #777;
-}
-
-#dashboard_right_now td.first,
-#dashboard_right_now td.last {
- width: 1px;
-}
-
-#dashboard_right_now .spam {
- color: red;
-}
-
-#dashboard_right_now .waiting {
- color: #e66f00;
-}
-
-#dashboard_right_now .approved {
- color: green;
-}
-
-#dashboard_right_now .versions {
- padding: 6px 10px 12px;
-}
-
-#dashboard_right_now .versions .b {
- font-weight: bold;
-}
-
-#dashboard_right_now a.button {
- float: right;
- clear: right;
- position: relative;
- top: -5px;
-}
-
-/* Recent Comments */
-
-#dashboard_recent_comments h3 {
- margin-bottom: 0;
-}
-
-#dashboard_recent_comments .inside {
- margin-top: 0;
-}
-
-#dashboard_recent_comments .comment-meta .approve {
- font-style: italic;
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
- font-size: 10px;
-}
-
-#the-comment-list {
- position: relative;
-}
-
-#the-comment-list .comment-item {
- padding: 1em 10px;
- border-top: 1px solid;
-}
-
-#the-comment-list .pingback {
- padding-left: 9px !important;
-}
-
-#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;
- margin: 0 10px 5px 0;
-}
-
-#the-comment-list .comment-item h4 {
- line-height: 1.4;
- margin-top: -.2em;
- font-weight: normal;
- color: #999;
-}
-
-#the-comment-list .comment-item h4 cite {
- font-style: normal;
- font-weight: normal;
-}
-
-#the-comment-list .comment-item blockquote,
-#the-comment-list .comment-item blockquote p {
- margin: 0;
- padding: 0;
- display: inline;
-}
-
-#dashboard_recent_comments #the-comment-list .trackback blockquote,
-#dashboard_recent_comments #the-comment-list .pingback blockquote {
- display: block;
-}
-
-#the-comment-list .comment-item p.row-actions {
- margin: 3px 0 0;
- padding: 0;
- font-size: 10px;
-}
-
-/* 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_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;
-}
-
-/* Feeds */
-
-.rss-widget ul {
- margin: 0;
- padding: 0;
- list-style: none;
-}
-
-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;
-}
-
-.rss-widget span.rss-date {
- margin-left: 3px;
-}
-
-.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-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 h5 a {
- font-weight: normal;
- line-height: 1.7em;
-}
-
-#dashboard_plugins p {
- margin: 0 0 1.4em;
- line-height: 1.4em;
-}
-
-.dashboard-comment-wrap {
- overflow: hidden;
- word-wrap: break-word;
-}
-
+.postbox p,.postbox ul,.postbox ol,.postbox blockquote,#wp-version-message{font-size:11px;}.edit-box{display:none;}h3:hover .edit-box{display:inline;}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;border-color:#ccc;}#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;}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0;}div.postbox div.inside{margin:10px;position:relative;}#dashboard-widgets a{text-decoration:none;}#dashboard-widgets h3 a{text-decoration:underline;}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:30px;padding:0;}#dashboard-widgets h4{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:13px;margin:0 0 .2em;padding:0;}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px;}#dashboard_right_now .inside{font-size:12px;}#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;}#dashboard_right_now .table{background:#f9f9f9;border-top:#ececec 1px solid;border-bottom:#ececec 1px solid;margin:0 -9px 10px;padding:0 10px;}#dashboard_right_now table{width:100%;}#dashboard_right_now table td{border-top:#ececec 1px solid;padding:3px 0;white-space:nowrap;}#dashboard_right_now table tr.first td{border-top:none;}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:14px;}#dashboard_right_now td.b a{font-size:18px;}#dashboard_right_now td.b a:hover{color:#d54e21;}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777;}#dashboard_right_now .t a{white-space:nowrap;}#dashboard_right_now td.first,#dashboard_right_now td.last{width:1%;}#dashboard_right_now .spam{color:red;}#dashboard_right_now .waiting{color:#e66f00;}#dashboard_right_now .approved{color:green;}#dashboard_right_now .versions{padding:6px 10px 12px;}#dashboard_right_now .versions .b{font-weight:bold;}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px;}#dashboard_recent_comments h3{margin-bottom:0;}#dashboard_recent_comments .inside{margin-top:0;}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;font-size:10px;}#the-comment-list{position:relative;}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid;}#the-comment-list .pingback{padding-left:9px!important;}#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;margin:0 10px 5px 0;}#the-comment-list .comment-item h4{line-height:1.4;margin-top:-.2em;font-weight:normal;color:#999;}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal;}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline;}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block;}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:10px;}#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_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;}#dashboard_recent_drafts ul{margin:0;padding:0;list-style:none;}#dashboard_recent_drafts ul li{margin-bottom:.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;}.rss-widget ul{margin:0;padding:0;list-style:none;}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;}.rss-widget span.rss-date{margin-left:3px;}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0;}.rss-widget cite:before{content:'\2014';}#dashboard_plugins h4{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 h5 a{font-weight:normal;line-height:1.7em;}#dashboard_plugins p{margin:0 0 1.4em;line-height:1.4em;}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word;}
\ No newline at end of file
--- /dev/null
+.postbox p, .postbox ul, .postbox ol, .postbox blockquote, #wp-version-message { font-size: 11px; }
+
+.edit-box {
+ display: none;
+}
+
+h3:hover .edit-box {
+ display: inline;
+}
+
+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;
+ border-color: #ccc;
+}
+
+#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;
+}
+
+#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
+ min-width: 0;
+}
+
+div.postbox div.inside {
+ margin: 10px;
+ position: relative;
+}
+
+#dashboard-widgets a {
+ text-decoration: none;
+}
+
+#dashboard-widgets h3 a {
+ text-decoration: underline;
+}
+
+#dashboard-widgets h3 .postbox-title-action {
+ position: absolute;
+ right: 30px;
+ padding: 0;
+}
+
+#dashboard-widgets h4 {
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ font-size: 13px;
+ margin: 0 0 .2em;
+ padding: 0;
+}
+
+/* Right Now */
+
+#dashboard_right_now p.sub,
+#dashboard_right_now .table, #dashboard_right_now .versions {
+ margin: -12px;
+}
+
+#dashboard_right_now .inside {
+ font-size: 12px;
+}
+
+#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;
+}
+
+#dashboard_right_now .table {
+ background: #f9f9f9;
+ border-top: #ececec 1px solid;
+ border-bottom: #ececec 1px solid;
+ margin: 0 -9px 10px;
+ padding: 0 10px;
+}
+
+#dashboard_right_now table {
+ width: 100%;
+}
+
+#dashboard_right_now table td {
+ border-top: #ececec 1px solid;
+ padding: 3px 0;
+ white-space: nowrap;
+}
+
+#dashboard_right_now table tr.first td {
+ border-top: none;
+}
+
+#dashboard_right_now td.b {
+ padding-right: 6px;
+ text-align: right;
+ font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+ font-size: 14px;
+}
+
+#dashboard_right_now td.b a {
+ font-size: 18px;
+}
+
+#dashboard_right_now td.b a:hover {
+ color: #d54e21;
+}
+
+#dashboard_right_now .t {
+ font-size: 12px;
+ padding-right: 12px;
+ padding-top: 6px;
+ color: #777;
+}
+
+#dashboard_right_now .t a {
+ white-space: nowrap;
+}
+
+#dashboard_right_now td.first,
+#dashboard_right_now td.last {
+ width: 1%;
+}
+
+#dashboard_right_now .spam {
+ color: red;
+}
+
+#dashboard_right_now .waiting {
+ color: #e66f00;
+}
+
+#dashboard_right_now .approved {
+ color: green;
+}
+
+#dashboard_right_now .versions {
+ padding: 6px 10px 12px;
+}
+
+#dashboard_right_now .versions .b {
+ font-weight: bold;
+}
+
+#dashboard_right_now a.button {
+ float: right;
+ clear: right;
+ position: relative;
+ top: -5px;
+}
+
+/* Recent Comments */
+
+#dashboard_recent_comments h3 {
+ margin-bottom: 0;
+}
+
+#dashboard_recent_comments .inside {
+ margin-top: 0;
+}
+
+#dashboard_recent_comments .comment-meta .approve {
+ font-style: italic;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ font-size: 10px;
+}
+
+#the-comment-list {
+ position: relative;
+}
+
+#the-comment-list .comment-item {
+ padding: 1em 10px;
+ border-top: 1px solid;
+}
+
+#the-comment-list .pingback {
+ padding-left: 9px !important;
+}
+
+#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;
+ margin: 0 10px 5px 0;
+}
+
+#the-comment-list .comment-item h4 {
+ line-height: 1.4;
+ margin-top: -.2em;
+ font-weight: normal;
+ color: #999;
+}
+
+#the-comment-list .comment-item h4 cite {
+ font-style: normal;
+ font-weight: normal;
+}
+
+#the-comment-list .comment-item blockquote,
+#the-comment-list .comment-item blockquote p {
+ margin: 0;
+ padding: 0;
+ display: inline;
+}
+
+#dashboard_recent_comments #the-comment-list .trackback blockquote,
+#dashboard_recent_comments #the-comment-list .pingback blockquote {
+ display: block;
+}
+
+#the-comment-list .comment-item p.row-actions {
+ margin: 3px 0 0;
+ padding: 0;
+ font-size: 10px;
+}
+
+/* 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_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;
+}
+
+/* Feeds */
+
+.rss-widget ul {
+ margin: 0;
+ padding: 0;
+ list-style: none;
+}
+
+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;
+}
+
+.rss-widget span.rss-date {
+ margin-left: 3px;
+}
+
+.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-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 h5 a {
+ font-weight: normal;
+ line-height: 1.7em;
+}
+
+#dashboard_plugins p {
+ margin: 0 0 1.4em;
+ line-height: 1.4em;
+}
+
+.dashboard-comment-wrap {
+ overflow: hidden;
+ word-wrap: break-word;
+}
+
.screen-reader-text, .screen-reader-text span {
left:auto;
- right:-1000em;
-}
+ text-indent:-1000em;
}
\ No newline at end of file
-/* 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;
-}
-
-/* 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;
- display: none;
- width: 281px;
- position: relative;
-}
-
-.inner-sidebar #side-sortables {
- width: 280px;
- min-height: 300px;
-}
-
-.has-right-sidebar .inner-sidebar {
- display: block;
-}
-
-.has-right-sidebar #post-body {
- float: left;
- clear: left;
- width: 100%;
- margin-right: -340px;
-}
-
-.has-right-sidebar #post-body-content {
- margin-right: 300px;
-}
-
-/* 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;
-}
-
-.textright {
- text-align: right;
-}
-
-.clear {
- clear: both;
-}
-
-/* Hide visually but not from screen readers */
-.screen-reader-text,
-.screen-reader-text span {
- position: absolute;
- left: -1000em;
- height: 1px;
- width: 1px;
- overflow: hidden;
-}
-
-.hidden,
-.js .closed .inside,
-.js .hide-if-js,
-.no-js .hide-if-no-js {
- display: none;
-}
-
-/* include margin and padding in the width calculation of input and textarea */
-input[type="text"],
-input[type="password"],
-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: middle;
-}
-
-/* styles for use by people extending the WordPress interface */
-html,
-body {
- height: 100%;
-}
-
-body,
-td,
-textarea,
-input,
-select {
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
- font-size: 13px;
-}
-
-body,
-textarea {
- line-height: 1.4em;
-}
-
-input,
-select {
- line-height: 1em;
-}
-
-p {
- margin: 1em 0;
-}
-
-blockquote {
- margin: 1em;
-}
-
-label {
- cursor: pointer;
-}
-
-li,
-dd {
- margin-bottom: 6px;
-}
-
-p,
-li,
-dl,
-dd,
-dt {
- line-height: 140%;
-}
-
-textarea,
-input,
-select {
- margin: 1px;
- padding: 3px;
-}
-
-h1 {
- display: block;
- font-size: 2em;
- font-weight: bold;
- margin: .67em 0;
-}
-
-h2 {
- display: block;
- font-size: 1.5em;
- font-weight: bold;
- margin: .83em 0;
-}
-
-h3 {
- display: block;
- font-size: 1.17em;
- font-weight: bold;
- margin: 1em 0;
-}
-
-h4 {
- display: block;
- font-size: 1em;
- font-weight: bold;
- margin: 1.33em 0;
-}
-
-h5 {
- display: block;
- font-size: 0.83em;
- font-weight: bold;
- margin: 1.67em 0;
-}
-
-h6 {
- display: block;
- font-size: 0.67em;
- font-weight: bold;
- margin: 2.33em 0;
-}
-
-ul.ul-disc {
- list-style: disc outside;
-}
-
-ul.ul-square {
- list-style: square outside;
-}
-
-ol.ol-decimal {
- list-style: decimal outside;
-}
-
-ul.ul-disc,
-ul.ul-square,
-ol.ol-decimal {
- margin-left: 1.8em;
-}
-
-ul.ul-disc > li,
-ul.ul-square > li,
-ol.ol-decimal > li {
- margin: 0 0 0.5em;
-}
-
-.subsubsub {
- list-style: none;
- margin: 8px 0 5px;
- padding: 0;
- white-space: nowrap;
- font-size: 11px;
- float: left;
-}
-
-.subsubsub a {
- line-height: 2;
- padding: .2em;
- text-decoration: none;
-}
-
-.subsubsub a .count, .subsubsub a.current .count {
- color: #999;
- font-weight: normal;
-}
-
-.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-spacing: 0;
- width: 100%;
- clear: both;
- margin: 0;
- -moz-border-radius: 4px;
- -khtml-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
-}
-
-.widefat * {
- word-wrap: break-word;
-}
-
-.widefat a {
- text-decoration: none;
-}
-
-.widefat td,
-.widefat th {
- border-bottom-width: 1px;
- border-bottom-style: solid;
- font-size: 11px;
- vertical-align: text-top;
-}
-
-.widefat td {
- padding: 3px 7px;
- vertical-align: top;
-}
-
-.widefat td p,
-.widefat td ol,
-.widefat td ul {
- font-size: 11px;
-}
-
-.widefat th {
- 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 {
- width: 2.2em;
- padding: 0;
-
-}
-
-.widefat tbody th.check-column {
- padding: 7px 0 22px;
-}
-
-.widefat .num,
-.column-comments,
-.column-links,
-.column-posts,
-.column-parent {
- text-align: center;
-}
-
-.widefat th#comments {
- vertical-align: middle;
-}
-
-.wrap {
- margin: 0 15px 0 5px;
-}
-
-.updated,
-.error {
- border-width: 1px;
- border-style: solid;
- padding: 0 0.6em;
- margin: 5px 15px 2px;
- -moz-border-radius: 3px;
- -khtml-border-radius: 3px;
- -webkit-border-radius: 3px;
- border-radius: 3px;
-}
-
-.updated p,
-.error p {
- margin: 0.5em 0;
- line-height: 1;
- padding: 2px;
-}
-
-.wrap .updated,
-.wrap .error {
- margin: 5px 0 15px;
-}
-
-.wrap h2 {
- 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 {
- padding-right: 0;
-}
+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;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;}ins{text-decoration:none;}del{text-decoration:line-through;}#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-sidebar{float:right;clear:right;display:none;width:281px;position:relative;}.inner-sidebar #side-sortables{width:280px;min-height:300px;}.has-right-sidebar .inner-sidebar{display:block;}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-340px;}.has-right-sidebar #post-body-content{margin-right:300px;}#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%;}.alignleft{float:left;}.alignright{float:right;}.textleft{text-align:left;}.textright{text-align:right;}.clear{clear:both;}.screen-reader-text,.screen-reader-text span{position:absolute;left:-1000em;height:1px;width:1px;overflow:hidden;}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js{display:none;}input[type="text"],input[type="password"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}input[type="checkbox"],input[type="radio"]{vertical-align:middle;}html,body{height:100%;}body,td,textarea,input,select{font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;font-size:13px;}body,textarea{line-height:1.4em;}input,select{line-height:1em;}p{margin:1em 0;}blockquote{margin:1em;}label{cursor:pointer;}li,dd{margin-bottom:6px;}p,li,dl,dd,dt{line-height:140%;}textarea,input,select{margin:1px;padding:3px;}h1{display:block;font-size:2em;font-weight:bold;margin:.67em 0;}h2{display:block;font-size:1.5em;font-weight:bold;margin:.83em 0;}h3{display:block;font-size:1.17em;font-weight:bold;margin:1em 0;}h4{display:block;font-size:1em;font-weight:bold;margin:1.33em 0;}h5{display:block;font-size:.83em;font-weight:bold;margin:1.67em 0;}h6{display:block;font-size:.67em;font-weight:bold;margin:2.33em 0;}ul.ul-disc{list-style:disc outside;}ul.ul-square{list-style:square outside;}ol.ol-decimal{list-style:decimal outside;}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em;}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em;}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;white-space:nowrap;font-size:11px;float:left;}.subsubsub a{line-height:2;padding:.2em;text-decoration:none;}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal;}.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-spacing:0;width:100%;clear:both;margin:0;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;}.widefat *{word-wrap:break-word;}.widefat a{text-decoration:none;}.widefat td,.widefat th{border-bottom-width:1px;border-bottom-style:solid;font-size:11px;}.widefat td{padding:3px 7px;vertical-align:top;}.widefat td p,.widefat td ol,.widefat td ul{font-size:11px;}.widefat th{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{width:2.2em;padding:0;}.widefat tbody th.check-column{padding:7px 0 22px;}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center;}.widefat th#comments{vertical-align:middle;}.wrap{margin:0 15px 0 5px;}.updated,.error{border-width:1px;border-style:solid;padding:0 .6em;margin:5px 15px 2px;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}.updated p,.error p{margin:.5em 0;line-height:1;padding:2px;}.wrap .updated,.wrap .error{margin:5px 0 15px;}.wrap h2{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) 0 1px 0;}.wrap h2.long-header{padding-right:0;}
\ No newline at end of file
--- /dev/null
+/* 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;
+}
+
+/* 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;
+ display: none;
+ width: 281px;
+ position: relative;
+}
+
+.inner-sidebar #side-sortables {
+ width: 280px;
+ min-height: 300px;
+}
+
+.has-right-sidebar .inner-sidebar {
+ display: block;
+}
+
+.has-right-sidebar #post-body {
+ float: left;
+ clear: left;
+ width: 100%;
+ margin-right: -340px;
+}
+
+.has-right-sidebar #post-body-content {
+ margin-right: 300px;
+}
+
+/* 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;
+}
+
+.textright {
+ text-align: right;
+}
+
+.clear {
+ clear: both;
+}
+
+/* Hide visually but not from screen readers */
+.screen-reader-text,
+.screen-reader-text span {
+ position: absolute;
+ left: -1000em;
+ height: 1px;
+ width: 1px;
+ overflow: hidden;
+}
+
+.hidden,
+.js .closed .inside,
+.js .hide-if-js,
+.no-js .hide-if-no-js {
+ display: none;
+}
+
+/* include margin and padding in the width calculation of input and textarea */
+input[type="text"],
+input[type="password"],
+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: middle;
+}
+
+/* styles for use by people extending the WordPress interface */
+html,
+body {
+ height: 100%;
+}
+
+body,
+td,
+textarea,
+input,
+select {
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ font-size: 13px;
+}
+
+body,
+textarea {
+ line-height: 1.4em;
+}
+
+input,
+select {
+ line-height: 1em;
+}
+
+p {
+ margin: 1em 0;
+}
+
+blockquote {
+ margin: 1em;
+}
+
+label {
+ cursor: pointer;
+}
+
+li,
+dd {
+ margin-bottom: 6px;
+}
+
+p,
+li,
+dl,
+dd,
+dt {
+ line-height: 140%;
+}
+
+textarea,
+input,
+select {
+ margin: 1px;
+ padding: 3px;
+}
+
+h1 {
+ display: block;
+ font-size: 2em;
+ font-weight: bold;
+ margin: .67em 0;
+}
+
+h2 {
+ display: block;
+ font-size: 1.5em;
+ font-weight: bold;
+ margin: .83em 0;
+}
+
+h3 {
+ display: block;
+ font-size: 1.17em;
+ font-weight: bold;
+ margin: 1em 0;
+}
+
+h4 {
+ display: block;
+ font-size: 1em;
+ font-weight: bold;
+ margin: 1.33em 0;
+}
+
+h5 {
+ display: block;
+ font-size: 0.83em;
+ font-weight: bold;
+ margin: 1.67em 0;
+}
+
+h6 {
+ display: block;
+ font-size: 0.67em;
+ font-weight: bold;
+ margin: 2.33em 0;
+}
+
+ul.ul-disc {
+ list-style: disc outside;
+}
+
+ul.ul-square {
+ list-style: square outside;
+}
+
+ol.ol-decimal {
+ list-style: decimal outside;
+}
+
+ul.ul-disc,
+ul.ul-square,
+ol.ol-decimal {
+ margin-left: 1.8em;
+}
+
+ul.ul-disc > li,
+ul.ul-square > li,
+ol.ol-decimal > li {
+ margin: 0 0 0.5em;
+}
+
+.subsubsub {
+ list-style: none;
+ margin: 8px 0 5px;
+ padding: 0;
+ white-space: nowrap;
+ font-size: 11px;
+ float: left;
+}
+
+.subsubsub a {
+ line-height: 2;
+ padding: .2em;
+ text-decoration: none;
+}
+
+.subsubsub a .count, .subsubsub a.current .count {
+ color: #999;
+ font-weight: normal;
+}
+
+.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-spacing: 0;
+ width: 100%;
+ clear: both;
+ margin: 0;
+ -moz-border-radius: 4px;
+ -khtml-border-radius: 4px;
+ -webkit-border-radius: 4px;
+ border-radius: 4px;
+}
+
+.widefat * {
+ word-wrap: break-word;
+}
+
+.widefat a {
+ text-decoration: none;
+}
+
+.widefat td,
+.widefat th {
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ font-size: 11px;
+}
+
+.widefat td {
+ padding: 3px 7px;
+ vertical-align: top;
+}
+
+.widefat td p,
+.widefat td ol,
+.widefat td ul {
+ font-size: 11px;
+}
+
+.widefat th {
+ 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 {
+ width: 2.2em;
+ padding: 0;
+
+}
+
+.widefat tbody th.check-column {
+ padding: 7px 0 22px;
+}
+
+.widefat .num,
+.column-comments,
+.column-links,
+.column-posts {
+ text-align: center;
+}
+
+.widefat th#comments {
+ vertical-align: middle;
+}
+
+.wrap {
+ margin: 0 15px 0 5px;
+}
+
+.updated,
+.error {
+ border-width: 1px;
+ border-style: solid;
+ padding: 0 0.6em;
+ margin: 5px 15px 2px;
+ -moz-border-radius: 3px;
+ -khtml-border-radius: 3px;
+ -webkit-border-radius: 3px;
+ border-radius: 3px;
+}
+
+.updated p,
+.error p {
+ margin: 0.5em 0;
+ line-height: 1;
+ padding: 2px;
+}
+
+.wrap .updated,
+.wrap .error {
+ margin: 5px 0 15px;
+}
+
+.wrap h2 {
+ 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 {
+ padding-right: 0;
+}
form#widgets-filter { /* fix widget page */
position: static;
}
+
+* html .meta-box-sortables .postbox .handlediv {
+ background: transparent url(../images/menu-bits-rtl-vs.gif) no-repeat scroll right -111px;
+}
margin-bottom: -1px;
}
+* html .meta-box-sortables .postbox .handlediv {
+ background: transparent url(../images/menu-bits-vs.gif) no-repeat scroll left -111px;
+}
+
+* html .edit-box {
+ display: inline;
+}
+
* html .inner-sidebar #side-sortables,
* html .postbox-container .meta-box-sortables {
height: 300px;
margin-top: 2px;
}
+.tablenav .actions select {
+ width: 155px;
+}
+
table.ie-fixed {
table-layout: fixed;
}
position: relative;
}
+* html .media-item .pinkynail {
+ height: 32px;
+ width: 40px;
+}
+
+#wpcontent .button-primary-disabled {
+ color: #9FD0D5;
+ background: #298CBA;
+}
+
+#wpcontent #ajax-loading {
+ vertical-align: baseline;
+}
+
+* html .describe .field input.text,
+* html .describe .field textarea {
+ width: 440px;
+}
+
+#the-comment-list .unapproved tr,
+#the-comment-list .unapproved td {
+ background-color: #ffffe0;
+}
+
+.imgedit-submit {
+ width: 300px;
+}
+
+* html input {
+ border: 1px solid #dfdfdf;
+}
-html { background: #f7f7f7; }
-
-body {
- background: #fff;
- color: #333;
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
- margin: 2em auto 0 auto;
- width: 700px;
- padding: 1em 2em;
- -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 {
- 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: 12px;
- line-height: 18px;
-}
-
-code { font-size: 13px; }
-
-ul, ol { padding: 5px 5px 5px 22px; }
-
-#logo { margin: 6px 0 14px 0; border-bottom: none;}
-
-.step {
- margin: 20px 0 15px;
-}
-
-.step, th { text-align: left; padding: 0; }
-
-.submit input, .button, .button-secondary {
- 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, .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;
-}
-
-.form-table {
- border-collapse: collapse;
- margin-top: 1em;
- width: 100%;
-}
-
-.form-table td {
- margin-bottom: 9px;
- padding: 10px;
- border-bottom: 8px solid #fff;
- font-size: 12px;
-}
-
-.form-table th {
- font-size: 13px;
- text-align: left;
- padding: 16px 10px 10px 10px;
- border-bottom: 8px solid #fff;
- width: 110px;
- vertical-align: top;
-}
-
-.form-table tr {
- background: #f3f3f3;
-}
-
-.form-table code {
- line-height: 18px;
- font-size: 18px;
-}
-
-.form-table p {
- margin: 4px 0 0 0;
- font-size: 11px;
-}
-
-.form-table input {
- line-height: 20px;
- font-size: 15px;
- padding: 2px;
-}
-
-#error-page { margin-top: 50px; }
-
-#error-page p {
- font-size: 12px;
- line-height: 18px;
- margin: 25px 0 20px;
-}
-
-#error-page code { font-family: Consolas, Monaco, Courier, monospace; }
+html{background:#f7f7f7;}body{background:#fff;color:#333;font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;margin:2em auto 0 auto;width:700px;padding:1em 2em;-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{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:12px;line-height:18px;}code{font-size:13px;}ul,ol{padding:5px 5px 5px 22px;}#logo{margin:6px 0 14px 0;border-bottom:none;}.step{margin:20px 0 15px;}.step,th{text-align:left;padding:0;}.submit input,.button,.button-secondary{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,.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;}.form-table{border-collapse:collapse;margin-top:1em;width:100%;}.form-table td{margin-bottom:9px;padding:10px;border-bottom:8px solid #fff;font-size:12px;}.form-table th{font-size:13px;text-align:left;padding:16px 10px 10px 10px;border-bottom:8px solid #fff;width:110px;vertical-align:top;}.form-table tr{background:#f3f3f3;}.form-table code{line-height:18px;font-size:18px;}.form-table p{margin:4px 0 0 0;font-size:11px;}.form-table input{line-height:20px;font-size:15px;padding:2px;}#error-page{margin-top:50px;}#error-page p{font-size:12px;line-height:18px;margin:25px 0 20px;}#error-page code{font-family:Consolas,Monaco,Courier,monospace;}
\ No newline at end of file
--- /dev/null
+html { background: #f7f7f7; }
+
+body {
+ background: #fff;
+ color: #333;
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ margin: 2em auto 0 auto;
+ width: 700px;
+ padding: 1em 2em;
+ -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 {
+ 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: 12px;
+ line-height: 18px;
+}
+
+code { font-size: 13px; }
+
+ul, ol { padding: 5px 5px 5px 22px; }
+
+#logo { margin: 6px 0 14px 0; border-bottom: none;}
+
+.step {
+ margin: 20px 0 15px;
+}
+
+.step, th { text-align: left; padding: 0; }
+
+.submit input, .button, .button-secondary {
+ 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, .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;
+}
+
+.form-table {
+ border-collapse: collapse;
+ margin-top: 1em;
+ width: 100%;
+}
+
+.form-table td {
+ margin-bottom: 9px;
+ padding: 10px;
+ border-bottom: 8px solid #fff;
+ font-size: 12px;
+}
+
+.form-table th {
+ font-size: 13px;
+ text-align: left;
+ padding: 16px 10px 10px 10px;
+ border-bottom: 8px solid #fff;
+ width: 110px;
+ vertical-align: top;
+}
+
+.form-table tr {
+ background: #f3f3f3;
+}
+
+.form-table code {
+ line-height: 18px;
+ font-size: 18px;
+}
+
+.form-table p {
+ margin: 4px 0 0 0;
+ font-size: 11px;
+}
+
+.form-table input {
+ line-height: 20px;
+ font-size: 15px;
+ padding: 2px;
+}
+
+#error-page { margin-top: 50px; }
+
+#error-page p {
+ font-size: 12px;
+ line-height: 18px;
+ margin: 25px 0 20px;
+}
+
+#error-page code { font-family: Consolas, Monaco, Courier, monospace; }
-* { margin: 0; padding: 0; }
-
-body {
- border-top-width: 30px;
- border-top-style: solid;
- font: 11px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
-}
-
-form {
- margin-left: 8px;
- padding: 16px 16px 40px 16px;
- 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; }
-
-#login form .submit input {
- font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
- padding: 3px 10px;
- border: none;
- font-size: 12px;
- border-width: 1px;
- border-style: solid;
- -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 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;
- left: 15px;
- text-decoration: none;
-}
-
-#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: 24px;
- width: 97%;
- padding: 3px;
- margin-top: 2px;
- margin-right: 6px;
- margin-bottom: 16px;
- border: 1px solid #e5e5e5;
- background: #fbfbfb;
-}
-
-.clear {
- clear: both;
-}
+*{margin:0;padding:0;}body{border-top-width:30px;border-top-style:solid;font:11px "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;}form{margin-left:8px;padding:16px 16px 40px 16px;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;}.button-primary{font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;padding:3px 10px;border:none;font-size:12px;border-width:1px;border-style:solid;-moz-border-radius:11px;-khtml-border-radius:11px;-webkit-border-radius:11px;border-radius:11px;cursor:pointer;text-decoration:none;margin-top:-3px;}#login form p{margin-bottom:0;}label{color:#777;font-size:13px;}form .forgetmenot label{font-size:11px;line-height:19px;}form .submit,.alignright{float:right;}form p{margin-bottom:24px;}h1 a{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;left:15px;text-decoration:none;}#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:24px;width:97%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;}input{color:#555;}.clear{clear:both;}
\ No newline at end of file
--- /dev/null
+* { margin: 0; padding: 0; }
+
+body {
+ border-top-width: 30px;
+ border-top-style: solid;
+ font: 11px "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+}
+
+form {
+ margin-left: 8px;
+ padding: 16px 16px 40px 16px;
+ 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;
+}
+
+.button-primary {
+ font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
+ padding: 3px 10px;
+ border: none;
+ font-size: 12px;
+ border-width: 1px;
+ border-style: solid;
+ -moz-border-radius: 11px;
+ -khtml-border-radius: 11px;
+ -webkit-border-radius: 11px;
+ border-radius: 11px;
+ cursor: pointer;
+ text-decoration: none;
+ margin-top: -3px;
+}
+
+#login form p {
+ margin-bottom: 0;
+}
+
+label {
+ color: #777;
+ font-size: 13px;
+}
+
+form .forgetmenot label {
+ font-size: 11px;
+ line-height: 19px;
+}
+
+form .submit,
+.alignright {
+ float: right;
+}
+
+form p {
+ margin-bottom: 24px;
+}
+
+h1 a {
+ 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;
+ left: 15px;
+ text-decoration: none;
+}
+
+#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: 24px;
+ width: 97%;
+ padding: 3px;
+ margin-top: 2px;
+ margin-right: 6px;
+ margin-bottom: 16px;
+ border: 1px solid #e5e5e5;
+ background: #fbfbfb;
+}
+
+input {
+ color: #555;
+}
+
+.clear {
+ clear: both;
+}
border-right-style: none;
border-left-style: solid;
}
-.media-item .pinkynail {
- float: right;
-}
-.describe-toggle-on,
-.describe-toggle-off {
- float: left;
- margin-right: 0;
- margin-left: 20px;
-}
+
/* Specific to Uploader */
#media-upload .media-upload-form p {
margin: 0 0 1em 1em;
-div#media-upload-header {
- margin: 0;
- padding: 0 5px;
- font-weight: bold;
- position: relative;
- border-bottom-width: 1px;
- border-bottom-style: solid;
- height: 2.5em;
-}
-
-body#media-upload ul#sidemenu {
- font-weight: normal;
- margin: 0 5px;
- position: absolute;
- left: 0px;
- bottom: -1px;
-}
-
-div#media-upload-error {
- margin: 1em;
- font-weight: bold;
-}
-
-form {
- margin: 1em;
-}
-
-#search-filter {
- text-align: right;
-}
-
-.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;
-}
-
-.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;
-}
-
-.media-upload-form p.help {
- margin: 0;
- padding: 0;
-}
-
-.media-upload-form fieldset {
- width: 100%;
- border: none;
- text-align: justify;
- margin: 0 0 1em 0;
- padding: 0;
-}
-
-/* specific to the image upload form */
-.align .field label {
- display: inline;
- padding: 0 0 0 28px;
- margin: 0 1em 0 0;
-}
-
-.image-align-none-label {
- background: url(../images/align-none.png) no-repeat center left;
-}
-
-.image-align-left-label {
- background: url(../images/align-left.png) no-repeat center left;
-}
-
-.image-align-center-label {
- background: url(../images/align-center.png) no-repeat center left;
-}
-
-.image-align-right-label {
- background: url(../images/align-right.png) no-repeat center left;
-}
-
-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 0 0 1em;
-}
-
-.pinkynail {
- max-width: 40px;
- max-height: 40px;
-}
-
-#library-form .progress,
-#gallery-form .progress,
-#flash-upload-ui,
-.insert-gallery,
-.describe.startopen,
-.describe.startclosed {
- display: none;
-}
-
-.media-item .thumbnail {
- max-width: 128px;
- max-height: 128px;
-}
-
-.media-item .pinkynail {
- float: left;
- margin: 2px;
- height: 32px;
- max-width: 40px;
-}
-
-thead.media-item-info tr {
- background-color: transparent;
-}
-
-thead.media-item-info th,
-thead.media-item-info td {
- border: none;
- margin: 0;
-}
-
-.form-table thead.media-item-info {
- border: 8px solid #fff;
-}
-
-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 {
- width: 460px;
- border-width: 1px;
- border-style: solid;
-}
-
-.describe-toggle-on,
-.describe-toggle-off {
- display: block;
- line-height: 36px;
- float: right;
- margin-right: 20px;
-}
-
-.describe-toggle-off {
- display: none;
-}
-
-.hidden {
- height: 0;
- width: 0;
- overflow: hidden;
- border: none;
-}
-
-/* Specific to Uploader */
-
-#media-upload .media-upload-form p {
- margin: 0 1em 1em 0;
-}
-
-#media-upload p.ml-submit {
- padding: 1em 0;
-}
-
-#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;
- border-bottom: none;
- width: 623px;
-}
-
-#media-upload .media-item {