bbPress - Version 2.5.7

Version Description

  • Improved output of certain URLs
Download this release

Release Info

Developer johnjamesjacoby
Plugin Icon 128x128 bbPress
Version 2.5.7
Comparing to
See all releases

Code changes from version 2.5.6 to 2.5.7

bbpress.php CHANGED
@@ -5,7 +5,7 @@
5
  *
6
  * bbPress is forum software with a twist from the creators of WordPress.
7
  *
8
- * $Id: bbpress.php 5644 2015-03-17 03:46:57Z johnjamesjacoby $
9
  *
10
  * @package bbPress
11
  * @subpackage Main
@@ -17,7 +17,7 @@
17
  * Description: bbPress is forum software with a twist from the creators of WordPress.
18
  * Author: The bbPress Community
19
  * Author URI: http://bbpress.org
20
- * Version: 2.5.6
21
  * Text Domain: bbpress
22
  * Domain Path: /languages/
23
  */
@@ -190,7 +190,7 @@ final class bbPress {
190
 
191
  /** Versions **********************************************************/
192
 
193
- $this->version = '2.5.6-5643';
194
  $this->db_version = '250';
195
 
196
  /** Paths *************************************************************/
5
  *
6
  * bbPress is forum software with a twist from the creators of WordPress.
7
  *
8
+ * $Id: bbpress.php 5694 2015-04-20 16:50:43Z johnjamesjacoby $
9
  *
10
  * @package bbPress
11
  * @subpackage Main
17
  * Description: bbPress is forum software with a twist from the creators of WordPress.
18
  * Author: The bbPress Community
19
  * Author URI: http://bbpress.org
20
+ * Version: 2.5.7
21
  * Text Domain: bbpress
22
  * Domain Path: /languages/
23
  */
190
 
191
  /** Versions **********************************************************/
192
 
193
+ $this->version = '2.5.7-5693';
194
  $this->db_version = '250';
195
 
196
  /** Paths *************************************************************/
includes/admin/admin.php CHANGED
@@ -509,12 +509,12 @@ class BBP_Admin {
509
 
510
  // Settings page link
511
  if ( current_user_can( 'bbp_settings_page' ) ) {
512
- $new_links['settings'] = '<a href="' . add_query_arg( array( 'page' => 'bbpress' ), admin_url( 'options-general.php' ) ) . '">' . esc_html__( 'Settings', 'bbpress' ) . '</a>';
513
  }
514
 
515
  // About page link
516
  if ( current_user_can( 'bbp_about_page' ) ) {
517
- $new_links['about'] = '<a href="' . add_query_arg( array( 'page' => 'bbp-about' ), admin_url( 'index.php' ) ) . '">' . esc_html__( 'About', 'bbpress' ) . '</a>';
518
  }
519
 
520
  // Add a few links to the existing links array
@@ -540,9 +540,7 @@ class BBP_Admin {
540
  * @param WP_Admin_Bar $wp_admin_bar
541
  */
542
  public function admin_bar_about_link( $wp_admin_bar ) {
543
-
544
  if ( is_user_logged_in() ) {
545
-
546
  $wp_admin_bar->add_menu( array(
547
  'parent' => 'wp-logo',
548
  'id' => 'bbp-about',
509
 
510
  // Settings page link
511
  if ( current_user_can( 'bbp_settings_page' ) ) {
512
+ $new_links['settings'] = '<a href="' . esc_url( add_query_arg( array( 'page' => 'bbpress' ), admin_url( 'options-general.php' ) ) ) . '">' . esc_html__( 'Settings', 'bbpress' ) . '</a>';
513
  }
514
 
515
  // About page link
516
  if ( current_user_can( 'bbp_about_page' ) ) {
517
+ $new_links['about'] = '<a href="' . esc_url( add_query_arg( array( 'page' => 'bbp-about' ), admin_url( 'index.php' ) ) ) . '">' . esc_html__( 'About', 'bbpress' ) . '</a>';
518
  }
519
 
520
  // Add a few links to the existing links array
540
  * @param WP_Admin_Bar $wp_admin_bar
541
  */
542
  public function admin_bar_about_link( $wp_admin_bar ) {
 
543
  if ( is_user_logged_in() ) {
 
544
  $wp_admin_bar->add_menu( array(
545
  'parent' => 'wp-logo',
546
  'id' => 'bbp-about',
includes/admin/metaboxes.php CHANGED
@@ -50,8 +50,8 @@ function bbp_dashboard_widget_right_now() {
50
  $text = _n( 'Forum', 'Forums', $r['forum_count'], 'bbpress' );
51
  if ( current_user_can( 'publish_forums' ) ) {
52
  $link = add_query_arg( array( 'post_type' => bbp_get_forum_post_type() ), get_admin_url( null, 'edit.php' ) );
53
- $num = '<a href="' . $link . '">' . $num . '</a>';
54
- $text = '<a href="' . $link . '">' . $text . '</a>';
55
  }
56
  ?>
57
 
@@ -67,8 +67,8 @@ function bbp_dashboard_widget_right_now() {
67
  $text = _n( 'Topic', 'Topics', $r['topic_count'], 'bbpress' );
68
  if ( current_user_can( 'publish_topics' ) ) {
69
  $link = add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit.php' ) );
70
- $num = '<a href="' . $link . '">' . $num . '</a>';
71
- $text = '<a href="' . $link . '">' . $text . '</a>';
72
  }
73
  ?>
74
 
@@ -84,8 +84,8 @@ function bbp_dashboard_widget_right_now() {
84
  $text = _n( 'Reply', 'Replies', $r['reply_count'], 'bbpress' );
85
  if ( current_user_can( 'publish_replies' ) ) {
86
  $link = add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), get_admin_url( null, 'edit.php' ) );
87
- $num = '<a href="' . $link . '">' . $num . '</a>';
88
- $text = '<a href="' . $link . '">' . $text . '</a>';
89
  }
90
  ?>
91
 
@@ -103,8 +103,8 @@ function bbp_dashboard_widget_right_now() {
103
  $text = _n( 'Topic Tag', 'Topic Tags', $r['topic_tag_count'], 'bbpress' );
104
  if ( current_user_can( 'manage_topic_tags' ) ) {
105
  $link = add_query_arg( array( 'taxonomy' => bbp_get_topic_tag_tax_id(), 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit-tags.php' ) );
106
- $num = '<a href="' . $link . '">' . $num . '</a>';
107
- $text = '<a href="' . $link . '">' . $text . '</a>';
108
  }
109
  ?>
110
 
@@ -135,8 +135,8 @@ function bbp_dashboard_widget_right_now() {
135
  $text = _n( 'User', 'Users', $r['user_count'], 'bbpress' );
136
  if ( current_user_can( 'edit_users' ) ) {
137
  $link = get_admin_url( null, 'users.php' );
138
- $num = '<a href="' . $link . '">' . $num . '</a>';
139
- $text = '<a href="' . $link . '">' . $text . '</a>';
140
  }
141
  ?>
142
 
@@ -156,8 +156,8 @@ function bbp_dashboard_widget_right_now() {
156
  if ( '0' !== $num ) {
157
  $link = add_query_arg( array( 'post_status' => bbp_get_spam_status_id() ), $link );
158
  }
159
- $num = '<a href="' . $link . '" title="' . esc_attr( $r['hidden_topic_title'] ) . '">' . $num . '</a>';
160
- $text = '<a class="waiting" href="' . $link . '" title="' . esc_attr( $r['hidden_topic_title'] ) . '">' . $text . '</a>';
161
  ?>
162
 
163
  <td class="b b-hidden-topics"><?php echo $num; ?></td>
@@ -178,8 +178,8 @@ function bbp_dashboard_widget_right_now() {
178
  if ( '0' !== $num ) {
179
  $link = add_query_arg( array( 'post_status' => bbp_get_spam_status_id() ), $link );
180
  }
181
- $num = '<a href="' . $link . '" title="' . esc_attr( $r['hidden_reply_title'] ) . '">' . $num . '</a>';
182
- $text = '<a class="waiting" href="' . $link . '" title="' . esc_attr( $r['hidden_reply_title'] ) . '">' . $text . '</a>';
183
  ?>
184
 
185
  <td class="b b-hidden-replies"><?php echo $num; ?></td>
@@ -197,8 +197,8 @@ function bbp_dashboard_widget_right_now() {
197
  $num = $r['empty_topic_tag_count'];
198
  $text = _n( 'Empty Topic Tag', 'Empty Topic Tags', $r['empty_topic_tag_count'], 'bbpress' );
199
  $link = add_query_arg( array( 'taxonomy' => bbp_get_topic_tag_tax_id(), 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit-tags.php' ) );
200
- $num = '<a href="' . $link . '">' . $num . '</a>';
201
- $text = '<a class="waiting" href="' . $link . '">' . $text . '</a>';
202
  ?>
203
 
204
  <td class="b b-hidden-topic-tags"><?php echo $num; ?></td>
@@ -456,7 +456,7 @@ function bbp_reply_metabox() {
456
  <p>
457
  <strong class="label"><?php esc_html_e( 'Topic:', 'bbpress' ); ?></strong>
458
  <label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Topic', 'bbpress' ); ?></label>
459
- <input name="parent_id" id="bbp_topic_id" type="text" value="<?php echo esc_attr( $reply_topic_id ); ?>" data-ajax-url="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'bbp_suggest_topic' ), admin_url( 'admin-ajax.php', 'relative' ) ), 'bbp_suggest_topic_nonce' ); ?>" />
460
  </p>
461
 
462
  <p>
@@ -515,7 +515,7 @@ function bbp_author_metabox() {
515
  <p>
516
  <strong class="label"><?php esc_html_e( 'ID:', 'bbpress' ); ?></strong>
517
  <label class="screen-reader-text" for="bbp_author_id"><?php esc_html_e( 'ID', 'bbpress' ); ?></label>
518
- <input type="text" id="bbp_author_id" name="post_author_override" value="<?php echo esc_attr( bbp_get_global_post_field( 'post_author' ) ); ?>" data-ajax-url="<?php echo wp_nonce_url( add_query_arg( array( 'action' => 'bbp_suggest_user' ), admin_url( 'admin-ajax.php', 'relative' ) ), 'bbp_suggest_user_nonce' ); ?>" />
519
  </p>
520
 
521
  <?php endif; ?>
50
  $text = _n( 'Forum', 'Forums', $r['forum_count'], 'bbpress' );
51
  if ( current_user_can( 'publish_forums' ) ) {
52
  $link = add_query_arg( array( 'post_type' => bbp_get_forum_post_type() ), get_admin_url( null, 'edit.php' ) );
53
+ $num = '<a href="' . esc_url( $link ) . '">' . $num . '</a>';
54
+ $text = '<a href="' . esc_url( $link ) . '">' . $text . '</a>';
55
  }
56
  ?>
57
 
67
  $text = _n( 'Topic', 'Topics', $r['topic_count'], 'bbpress' );
68
  if ( current_user_can( 'publish_topics' ) ) {
69
  $link = add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit.php' ) );
70
+ $num = '<a href="' . esc_url( $link ) . '">' . $num . '</a>';
71
+ $text = '<a href="' . esc_url( $link ) . '">' . $text . '</a>';
72
  }
73
  ?>
74
 
84
  $text = _n( 'Reply', 'Replies', $r['reply_count'], 'bbpress' );
85
  if ( current_user_can( 'publish_replies' ) ) {
86
  $link = add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), get_admin_url( null, 'edit.php' ) );
87
+ $num = '<a href="' . esc_url( $link ) . '">' . $num . '</a>';
88
+ $text = '<a href="' . esc_url( $link ) . '">' . $text . '</a>';
89
  }
90
  ?>
91
 
103
  $text = _n( 'Topic Tag', 'Topic Tags', $r['topic_tag_count'], 'bbpress' );
104
  if ( current_user_can( 'manage_topic_tags' ) ) {
105
  $link = add_query_arg( array( 'taxonomy' => bbp_get_topic_tag_tax_id(), 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit-tags.php' ) );
106
+ $num = '<a href="' . esc_url( $link ) . '">' . $num . '</a>';
107
+ $text = '<a href="' . esc_url( $link ) . '">' . $text . '</a>';
108
  }
109
  ?>
110
 
135
  $text = _n( 'User', 'Users', $r['user_count'], 'bbpress' );
136
  if ( current_user_can( 'edit_users' ) ) {
137
  $link = get_admin_url( null, 'users.php' );
138
+ $num = '<a href="' . esc_url( $link ) . '">' . $num . '</a>';
139
+ $text = '<a href="' . esc_url( $link ) . '">' . $text . '</a>';
140
  }
141
  ?>
142
 
156
  if ( '0' !== $num ) {
157
  $link = add_query_arg( array( 'post_status' => bbp_get_spam_status_id() ), $link );
158
  }
159
+ $num = '<a href="' . esc_url( $link ) . '" title="' . esc_attr( $r['hidden_topic_title'] ) . '">' . $num . '</a>';
160
+ $text = '<a class="waiting" href="' . esc_url( $link ) . '" title="' . esc_attr( $r['hidden_topic_title'] ) . '">' . $text . '</a>';
161
  ?>
162
 
163
  <td class="b b-hidden-topics"><?php echo $num; ?></td>
178
  if ( '0' !== $num ) {
179
  $link = add_query_arg( array( 'post_status' => bbp_get_spam_status_id() ), $link );
180
  }
181
+ $num = '<a href="' . esc_url( $link ) . '" title="' . esc_attr( $r['hidden_reply_title'] ) . '">' . $num . '</a>';
182
+ $text = '<a class="waiting" href="' . esc_url( $link ) . '" title="' . esc_attr( $r['hidden_reply_title'] ) . '">' . $text . '</a>';
183
  ?>
184
 
185
  <td class="b b-hidden-replies"><?php echo $num; ?></td>
197
  $num = $r['empty_topic_tag_count'];
198
  $text = _n( 'Empty Topic Tag', 'Empty Topic Tags', $r['empty_topic_tag_count'], 'bbpress' );
199
  $link = add_query_arg( array( 'taxonomy' => bbp_get_topic_tag_tax_id(), 'post_type' => bbp_get_topic_post_type() ), get_admin_url( null, 'edit-tags.php' ) );
200
+ $num = '<a href="' . esc_url( $link ) . '">' . $num . '</a>';
201
+ $text = '<a class="waiting" href="' . esc_url( $link ) . '">' . $text . '</a>';
202
  ?>
203
 
204
  <td class="b b-hidden-topic-tags"><?php echo $num; ?></td>
456
  <p>
457
  <strong class="label"><?php esc_html_e( 'Topic:', 'bbpress' ); ?></strong>
458
  <label class="screen-reader-text" for="parent_id"><?php esc_html_e( 'Topic', 'bbpress' ); ?></label>
459
+ <input name="parent_id" id="bbp_topic_id" type="text" value="<?php echo esc_attr( $reply_topic_id ); ?>" data-ajax-url="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_suggest_topic' ), admin_url( 'admin-ajax.php', 'relative' ) ) ), 'bbp_suggest_topic_nonce' ); ?>" />
460
  </p>
461
 
462
  <p>
515
  <p>
516
  <strong class="label"><?php esc_html_e( 'ID:', 'bbpress' ); ?></strong>
517
  <label class="screen-reader-text" for="bbp_author_id"><?php esc_html_e( 'ID', 'bbpress' ); ?></label>
518
+ <input type="text" id="bbp_author_id" name="post_author_override" value="<?php echo esc_attr( bbp_get_global_post_field( 'post_author' ) ); ?>" data-ajax-url="<?php echo esc_url( wp_nonce_url( add_query_arg( array( 'action' => 'bbp_suggest_user' ), admin_url( 'admin-ajax.php', 'relative' ) ) ), 'bbp_suggest_user_nonce' ); ?>" />
519
  </p>
520
 
521
  <?php endif; ?>
includes/admin/replies.php CHANGED
@@ -592,7 +592,6 @@ class BBP_Replies_Admin {
592
  * the reply
593
  * @uses bbp_get_forum_permalink() To get the forum permalink
594
  * @uses admin_url() To get the admin url of post.php
595
- * @uses add_query_arg() To add custom args to the url
596
  * @uses apply_filters() Calls 'reply_topic_forum_row_actions' with an
597
  * array of reply topic forum actions
598
  * @uses bbp_reply_author_display_name() To output the reply author name
@@ -745,13 +744,13 @@ class BBP_Replies_Admin {
745
  if ( current_user_can( 'delete_reply', $reply->ID ) ) {
746
  if ( bbp_get_trash_status_id() === $reply->post_status ) {
747
  $post_type_object = get_post_type_object( bbp_get_reply_post_type() );
748
- $actions['untrash'] = "<a title='" . esc_attr__( 'Restore this item from the Trash', 'bbpress' ) . "' href='" . add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), admin_url( 'edit.php' ) ) ), wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $reply->ID ) ), 'untrash-' . $reply->post_type . '_' . $reply->ID ) ) . "'>" . esc_html__( 'Restore', 'bbpress' ) . "</a>";
749
  } elseif ( EMPTY_TRASH_DAYS ) {
750
- $actions['trash'] = "<a class='submitdelete' title='" . esc_attr__( 'Move this item to the Trash', 'bbpress' ) . "' href='" . add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $reply->ID ) ) . "'>" . esc_html__( 'Trash', 'bbpress' ) . "</a>";
751
  }
752
 
753
  if ( bbp_get_trash_status_id() === $reply->post_status || !EMPTY_TRASH_DAYS ) {
754
- $actions['delete'] = "<a class='submitdelete' title='" . esc_attr__( 'Delete this item permanently', 'bbpress' ) . "' href='" . add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $reply->ID, '', true ) ) . "'>" . esc_html__( 'Delete Permanently', 'bbpress' ) . "</a>";
755
  } elseif ( bbp_get_spam_status_id() === $reply->post_status ) {
756
  unset( $actions['trash'] );
757
  }
592
  * the reply
593
  * @uses bbp_get_forum_permalink() To get the forum permalink
594
  * @uses admin_url() To get the admin url of post.php
 
595
  * @uses apply_filters() Calls 'reply_topic_forum_row_actions' with an
596
  * array of reply topic forum actions
597
  * @uses bbp_reply_author_display_name() To output the reply author name
744
  if ( current_user_can( 'delete_reply', $reply->ID ) ) {
745
  if ( bbp_get_trash_status_id() === $reply->post_status ) {
746
  $post_type_object = get_post_type_object( bbp_get_reply_post_type() );
747
+ $actions['untrash'] = "<a title='" . esc_attr__( 'Restore this item from the Trash', 'bbpress' ) . "' href='" . esc_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), admin_url( 'edit.php' ) ) ), wp_nonce_url( admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $reply->ID ) ), 'untrash-' . $reply->post_type . '_' . $reply->ID ) ) ) . "'>" . esc_html__( 'Restore', 'bbpress' ) . "</a>";
748
  } elseif ( EMPTY_TRASH_DAYS ) {
749
+ $actions['trash'] = "<a class='submitdelete' title='" . esc_attr__( 'Move this item to the Trash', 'bbpress' ) . "' href='" . esc_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $reply->ID ) ) ) . "'>" . esc_html__( 'Trash', 'bbpress' ) . "</a>";
750
  }
751
 
752
  if ( bbp_get_trash_status_id() === $reply->post_status || !EMPTY_TRASH_DAYS ) {
753
+ $actions['delete'] = "<a class='submitdelete' title='" . esc_attr__( 'Delete this item permanently', 'bbpress' ) . "' href='" . esc_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_reply_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $reply->ID, '', true ) ) ) . "'>" . esc_html__( 'Delete Permanently', 'bbpress' ) . "</a>";
754
  } elseif ( bbp_get_spam_status_id() === $reply->post_status ) {
755
  unset( $actions['trash'] );
756
  }
includes/admin/styles/green-34.css DELETED
@@ -1,2080 +0,0 @@
1
-
2
-
3
- /*------------------------------------------------------------------------------
4
-
5
-
6
- Howdy! This is the CSS file that controls the
7
- Green (minty) color style on the WordPress Dashboard.
8
-
9
- This file contains both LTR and RTL styles.
10
-
11
-
12
- TABLE OF CONTENTS:
13
- ------------------
14
- 1.0 - Left to Right Styles
15
- 2.0 - Right to Left Styles
16
-
17
-
18
- ------------------------------------------------------------------------------*/
19
-
20
-
21
- /*------------------------------------------------------------------------------
22
- 1.0 - Left to Right Styles
23
- ------------------------------------------------------------------------------*/
24
-
25
- html,
26
- .wp-dialog {
27
- background-color: #fff;
28
- }
29
-
30
- textarea,
31
- input[type="text"],
32
- input[type="password"],
33
- input[type="file"],
34
- input[type="button"],
35
- input[type="submit"],
36
- input[type="reset"],
37
- input[type="email"],
38
- input[type="number"],
39
- input[type="search"],
40
- input[type="tel"],
41
- input[type="url"],
42
- select {
43
- border-color: #dfdfdf;
44
- background-color: #fff;
45
- }
46
-
47
- textarea:focus,
48
- input[type="text"]:focus,
49
- input[type="password"]:focus,
50
- input[type="file"]:focus,
51
- input[type="button"]:focus,
52
- input[type="submit"]:focus,
53
- input[type="reset"]:focus,
54
- input[type="email"]:focus,
55
- input[type="number"]:focus,
56
- input[type="search"]:focus,
57
- input[type="tel"]:focus,
58
- input[type="url"]:focus,
59
- select:focus {
60
- border-color: #bbb;
61
- }
62
-
63
- kbd,
64
- code {
65
- background: #eaeaea;
66
- }
67
-
68
- input[readonly] {
69
- background-color: #eee;
70
- }
71
-
72
- .find-box-search {
73
- border-color: #dfdfdf;
74
- background-color: #f1f1f1;
75
- }
76
-
77
- .find-box {
78
- background-color: #f1f1f1;
79
- }
80
-
81
- .find-box-inside {
82
- background-color: #fff;
83
- }
84
-
85
- a.page-numbers:hover {
86
- border-color: #999;
87
- }
88
-
89
- body,
90
- #wpbody,
91
- .form-table .pre {
92
- color: #333;
93
- }
94
-
95
- body > #upload-menu {
96
- border-bottom-color: #fff;
97
- }
98
-
99
- #postcustomstuff table,
100
- #your-profile fieldset,
101
- #rightnow,
102
- div.dashboard-widget,
103
- #dashboard-widgets p.dashboard-widget-links {
104
- border-color: #ccc;
105
- }
106
-
107
- #poststuff .inside label.spam,
108
- #poststuff .inside label.deleted {
109
- color: red;
110
- }
111
-
112
- #poststuff .inside label.waiting {
113
- color: orange;
114
- }
115
-
116
- #poststuff .inside label.approved {
117
- color: green;
118
- }
119
-
120
- #postcustomstuff table {
121
- border-color: #dfdfdf;
122
- background-color: #F9F9F9;
123
- }
124
-
125
- #postcustomstuff thead th {
126
- background-color: #F1F1F1;
127
- }
128
-
129
- .widefat {
130
- border-color: #dfdfdf;
131
- background-color: #eefcf1;
132
- }
133
- textarea.widefat {
134
- background-color: #fff;
135
- }
136
-
137
- div.dashboard-widget-error {
138
- background-color: #c43;
139
- }
140
-
141
- div.dashboard-widget-notice {
142
- background-color: #cfe1ef;
143
- }
144
-
145
- div.dashboard-widget-submit {
146
- border-top-color: #ccc;
147
- }
148
-
149
- div.tabs-panel,
150
- .wp-tab-panel,
151
- ul.category-tabs li.tabs,
152
- ul.add-menu-item-tabs li.tabs,
153
- .wp-tab-active {
154
- border-color: #dfdfdf;
155
- background-color: #fff;
156
- }
157
-
158
- ul.category-tabs li.tabs,
159
- ul.add-menu-item-tabs li.tabs,
160
- .wp-tab-active {
161
- background-color: #fff;
162
- }
163
-
164
- input.disabled,
165
- textarea.disabled {
166
- background-color: #ccc;
167
- }
168
- /* #upload-menu li a.upload-tab-link, */
169
- #plugin-information .action-button a,
170
- #plugin-information .action-button a:hover,
171
- #plugin-information .action-button a:visited {
172
- color: #fff;
173
- }
174
-
175
- .widget .widget-top,
176
- .postbox h3,
177
- .stuffbox h3,
178
- .widefat thead tr th,
179
- .widefat tfoot tr th,
180
- h3.dashboard-widget-title,
181
- h3.dashboard-widget-title span,
182
- h3.dashboard-widget-title small,
183
- .find-box-head,
184
- .sidebar-name,
185
- #nav-menu-header,
186
- #nav-menu-footer,
187
- .menu-item-handle,
188
- #fullscreen-topbar {
189
- background-color: #f1f1f1; /* Fallback */
190
- background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
191
- background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
192
- background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
193
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
194
- background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
195
- background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
196
- }
197
-
198
- .widget .widget-top,
199
- .postbox h3,
200
- .stuffbox h3 {
201
- border-bottom-color: #dfdfdf;
202
- text-shadow: #fff 0 1px 0;
203
- -moz-box-shadow: 0 1px 0 #fff;
204
- -webkit-box-shadow: 0 1px 0 #fff;
205
- box-shadow: 0 1px 0 #fff;
206
- }
207
-
208
- .form-table th,
209
- .form-wrap label {
210
- color: #222;
211
- text-shadow: #fff 0 1px 0;
212
- }
213
-
214
- .description,
215
- .form-wrap p {
216
- color: #666;
217
- }
218
-
219
- strong .post-com-count span {
220
- background-color: #007700;
221
- }
222
-
223
- .sorthelper {
224
- background-color: #ccf3fa;
225
- }
226
-
227
- .ac_match,
228
- .subsubsub a.current {
229
- color: #000;
230
- }
231
-
232
- .wrap h2 {
233
- color: #464646;
234
- }
235
-
236
- .wrap .add-new-h2 {
237
- background: #f1f1f1;
238
- }
239
-
240
- .subtitle {
241
- color: #777;
242
- }
243
-
244
- .ac_over {
245
- background-color: #f0f0b8;
246
- }
247
-
248
- .ac_results {
249
- background-color: #fff;
250
- border-color: #6EB469;
251
- }
252
-
253
- .ac_results li {
254
- color: #101010;
255
- }
256
-
257
- .alternate,
258
- .alt {
259
- background-color: #fefefe;
260
- }
261
-
262
- .available-theme a.screenshot {
263
- background-color: #f1f1f1;
264
- border-color: #ddd;
265
- }
266
-
267
- .bar {
268
- background-color: #e8e8e8;
269
- border-right-color: #99d;
270
- }
271
-
272
- #media-upload,
273
- #media-upload .media-item .slidetoggle {
274
- background: #fff;
275
- }
276
-
277
- #media-upload .slidetoggle {
278
- border-top-color: #dfdfdf;
279
- }
280
-
281
- div.error,
282
- .login #login_error {
283
- background-color: #ffebe8;
284
- border-color: #c00;
285
- }
286
-
287
- div.error a {
288
- color: #c00;
289
- }
290
-
291
- .form-invalid {
292
- background-color: #ffebe8 !important;
293
- }
294
-
295
- .form-invalid input,
296
- .form-invalid select {
297
- border-color: #c00 !important;
298
- }
299
-
300
- .submit {
301
- border-color: #DFDFDF;
302
- }
303
-
304
- .highlight {
305
- background-color: #e4f2fd;
306
- color: #000;
307
- }
308
-
309
- .howto,
310
- .nonessential,
311
- #edit-slug-box,
312
- .form-input-tip,
313
- .subsubsub {
314
- color: #666;
315
- }
316
-
317
- #wpbody-content #media-items .describe {
318
- border-top-color: #dfdfdf;
319
- }
320
-
321
- .media-upload-form label.form-help,
322
- td.help {
323
- color: #9a9a9a;
324
- }
325
-
326
- .post-com-count {
327
- color: #fff;
328
- }
329
-
330
- .post-com-count span {
331
- background-color: #bbb;
332
- color: #fff;
333
- }
334
-
335
- .post-com-count:hover span {
336
- background-color: #d54e21;
337
- }
338
-
339
- .quicktags, .search {
340
- background-color: #ccc;
341
- color: #000;
342
- }
343
-
344
- .side-info h5 {
345
- border-bottom-color: #dadada;
346
- }
347
-
348
- .side-info ul {
349
- color: #666;
350
- }
351
-
352
- .button,
353
- .button-secondary,
354
- .submit input,
355
- input[type=button],
356
- input[type=submit] {
357
- border-color: #bbb;
358
- color: #464646;
359
- }
360
-
361
- .button:hover,
362
- .button-secondary:hover,
363
- .submit input:hover,
364
- input[type=button]:hover,
365
- input[type=submit]:hover {
366
- color: #000;
367
- border-color: #666;
368
- }
369
-
370
- .button,
371
- .submit input,
372
- .button-secondary {
373
- background-color: #f2f2f2;
374
- background-repeat: repeat-x;
375
- background-attachment: scroll;
376
- background-position: left top;
377
- text-shadow: rgba(255,255,255,1) 0 1px 0;
378
- }
379
-
380
- .button:active,
381
- .submit input:active,
382
- .button-secondary:active {
383
- background-color: #eee;
384
- background-repeat: repeat-x;
385
- background-attachment: scroll;
386
- background-position: left top;
387
- }
388
-
389
- input.button-primary,
390
- button.button-primary,
391
- a.button-primary {
392
- border-color: #298cba;
393
- font-weight: bold;
394
- color: #fff;
395
- background-image: url('../images/button-grad.png');
396
- background-color: #007700;
397
- background-repeat: repeat-x;
398
- background-attachment: scroll;
399
- background-position: left top;
400
- text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
401
- }
402
-
403
- input.button-primary:active,
404
- button.button-primary:active,
405
- a.button-primary:active {
406
- background-image: url('../images/button-grad-active.png');
407
- background-color: #007700;
408
- background-repeat: repeat-x;
409
- background-attachment: scroll;
410
- background-position: left top;
411
- color: #eaf2fa;
412
- }
413
-
414
- input.button-primary:hover,
415
- button.button-primary:hover,
416
- a.button-primary:hover,
417
- a.button-primary:focus,
418
- a.button-primary:active {
419
- border-color: #13455b;
420
- color: #eaf2fa;
421
- }
422
-
423
- .button-disabled,
424
- .button[disabled],
425
- .button:disabled,
426
- .button-secondary[disabled],
427
- .button-secondary:disabled,
428
- a.button.disabled {
429
- color: #aaa !important;
430
- border-color: #ddd !important;
431
- }
432
-
433
- .button-primary-disabled,
434
- .button-primary[disabled],
435
- .button-primary:disabled {
436
- color: #9FD0D5 !important;
437
- background: #298CBA !important;
438
- }
439
-
440
- a:hover,
441
- a:active,
442
- a:focus {
443
- color: #d54e21;
444
- }
445
-
446
- #adminmenu a:hover,
447
- #adminmenu li.menu-top > a:focus,
448
- #adminmenu ul.wp-submenu a:hover,
449
- #the-comment-list .comment a:hover,
450
- #rightnow a:hover,
451
- #media-upload a.del-link:hover,
452
- div.dashboard-widget-submit input:hover,
453
- .subsubsub a:hover,
454
- .subsubsub a.current:hover,
455
- .ui-tabs-nav a:hover,
456
- .plugins .inactive a:hover,
457
- #all-plugins-table .plugins .inactive a:hover,
458
- #search-plugins-table .plugins .inactive a:hover {
459
- color: #d54e21;
460
- }
461
-
462
- #the-comment-list .comment-item,
463
- #dashboard-widgets #dashboard_quick_press form p.submit {
464
- border-color: #dfdfdf;
465
- }
466
-
467
- #side-sortables .category-tabs .tabs a,
468
- #side-sortables .add-menu-item-tabs .tabs a,
469
- .wp-tab-bar .wp-tab-active a {
470
- color: #333;
471
- }
472
-
473
- #rightnow .rbutton {
474
- background-color: #ebebeb;
475
- color: #264761;
476
- }
477
-
478
- .submitbox .submit {
479
- background-color: #464646;
480
- color: #ccc;
481
- }
482
-
483
- .plugins a.delete:hover,
484
- #all-plugins-table .plugins a.delete:hover,
485
- #search-plugins-table .plugins a.delete:hover,
486
- .submitbox .submitdelete {
487
- color: #f00;
488
- border-bottom-color: #f00;
489
- }
490
-
491
- .submitbox .submitdelete:hover,
492
- #media-items a.delete:hover {
493
- color: #fff;
494
- background-color: #f00;
495
- border-bottom-color: #f00;
496
- }
497
-
498
- #normal-sortables .submitbox .submitdelete:hover {
499
- color: #000;
500
- background-color: #f00;
501
- border-bottom-color: #f00;
502
- }
503
-
504
- .tablenav .dots {
505
- border-color: transparent;
506
- }
507
-
508
- .tablenav .next,
509
- .tablenav .prev {
510
- border-color: transparent;
511
- color: #007700;
512
- }
513
-
514
- .tablenav .next:hover,
515
- .tablenav .prev:hover {
516
- border-color: transparent;
517
- color: #d54e21;
518
- }
519
-
520
- div.updated,
521
- .login .message {
522
- background-color: #ffffe0;
523
- border-color: #e6db55;
524
- }
525
-
526
- .update-message {
527
- color: #000;
528
- }
529
-
530
- a.page-numbers {
531
- border-bottom-color: #B8D3E2;
532
- }
533
-
534
- .commentlist li {
535
- border-bottom-color: #ccc;
536
- }
537
-
538
- .widefat td,
539
- .widefat th {
540
- border-top-color: #fff;
541
- border-bottom-color: #dfdfdf;
542
- }
543
-
544
- .widefat th {
545
- text-shadow: rgba(255,255,255,0.8) 0 1px 0;
546
- }
547
-
548
- .widefat td {
549
- color: #555;
550
- }
551
- .widefat p,
552
- .widefat ol,
553
- .widefat ul {
554
- color: #333;
555
- }
556
-
557
- .widefat thead tr th,
558
- .widefat tfoot tr th,
559
- h3.dashboard-widget-title,
560
- h3.dashboard-widget-title span,
561
- h3.dashboard-widget-title small,
562
- .find-box-head {
563
- color: #333;
564
- }
565
-
566
- th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
567
- color: #333;
568
- }
569
-
570
- h3.dashboard-widget-title small a {
571
- color: #d7d7d7;
572
- }
573
-
574
- h3.dashboard-widget-title small a:hover {
575
- color: #fff;
576
- }
577
-
578
- a,
579
- #adminmenu a,
580
- #the-comment-list p.comment-author strong a,
581
- #media-upload a.del-link,
582
- #media-items a.delete,
583
- .plugins a.delete,
584
- .ui-tabs-nav a {
585
- color: #007700;
586
- }
587
-
588
- #adminmenu .awaiting-mod,
589
- #adminmenu .update-plugins,
590
- #sidemenu a .update-plugins,
591
- #rightnow .reallynow {
592
- background-color: #464646;
593
- color: #fff;
594
- -moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
595
- -khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
596
- -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
597
- box-shadow: rgba(255,255,255,0.5) 0 1px 0;
598
- }
599
- #plugin-information .action-button {
600
- background-color: #d54e21;
601
- color: #fff;
602
- }
603
-
604
- #adminmenu li.current a .awaiting-mod,
605
- #adminmenu li a.wp-has-current-submenu .update-plugins{
606
- background-color: #464646;
607
- color: #fff;
608
- -moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
609
- -khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
610
- -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
611
- box-shadow: rgba(255,255,255,0.5) 0 1px 0;
612
- }
613
-
614
- div#media-upload-header,
615
- div#plugin-information-header {
616
- background-color: #eefcf1;
617
- border-bottom-color: #dfdfdf;
618
- }
619
-
620
- #currenttheme img {
621
- border-color: #666;
622
- }
623
-
624
- #dashboard_secondary div.dashboard-widget-content ul li a {
625
- background-color: #eefcf1;
626
- }
627
-
628
- input.readonly, textarea.readonly {
629
- background-color: #ddd;
630
- }
631
-
632
- #editable-post-name {
633
- background-color: #fffbcc;
634
- }
635
-
636
- #edit-slug-box strong,
637
- .tablenav .displaying-num,
638
- #submitted-on,
639
- .submitted-on {
640
- color: #777;
641
- }
642
-
643
- .login #nav a,
644
- .login #backtoblog a {
645
- color: #007700 !important;
646
- }
647
-
648
- .login #nav a:hover,
649
- .login #backtoblog a:hover {
650
- color: #d54e21 !important;
651
- }
652
-
653
- #footer {
654
- color: #777;
655
- border-color: #dfdfdf;
656
- }
657
-
658
- #media-items,
659
- .imgedit-group,
660
- .media-item {
661
- border-color: #dfdfdf;
662
- }
663
-
664
- .checkbox,
665
- .side-info,
666
- .plugins tr,
667
- #your-profile #rich_editing {
668
- background-color: #fcfcfc;
669
- }
670
-
671
- .plugins .inactive,
672
- .plugins .inactive th,
673
- .plugins .inactive td,
674
- tr.inactive + tr.plugin-update-tr .plugin-update {
675
- background-color: #f4f4f4;
676
- }
677
-
678
- .plugin-update-tr .update-message {
679
- background-color: #fffbe4;
680
- border-color: #dfdfdf;
681
- }
682
-
683
- .plugins .active,
684
- .plugins .active th,
685
- .plugins .active td {
686
- color: #000;
687
- }
688
-
689
- .plugins .inactive a {
690
- color: #557799;
691
- }
692
-
693
- #the-comment-list tr.undo,
694
- #the-comment-list div.undo {
695
- background-color: #f4f4f4;
696
- }
697
-
698
- #the-comment-list .unapproved {
699
- background-color: #ffffe0;
700
- }
701
-
702
- #the-comment-list .approve a {
703
- color: #006505;
704
- }
705
-
706
- #the-comment-list .unapprove a {
707
- color: #d98500;
708
- }
709
-
710
- table.widefat span.delete a,
711
- table.widefat span.trash a,
712
- table.widefat span.spam a,
713
- #dashboard_recent_comments .delete a,
714
- #dashboard_recent_comments .trash a,
715
- #dashboard_recent_comments .spam a {
716
- color: #bc0b0b;
717
- }
718
-
719
- .welcome-panel {
720
- border-color: #dfdfdf;
721
- }
722
- .welcome-panel p {
723
- color: #777;
724
- }
725
- .welcome-panel-column p {
726
- color: #464646;
727
- }
728
- .welcome-panel .welcome-panel-close {
729
- background: #eee;
730
- text-shadow: 1px 1px 1px #eee;
731
- }
732
- .welcome-panel h3 {
733
- text-shadow: 1px 1px 1px white;
734
- }
735
-
736
- .widget,
737
- #widget-list .widget-top,
738
- .postbox,
739
- #titlediv,
740
- #poststuff .postarea,
741
- .stuffbox {
742
- border-color: #dfdfdf;
743
- -moz-box-shadow: inset 0 1px 0 #fff;
744
- -webkit-box-shadow: inset 0 1px 0 #fff;
745
- box-shadow: inset 0 1px 0 #fff;
746
- -moz-border-radius: 3px;
747
- -khtml-border-radius: 3px;
748
- -webkit-border-radius: 3px;
749
- border-radius: 3px;
750
- }
751
-
752
- .widget,
753
- #widget-list .widget-top,
754
- .postbox,
755
- .menu-item-settings {
756
- background-color: #eefcf1; /* Fallback */
757
- background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
758
- background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
759
- background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
760
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
761
- background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
762
- background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
763
- }
764
-
765
- .postbox h3 {
766
- color: #464646;
767
- }
768
-
769
- .widget .widget-top {
770
- color: #222;
771
- }
772
-
773
- .sidebar-name:hover h3,
774
- .postbox h3:hover {
775
- color: #000;
776
- }
777
-
778
- #quicktags #ed_link {
779
- color: #00f;
780
- }
781
-
782
- #rightnow .youhave {
783
- background-color: #f0f6fb;
784
- }
785
-
786
- #rightnow a {
787
- color: #448abd;
788
- }
789
-
790
- .tagchecklist span a,
791
- #bulk-titles div a {
792
-
793
- background-repeat: no-repeat;
794
- }
795
-
796
- .tagchecklist span a:hover,
797
- #bulk-titles div a:hover {
798
- background-repeat: no-repeat;
799
- background-position: -10px 0;
800
- }
801
-
802
- #update-nag, .update-nag {
803
- background-color: #FFFBCC;
804
- border-color: #E6DB55;
805
- color: #555;
806
- }
807
-
808
- #screen-meta {
809
- background-color: #f1f1f1;
810
- border-color: #ccc;
811
- -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
812
- box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
813
- }
814
-
815
- .contextual-help-tabs a:hover {
816
- color: #333;
817
- }
818
-
819
- .contextual-help-sidebar,
820
- .contextual-help-tabs .active {
821
- border-color: #ccc;
822
- }
823
-
824
- .contextual-help-tabs .active,
825
- .contextual-help-tabs .active a,
826
- .contextual-help-tabs .active a:hover {
827
- background: #fff;
828
- color: #000;
829
- }
830
-
831
- .contextual-help-tabs-wrap {
832
- border-color: #ccc;
833
- background-color: #fff;
834
- }
835
-
836
- /* screen options and help tabs */
837
- #screen-options-link-wrap,
838
- #contextual-help-link-wrap {
839
- background-color: #e3e3e3; /* Fallback */
840
- border-right: 1px solid transparent;
841
- border-left: 1px solid transparent;
842
- border-bottom: 1px solid transparent;
843
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
844
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
845
- background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
846
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
847
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
848
- background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
849
- }
850
-
851
- #screen-meta-links a.show-settings {
852
- color: #777;
853
- }
854
-
855
- #screen-meta-links a.show-settings:hover {
856
- color: #000;
857
- }
858
-
859
- #screen-meta-links a.show-settings {
860
- background-color: transparent;
861
- background-repeat: no-repeat;
862
- background-position: right 3px;
863
- }
864
-
865
- #screen-meta-links a.show-settings.screen-meta-active {
866
- background-color: transparent;
867
- background-repeat: no-repeat;
868
- background-position: right -33px;
869
- }
870
-
871
- /* end screen options and help tabs */
872
-
873
- .login #backtoblog a {
874
- color: #464646;
875
- }
876
-
877
- #wphead {
878
- border-bottom:#dfdfdf 1px solid;
879
- }
880
-
881
- #wphead h1 a {
882
- color: #464646;
883
- }
884
-
885
- #footer a:link,
886
- #footer a:visited {
887
- text-decoration: none;
888
- }
889
-
890
- #footer a:hover {
891
- color: #000;
892
- text-decoration: underline;
893
- }
894
-
895
- .file-error,
896
- abbr.required,
897
- .widget-control-remove:hover,
898
- table.widefat .delete a:hover,
899
- table.widefat .trash a:hover,
900
- table.widefat .spam a:hover,
901
- #dashboard_recent_comments .delete a:hover,
902
- #dashboard_recent_comments .trash a:hover
903
- #dashboard_recent_comments .spam a:hover {
904
- color: #f00;
905
- }
906
-
907
- #pass-strength-result {
908
- background-color: #eee;
909
- border-color: #ddd !important;
910
- }
911
-
912
- #pass-strength-result.bad {
913
- background-color: #ffb78c;
914
- border-color: #ff853c !important;
915
- }
916
-
917
- #pass-strength-result.good {
918
- background-color: #ffec8b;
919
- border-color: #fc0 !important;
920
- }
921
-
922
- #pass-strength-result.short {
923
- background-color: #ffa0a0;
924
- border-color: #f04040 !important;
925
- }
926
-
927
- #pass-strength-result.strong {
928
- background-color: #c3ff88;
929
- border-color: #8dff1c !important;
930
- }
931
-
932
- #titlediv #title {
933
- border-color: #ccc;
934
- }
935
-
936
- #post-status-info {
937
- border-color: #dfdfdf #ccc #ccc;
938
- background-color: #eaeaea;
939
- }
940
-
941
- .editwidget .widget-inside {
942
- border-color: #dfdfdf;
943
- }
944
-
945
- #titlediv #title {
946
- background-color: #fff;
947
- }
948
-
949
- #tTips p#tTips_inside {
950
- background-color: #ddd;
951
- color: #333;
952
- }
953
-
954
- #timestampdiv input,
955
- #namediv input,
956
- #poststuff .inside .the-tagcloud {
957
- border-color: #ddd;
958
- }
959
-
960
- /* menu */
961
- #adminmenuback,
962
- #adminmenuwrap {
963
- background-color: #deece1;
964
- border-color: #ccc;
965
- }
966
-
967
- #adminmenushadow,
968
- #adminmenuback {
969
- background-position: top right;
970
- background-repeat: repeat-y;
971
- }
972
-
973
- #adminmenu li.wp-menu-separator {
974
- background: #dfdfdf;
975
- border-color: #cfcfcf;
976
- }
977
-
978
- #adminmenu div.separator {
979
- border-color: #e1e1e1;
980
- }
981
-
982
- #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
983
- #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
984
- background-color: transparent;
985
- background-repeat: no-repeat;
986
- background-position: -1px 6px;
987
- }
988
-
989
- #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
990
- #adminmenu .wp-menu-open .wp-menu-toggle {
991
- background-color: transparent;
992
- background-repeat: no-repeat;
993
- background-position: -2px 6px;
994
- }
995
-
996
- #adminmenu a.menu-top,
997
- .folded #adminmenu li.menu-top,
998
- #adminmenu .wp-submenu .wp-submenu-head {
999
- border-top-color: #eefcf1;
1000
- border-bottom-color: #dfdfdf;
1001
- }
1002
-
1003
- #adminmenu li.wp-menu-open {
1004
- border-color: #dfdfdf;
1005
- }
1006
-
1007
- #adminmenu li.menu-top:hover > a,
1008
- #adminmenu li.menu-top.focused > a,
1009
- #adminmenu li.menu-top > a:focus {
1010
- background-color: #eefcf1;
1011
- text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
1012
- }
1013
-
1014
- #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
1015
- #adminmenu li.current a.menu-top,
1016
- .folded #adminmenu li.wp-has-current-submenu,
1017
- .folded #adminmenu li.current.menu-top,
1018
- #adminmenu .wp-menu-arrow,
1019
- #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1020
- background-color: #777; /* Fallback */
1021
- background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
1022
- background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
1023
- background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
1024
- background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
1025
- background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
1026
- background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
1027
- }
1028
-
1029
- #adminmenu .wp-menu-arrow div {
1030
- background-color: #777; /* Fallback */
1031
- background-image: -ms-linear-gradient(right bottom, #060, #6EB469); /* IE10 */
1032
- background-image: -moz-linear-gradient(right bottom, #060, #6EB469); /* Firefox */
1033
- background-image: -o-linear-gradient(right bottom, #060, #6EB469); /* Opera */
1034
- background-image: -webkit-gradient(linear, right bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
1035
- background-image: -webkit-linear-gradient(right bottom, #060, #6EB469); /* new Webkit */
1036
- background-image: linear-gradient(right bottom, #060, #6EB469); /* proposed W3C Markup */
1037
- }
1038
-
1039
- #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
1040
- border-top-color: #eefcf1;
1041
- border-bottom-color: #dfdfdf;
1042
- background: #eefcf1;
1043
- }
1044
-
1045
- #adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
1046
- background: #eefcf1;
1047
- border-color: #ccc;
1048
- }
1049
-
1050
- .folded #adminmenu li.menu-top li:hover a {
1051
- background-image: none;
1052
- }
1053
-
1054
- #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
1055
- #adminmenu li.current a.menu-top,
1056
- #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1057
- text-shadow: 0 -1px 0 #333;
1058
- color: #fff;
1059
- border-top-color: #6EB469;
1060
- border-bottom-color: #060;
1061
- }
1062
-
1063
- .folded #adminmenu li.wp-has-current-submenu,
1064
- .folded #adminmenu li.current.menu-top {
1065
- border-top-color: #6EB469;
1066
- border-bottom-color: #060;
1067
- }
1068
-
1069
- #adminmenu .wp-submenu a:hover,
1070
- #adminmenu .wp-submenu a:focus {
1071
- background-color: #eefcf1;
1072
- color: #333;
1073
- }
1074
-
1075
- #adminmenu .wp-submenu li.current,
1076
- #adminmenu .wp-submenu li.current a,
1077
- #adminmenu .wp-submenu li.current a:hover {
1078
- color: #333;
1079
- }
1080
-
1081
- #adminmenu .wp-submenu ul {
1082
- background-color: #fff;
1083
- }
1084
-
1085
- #adminmenu .wp-submenu-wrap,
1086
- #adminmenu .wp-submenu ul {
1087
- border-color: #dfdfdf;
1088
- }
1089
-
1090
- #adminmenu .wp-submenu-wrap,
1091
- .folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap {
1092
- -moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1093
- -webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1094
- box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1095
- }
1096
-
1097
- #adminmenu .wp-submenu .wp-submenu-head {
1098
- border-right-color: #dfdfdf;
1099
- background-color: #deece1;
1100
- }
1101
-
1102
- #adminmenu div.wp-submenu {
1103
- background-color: transparent;
1104
- }
1105
-
1106
- /* collapse menu button */
1107
- #collapse-menu {
1108
- color: #aaa;
1109
- }
1110
-
1111
- #collapse-menu:hover {
1112
- color: #999;
1113
- }
1114
-
1115
- #collapse-button {
1116
- border-color: #ccc;
1117
- background-color: #f4f4f4; /* Fallback */
1118
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
1119
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
1120
- background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
1121
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
1122
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
1123
- background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
1124
- }
1125
- #collapse-menu:hover #collapse-button {
1126
- border-color: #aaa;
1127
- }
1128
- #collapse-button div {
1129
- background-color: transparent;
1130
- background-repeat: no-repeat;
1131
- background-position: 0 -72px;
1132
- }
1133
- .folded #collapse-button div {
1134
- background-position: 0 -108px;
1135
- }
1136
-
1137
- /* menu and screen icons */
1138
- .icon16.icon-dashboard,
1139
- #adminmenu .menu-icon-dashboard div.wp-menu-image {
1140
- background-color: transparent;
1141
- background-repeat: no-repeat;
1142
- background-attachment: scroll;
1143
- background-position: -60px -33px;
1144
- }
1145
-
1146
- #adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
1147
- #adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
1148
- #adminmenu .menu-icon-dashboard.current div.wp-menu-image {
1149
- background-color: transparent;
1150
- background-repeat: no-repeat;
1151
- background-attachment: scroll;
1152
- background-position: -60px -1px;
1153
- }
1154
-
1155
- .icon16.icon-post,
1156
- #adminmenu .menu-icon-post div.wp-menu-image {
1157
- background-color: transparent;
1158
- background-repeat: no-repeat;
1159
- background-attachment: scroll;
1160
- background-position: -271px -33px;
1161
- }
1162
-
1163
- #adminmenu .menu-icon-post:hover div.wp-menu-image,
1164
- #adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
1165
- background-color: transparent;
1166
- background-repeat: no-repeat;
1167
- background-attachment: scroll;
1168
- background-position: -271px -33px;
1169
- }
1170
-
1171
- .icon16.icon-media,
1172
- #adminmenu .menu-icon-media div.wp-menu-image {
1173
- background-color: transparent;
1174
- background-repeat: no-repeat;
1175
- background-attachment: scroll;
1176
- background-position: -120px -33px;
1177
- }
1178
-
1179
- #adminmenu .menu-icon-media:hover div.wp-menu-image,
1180
- #adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
1181
- background-color: transparent;
1182
- background-repeat: no-repeat;
1183
- background-attachment: scroll;
1184
- background-position: -120px -1px;
1185
- }
1186
-
1187
- .icon16.icon-links,
1188
- #adminmenu .menu-icon-links div.wp-menu-image {
1189
- background-color: transparent;
1190
- background-repeat: no-repeat;
1191
- background-attachment: scroll;
1192
- background-position: -90px -33px;
1193
- }
1194
-
1195
- #adminmenu .menu-icon-links:hover div.wp-menu-image,
1196
- #adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
1197
- background-color: transparent;
1198
- background-repeat: no-repeat;
1199
- background-attachment: scroll;
1200
- background-position: -90px -1px;
1201
- }
1202
-
1203
- .icon16.icon-page,
1204
- #adminmenu .menu-icon-page div.wp-menu-image {
1205
- background-color: transparent;
1206
- background-repeat: no-repeat;
1207
- background-attachment: scroll;
1208
- background-position: -150px -33px;
1209
- }
1210
-
1211
- #adminmenu .menu-icon-page:hover div.wp-menu-image,
1212
- #adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
1213
- background-color: transparent;
1214
- background-repeat: no-repeat;
1215
- background-attachment: scroll;
1216
- background-position: -150px -1px;
1217
- }
1218
-
1219
- .icon16.icon-comments,
1220
- #adminmenu .menu-icon-comments div.wp-menu-image {
1221
- background-color: transparent;
1222
- background-repeat: no-repeat;
1223
- background-attachment: scroll;
1224
- background-position: -30px -33px;
1225
- }
1226
-
1227
- #adminmenu .menu-icon-comments:hover div.wp-menu-image,
1228
- #adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
1229
- #adminmenu .menu-icon-comments.current div.wp-menu-image {
1230
- background-color: transparent;
1231
- background-repeat: no-repeat;
1232
- background-attachment: scroll;
1233
- background-position: -30px -1px;
1234
- }
1235
-
1236
- .icon16.icon-appearance,
1237
- #adminmenu .menu-icon-appearance div.wp-menu-image {
1238
- background-color: transparent;
1239
- background-repeat: no-repeat;
1240
- background-attachment: scroll;
1241
- background-position: 0 -33px;
1242
- }
1243
-
1244
- #adminmenu .menu-icon-appearance:hover div.wp-menu-image,
1245
- #adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
1246
- background-color: transparent;
1247
- background-repeat: no-repeat;
1248
- background-attachment: scroll;
1249
- background-position: 0 -1px;
1250
- }
1251
-
1252
- .icon16.icon-plugins,
1253
- #adminmenu .menu-icon-plugins div.wp-menu-image {
1254
- background-color: transparent;
1255
- background-repeat: no-repeat;
1256
- background-attachment: scroll;
1257
- background-position: -180px -33px;
1258
- }
1259
-
1260
- #adminmenu .menu-icon-plugins:hover div.wp-menu-image,
1261
- #adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
1262
- background-color: transparent;
1263
- background-repeat: no-repeat;
1264
- background-attachment: scroll;
1265
- background-position: -180px -1px;
1266
- }
1267
-
1268
- .icon16.icon-users,
1269
- #adminmenu .menu-icon-users div.wp-menu-image {
1270
- background-color: transparent;
1271
- background-repeat: no-repeat;
1272
- background-attachment: scroll;
1273
- background-position: -300px -33px;
1274
- }
1275
-
1276
- #adminmenu .menu-icon-users:hover div.wp-menu-image,
1277
- #adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
1278
- #adminmenu .menu-icon-users.current div.wp-menu-image {
1279
- background-color: transparent;
1280
- background-repeat: no-repeat;
1281
- background-attachment: scroll;
1282
- background-position: -300px -1px;
1283
- }
1284
-
1285
- .icon16.icon-tools,
1286
- #adminmenu .menu-icon-tools div.wp-menu-image {
1287
- background-color: transparent;
1288
- background-repeat: no-repeat;
1289
- background-attachment: scroll;
1290
- background-position: -210px -33px;
1291
- }
1292
-
1293
- #adminmenu .menu-icon-tools:hover div.wp-menu-image,
1294
- #adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
1295
- #adminmenu .menu-icon-tools.current div.wp-menu-image {
1296
- background-color: transparent;
1297
- background-repeat: no-repeat;
1298
- background-attachment: scroll;
1299
- background-position: -210px -1px;
1300
- }
1301
-
1302
- .icon16.icon-settings,
1303
- #adminmenu .menu-icon-settings div.wp-menu-image {
1304
- background-color: transparent;
1305
- background-repeat: no-repeat;
1306
- background-attachment: scroll;
1307
- background-position: -240px -33px;
1308
- }
1309
-
1310
- #adminmenu .menu-icon-settings:hover div.wp-menu-image,
1311
- #adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
1312
- background-color: transparent;
1313
- background-repeat: no-repeat;
1314
- background-attachment: scroll;
1315
- background-position: -240px -1px;
1316
- }
1317
-
1318
- .icon16.icon-site,
1319
- #adminmenu .menu-icon-site div.wp-menu-image {
1320
- background-color: transparent;
1321
- background-repeat: no-repeat;
1322
- background-attachment: scroll;
1323
- background-position: -360px -33px;
1324
- }
1325
-
1326
- #adminmenu .menu-icon-site:hover div.wp-menu-image,
1327
- #adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
1328
- background-color: transparent;
1329
- background-repeat: no-repeat;
1330
- background-attachment: scroll;
1331
- background-position: -360px -1px;
1332
- }
1333
- /* end menu and screen icons */
1334
-
1335
- /* Screen Icons */
1336
- .icon32.icon-post,
1337
- #icon-edit,
1338
- #icon-post {
1339
- background-color: transparent;
1340
- background-repeat: no-repeat;
1341
- background-position: -552px -5px;
1342
- }
1343
-
1344
- .icon32.icon-dashboard,
1345
- #icon-index {
1346
- background-color: transparent;
1347
- background-repeat: no-repeat;
1348
- background-position: -137px -5px;
1349
- }
1350
-
1351
- .icon32.icon-media,
1352
- #icon-upload {
1353
- background-color: transparent;
1354
- background-repeat: no-repeat;
1355
- background-position: -251px -5px;
1356
- }
1357
-
1358
- .icon32.icon-links,
1359
- #icon-link-manager,
1360
- #icon-link,
1361
- #icon-link-category {
1362
- background-color: transparent;
1363
- background-repeat: no-repeat;
1364
- background-position: -190px -5px;
1365
- }
1366
-
1367
- .icon32.icon-page,
1368
- #icon-edit-pages,
1369
- #icon-page {
1370
- background-color: transparent;
1371
- background-repeat: no-repeat;
1372
- background-position: -312px -5px;
1373
- }
1374
-
1375
- .icon32.icon-comments,
1376
- #icon-edit-comments {
1377
- background-color: transparent;
1378
- background-repeat: no-repeat;
1379
- background-position: -72px -5px;
1380
- }
1381
-
1382
- .icon32.icon-appearance,
1383
- #icon-themes {
1384
- background-color: transparent;
1385
- background-repeat: no-repeat;
1386
- background-position: -11px -5px;
1387
- }
1388
-
1389
- .icon32.icon-plugins,
1390
- #icon-plugins {
1391
- background-color: transparent;
1392
- background-repeat: no-repeat;
1393
- background-position: -370px -5px;
1394
- }
1395
-
1396
- .icon32.icon-users,
1397
- #icon-users,
1398
- #icon-profile,
1399
- #icon-user-edit {
1400
- background-color: transparent;
1401
- background-repeat: no-repeat;
1402
- background-position: -600px -5px;
1403
- }
1404
-
1405
- .icon32.icon-tools,
1406
- #icon-tools,
1407
- #icon-admin {
1408
- background-color: transparent;
1409
- background-repeat: no-repeat;
1410
- background-position: -432px -5px;
1411
- }
1412
-
1413
- .icon32.icon-settings,
1414
- #icon-options-general {
1415
- background-color: transparent;
1416
- background-repeat: no-repeat;
1417
- background-position: -492px -5px;
1418
- }
1419
-
1420
- .icon32.icon-site,
1421
- #icon-ms-admin {
1422
- background-color: transparent;
1423
- background-repeat: no-repeat;
1424
- background-position: -659px -5px;
1425
- }
1426
- /* end screen icons */
1427
-
1428
-
1429
- /* Diff */
1430
- table.diff .diff-deletedline {
1431
- background-color: #fdd;
1432
- }
1433
-
1434
- table.diff .diff-deletedline del {
1435
- background-color: #f99;
1436
- }
1437
-
1438
- table.diff .diff-addedline {
1439
- background-color: #dfd;
1440
- }
1441
-
1442
- table.diff .diff-addedline ins {
1443
- background-color: #9f9;
1444
- }
1445
-
1446
- #att-info {
1447
- background-color: #E4F2FD;
1448
- }
1449
-
1450
- /* edit image */
1451
- #sidemenu a {
1452
- background-color: #eefcf1;
1453
- border-color: #eefcf1;
1454
- border-bottom-color: #dfdfdf;
1455
- }
1456
-
1457
- #sidemenu a.current {
1458
- background-color: #fff;
1459
- border-color: #dfdfdf #dfdfdf #fff;
1460
- color: #D54E21;
1461
- }
1462
-
1463
- #replyerror {
1464
- border-color: #ddd;
1465
- background-color: #eefcf1;
1466
- }
1467
-
1468
- /* table vim shortcuts */
1469
- .vim-current,
1470
- .vim-current th,
1471
- .vim-current td {
1472
- background-color: #E4F2FD !important;
1473
- }
1474
-
1475
- /* Install Plugins */
1476
- .star-average,
1477
- .star.star-rating {
1478
- background-color: #fc0;
1479
- }
1480
-
1481
- div.star.select:hover {
1482
- background-color: #d00;
1483
- }
1484
-
1485
- div.star img {
1486
- border-left: 1px solid #fff;
1487
- border-right: 1px solid #fff;
1488
- }
1489
-
1490
- .widefat div.star img {
1491
- border-left: 1px solid #eefcf1;
1492
- border-right: 1px solid #eefcf1;
1493
- }
1494
-
1495
- #plugin-information .fyi ul {
1496
- background-color: #eaf3fa;
1497
- }
1498
-
1499
- #plugin-information .fyi h2.mainheader {
1500
- background-color: #cee1ef;
1501
- }
1502
-
1503
- #plugin-information pre,
1504
- #plugin-information code {
1505
- background-color: #ededff;
1506
- }
1507
-
1508
- #plugin-information pre {
1509
- border: 1px solid #ccc;
1510
- }
1511
-
1512
- /* inline editor */
1513
- .inline-edit-row fieldset input[type="text"],
1514
- .inline-edit-row fieldset textarea,
1515
- #bulk-titles {
1516
- border-color: #ddd;
1517
- }
1518
-
1519
- .inline-editor div.title {
1520
- background-color: #EAF3FA;
1521
- }
1522
-
1523
- .inline-editor ul.cat-checklist {
1524
- background-color: #fff;
1525
- border-color: #ddd;
1526
- }
1527
-
1528
- .inline-editor .categories .catshow,
1529
- .inline-editor .categories .cathide {
1530
- color: #007700;
1531
- }
1532
-
1533
- .inline-editor .quick-edit-save {
1534
- background-color: #f1f1f1;
1535
- }
1536
-
1537
- fieldset.inline-edit-col-right .inline-edit-col {
1538
- border-color: #dfdfdf;
1539
- }
1540
-
1541
- .attention {
1542
- color: #D54E21;
1543
- }
1544
-
1545
- .meta-box-sortables .postbox:hover .handlediv {
1546
- background-color: transparent;
1547
- background-repeat: no-repeat;
1548
- background-position: 6px 7px;
1549
- }
1550
-
1551
- .tablenav .tablenav-pages {
1552
- color: #555;
1553
- }
1554
-
1555
- .tablenav .tablenav-pages a {
1556
- border-color: #e3e3e3;
1557
- background-color: #eee;
1558
- background-repeat: repeat-x;
1559
- background-attachment: scroll;
1560
- background-position: left -379px;
1561
- }
1562
-
1563
- .tablenav .tablenav-pages a:hover,
1564
- .tablenav .tablenav-pages a:focus {
1565
- color: #d54e21;
1566
- }
1567
-
1568
- .tablenav .tablenav-pages a.disabled,
1569
- .tablenav .tablenav-pages a.disabled:hover,
1570
- .tablenav .tablenav-pages a.disabled:focus {
1571
- color: #aaa;
1572
- }
1573
-
1574
- .tablenav .tablenav-pages .current {
1575
- background: #dfdfdf;
1576
- border-color: #d3d3d3;
1577
- }
1578
-
1579
- #availablethemes,
1580
- #availablethemes td {
1581
- border-color: #ddd;
1582
- }
1583
-
1584
- #current-theme img {
1585
- border-color: #999;
1586
- }
1587
-
1588
- #TB_window #TB_title a.tb-theme-preview-link,
1589
- #TB_window #TB_title a.tb-theme-preview-link:visited {
1590
- color: #999;
1591
- }
1592
-
1593
- #TB_window #TB_title a.tb-theme-preview-link:hover,
1594
- #TB_window #TB_title a.tb-theme-preview-link:focus {
1595
- color: #ccc;
1596
- }
1597
-
1598
- .misc-pub-section {
1599
- border-top-color: #fff;
1600
- border-bottom-color: #dfdfdf;
1601
- }
1602
-
1603
- #minor-publishing {
1604
- border-bottom-color: #dfdfdf;
1605
- }
1606
-
1607
- #post-body .misc-pub-section {
1608
- border-right-color: #eee;
1609
- }
1610
-
1611
- .post-com-count span {
1612
- background-color: #bbb;
1613
- }
1614
-
1615
- .form-table .color-palette td {
1616
- border-color: #fff;
1617
- }
1618
-
1619
- .sortable-placeholder {
1620
- border-color: #bbb;
1621
- background-color: #eefcf1;
1622
- }
1623
-
1624
- #post-body ul.category-tabs li.tabs a,
1625
- #post-body ul.add-menu-item-tabs li.tabs a,
1626
- body.press-this ul.category-tabs li.tabs a {
1627
- color: #333;
1628
- }
1629
-
1630
- .view-switch #view-switch-list {
1631
- background-color: transparent;
1632
- background-repeat: no-repeat;
1633
- background-position: 0 0;
1634
- }
1635
-
1636
- .view-switch .current #view-switch-list {
1637
- background-color: transparent;
1638
- background-repeat: no-repeat;
1639
- background-position: -40px 0;
1640
- }
1641
-
1642
- .view-switch #view-switch-excerpt {
1643
- background-color: transparent;
1644
- background-repeat: no-repeat;
1645
- background-position: -20px 0;
1646
- }
1647
-
1648
- .view-switch .current #view-switch-excerpt {
1649
- background-color: transparent;
1650
- background-repeat: no-repeat;
1651
- background-position: -60px 0;
1652
- }
1653
-
1654
- #header-logo {
1655
- background-color: transparent;
1656
- background-repeat: no-repeat;
1657
- background-attachment: scroll;
1658
- background-position: center center;
1659
- }
1660
-
1661
- .popular-tags,
1662
- .feature-filter {
1663
- background-color: #fff;
1664
- border-color: #DFDFDF;
1665
- }
1666
-
1667
- #theme-information .action-button {
1668
- border-top-color: #DFDFDF;
1669
- }
1670
-
1671
- .theme-listing br.line {
1672
- border-bottom-color: #ccc;
1673
- }
1674
-
1675
- div.widgets-sortables,
1676
- #widgets-left .inactive {
1677
- background-color: #fcfcfc;
1678
- border-color: #dfdfdf;
1679
- }
1680
-
1681
- #available-widgets .widget-holder {
1682
- background-color: #fcfcfc;
1683
- border-color: #dfdfdf;
1684
- }
1685
-
1686
- #available-widgets .widget-description {
1687
- color: #555;
1688
- }
1689
-
1690
- .sidebar-name {
1691
- color: #464646;
1692
- text-shadow: #fff 0 1px 0;
1693
- border-color: #dfdfdf;
1694
- -moz-box-shadow: inset 0 1px 0 #fff;
1695
- -webkit-box-shadow: inset 0 1px 0 #fff;
1696
- box-shadow: inset 0 1px 0 #fff;
1697
- }
1698
-
1699
- .sidebar-name:hover,
1700
- #removing-widget {
1701
- color: #d54e21;
1702
- }
1703
-
1704
- #removing-widget span {
1705
- color: black;
1706
- }
1707
-
1708
- .sidebar-name-arrow {
1709
- background-color: transparent;
1710
- background-repeat: no-repeat;
1711
- background-position: 5px 9px;
1712
- }
1713
-
1714
- .sidebar-name:hover .sidebar-name-arrow {
1715
- background-color: transparent;
1716
- background-repeat: no-repeat;
1717
- background-position: 5px 9px;
1718
- }
1719
-
1720
- .in-widget-title {
1721
- color: #606060;
1722
- }
1723
-
1724
- .deleting .widget-title * {
1725
- color: #aaa;
1726
- }
1727
-
1728
- .imgedit-menu div {
1729
- border-color: #d5d5d5;
1730
- background-color: #f1f1f1;
1731
- }
1732
-
1733
- .imgedit-menu div:hover {
1734
- border-color: #c1c1c1;
1735
- background-color: #eaeaea;
1736
- }
1737
-
1738
- .imgedit-menu div.disabled {
1739
- border-color: #ccc;
1740
- background-color: #ddd;
1741
- filter: alpha(opacity=50);
1742
- opacity: 0.5;
1743
- }
1744
-
1745
- #dashboard_recent_comments div.undo {
1746
- border-top-color: #dfdfdf;
1747
- }
1748
-
1749
- .comment-ays,
1750
- .comment-ays th {
1751
- border-color: #ddd;
1752
- }
1753
-
1754
- .comment-ays th {
1755
- background-color: #f1f1f1;
1756
- }
1757
-
1758
- /* added from nav-menu.css */
1759
- #menu-management .menu-edit {
1760
- border-color: #dfdfdf;
1761
- }
1762
-
1763
- #post-body {
1764
- background: #fff;
1765
- border-top-color: #fff;
1766
- border-bottom-color: #dfdfdf;
1767
- }
1768
-
1769
- #nav-menu-header {
1770
- border-bottom-color: #dfdfdf;
1771
- }
1772
-
1773
- #nav-menu-footer {
1774
- border-top-color: #fff;
1775
- }
1776
-
1777
- #menu-management .nav-tabs-arrow a {
1778
- color: #C1C1C1;
1779
- }
1780
-
1781
- #menu-management .nav-tabs-arrow a:hover {
1782
- color: #D54E21;
1783
- }
1784
-
1785
- #menu-management .nav-tabs-arrow a:active {
1786
- color: #464646;
1787
- }
1788
-
1789
- #menu-management .nav-tab-active {
1790
- border-color: #dfdfdf;
1791
- }
1792
-
1793
- #menu-management .nav-tab {
1794
- background: #fbfbfb;
1795
- border-color: #dfdfdf;
1796
- }
1797
-
1798
- .js .input-with-default-title {
1799
- color: #aaa;
1800
- }
1801
-
1802
- #cancel-save {
1803
- color: #ff0000;
1804
- }
1805
-
1806
- #cancel-save:hover {
1807
- background-color: #FF0000;
1808
- color: #fff;
1809
- }
1810
-
1811
- .list-container {
1812
- border-color: #DFDFDF;
1813
- }
1814
-
1815
- .menu-item-handle {
1816
- border-color: #dfdfdf;
1817
- }
1818
-
1819
- .menu li.deleting .menu-item-handle {
1820
- background-color: #f66;
1821
- text-shadow: #ccc;
1822
- }
1823
-
1824
- .item-type { /* Menu item controls */
1825
- color: #999999;
1826
- }
1827
-
1828
- .item-controls .menu-item-delete:hover {
1829
- color: #ff0000;
1830
- }
1831
-
1832
- .item-edit {
1833
- background-color: transparent;
1834
- background-repeat: no-repeat;
1835
- background-position: 8px 10px;
1836
- border-bottom-color: #eee;
1837
- }
1838
-
1839
- .item-edit:hover {
1840
- background-color: transparent;
1841
- background-repeat: no-repeat;
1842
- background-position: 8px 10px;
1843
- }
1844
-
1845
- .menu-item-settings { /* Menu editing */
1846
- border-color: #dfdfdf;
1847
- }
1848
-
1849
- .link-to-original {
1850
- color: #777;
1851
- border-color: #dfdfdf;
1852
- }
1853
-
1854
- #cancel-save:hover {
1855
- color: #fff !important;
1856
- }
1857
-
1858
- #update-menu-item {
1859
- color: #fff !important;
1860
- }
1861
-
1862
- #update-menu-item:hover,
1863
- #update-menu-item:active,
1864
- #update-menu-item:focus {
1865
- color: #eaf2fa !important;
1866
- border-color: #13455b !important;
1867
- }
1868
-
1869
- .submitbox .submitcancel {
1870
- color: #007700;
1871
- border-bottom-color: #007700;
1872
- }
1873
-
1874
- .submitbox .submitcancel:hover {
1875
- background: #007700;
1876
- color: #fff;
1877
- }
1878
- /* end added from nav-menu.css */
1879
-
1880
- #menu-management .nav-tab-active,
1881
- .menu-item-handle,
1882
- .menu-item-settings {
1883
- -moz-box-shadow: inset 0 1px 0 #fff;
1884
- -webkit-box-shadow: inset 0 1px 0 #fff;
1885
- box-shadow: inset 0 1px 0 #fff;
1886
- }
1887
-
1888
- #menu-management .nav-tab-active {
1889
- background: #eefcf1;
1890
- border-bottom-color: #eefcf1;
1891
- }
1892
-
1893
- /* custom header & background pages */
1894
- #upload-form label {
1895
- color: #777;
1896
- }
1897
- /* custom header & background pages */
1898
-
1899
- /* full screen */
1900
- .fullscreen-overlay {
1901
- background: #fff;
1902
- }
1903
-
1904
- .wp-fullscreen-focus #wp-fullscreen-title,
1905
- .wp-fullscreen-focus #wp-fullscreen-container {
1906
- border-color: #ccc;
1907
- }
1908
-
1909
- #fullscreen-topbar {
1910
- border-bottom-color: #DFDFDF;
1911
- }
1912
-
1913
- /* Begin About Pages */
1914
-
1915
- .about-wrap h1 {
1916
- color: #333;
1917
- text-shadow: 1px 1px 1px white;
1918
- }
1919
-
1920
- .about-text {
1921
- color: #777;
1922
- }
1923
-
1924
- .wp-badge {
1925
- color: #fff;
1926
- text-shadow: 0 -1px 0 #0c3d57;
1927
- border-color: #2B5173;
1928
-
1929
- -moz-box-shadow: inset 0 0 0 1px #5F8CA8;
1930
- -webkit-box-shadow: inset 0 0 0 1px #5F8CA8;
1931
- box-shadow: inset 0 0 0 1px #5F8CA8;
1932
-
1933
- background-color: #378aac;
1934
- }
1935
-
1936
- .about-wrap h2 .nav-tab {
1937
- color: #007700;
1938
- }
1939
- .about-wrap h2 .nav-tab:hover {
1940
- color: #d54e21;
1941
- }
1942
- .about-wrap h2 .nav-tab-active,
1943
- .about-wrap h2 .nav-tab-active:hover {
1944
- color: #333;
1945
- }
1946
- .about-wrap h2 .nav-tab-active {
1947
- text-shadow: 1px 1px 1px white;
1948
- color: #464646;
1949
- }
1950
-
1951
- .about-wrap h3 {
1952
- color: #333;
1953
- text-shadow: 1px 1px 1px white;
1954
- }
1955
-
1956
- .about-wrap .feature-section h4 {
1957
- color: #464646;
1958
- }
1959
-
1960
- .about-wrap .feature-section img {
1961
- background: #eefcf1;
1962
- border-color: #dfdfdf;
1963
-
1964
- -moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1965
- -webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1966
- box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1967
- }
1968
-
1969
- .about-wrap h4.wp-people-group {
1970
- text-shadow: 1px 1px 1px white;
1971
- }
1972
-
1973
- .about-wrap li.wp-person img.gravatar {
1974
- -moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1975
- -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1976
- box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1977
- }
1978
- .about-wrap li.wp-person .title {
1979
- color: #464646;
1980
- text-shadow: 1px 1px 1px white;
1981
- }
1982
-
1983
- .freedoms-php .about-wrap ol li {
1984
- color: #999;
1985
- }
1986
- .freedoms-php .about-wrap ol p {
1987
- color: #464646;
1988
- }
1989
-
1990
- /* End About Pages */
1991
-
1992
-
1993
- /*------------------------------------------------------------------------------
1994
- 2.0 - Right to Left Styles
1995
- ------------------------------------------------------------------------------*/
1996
-
1997
- .rtl .bar {
1998
- border-right-color: none;
1999
- border-left-color: #99d;
2000
- }
2001
-
2002
- .rtl #screen-meta-links a.show-settings {
2003
- background-position: left 3px;
2004
- }
2005
-
2006
- .rtl #screen-meta-links a.show-settings.screen-meta-active {
2007
- background-position: left -33px;
2008
- }
2009
-
2010
- /* Menu */
2011
- .rtl #adminmenushadow,
2012
- .rtl #adminmenuback {
2013
- background-position: top left;
2014
- }
2015
-
2016
- .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
2017
- .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
2018
- background-color: transparent;
2019
- background-repeat: no-repeat;
2020
- background-position: 8px 6px;
2021
- }
2022
-
2023
- .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
2024
- .rtl #adminmenu .wp-menu-open .wp-menu-toggle {
2025
- background-color: transparent;
2026
- background-repeat: no-repeat;
2027
- background-position: 8px 6px;
2028
- }
2029
-
2030
- .rtl #adminmenu .wp-submenu .wp-submenu-head {
2031
- border-right-color: none;
2032
- border-left-color: #dfdfdf;
2033
- }
2034
-
2035
- .rtl .folded #adminmenu .wp-submenu-wrap {
2036
- -moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2037
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2038
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2039
- }
2040
-
2041
- /* Collapse Menu Button */
2042
- .rtl #collapse-button div {
2043
- background-position: 0 -108px;
2044
- }
2045
-
2046
- .rtl .folded #collapse-button div {
2047
- background-position: 0 -72px;
2048
- }
2049
-
2050
- /* Edit Image */
2051
- .rtl .meta-box-sortables .postbox:hover .handlediv {
2052
- background-color: transparent;
2053
- background-repeat: no-repeat;
2054
- background-position: 6px 7px;
2055
- }
2056
-
2057
- .rtl .tablenav .tablenav-pages a {
2058
- border-color: #e3e3e3;
2059
- background-color: #eee;
2060
- background-repeat: repeat-x;
2061
- background-attachment: scroll;
2062
- background-position: right -379px;
2063
- }
2064
-
2065
- .rtl #post-body .misc-pub-section {
2066
- border-right-color: none;
2067
- border-left-color: #eee;
2068
- }
2069
-
2070
- .rtl .sidebar-name-arrow {
2071
- background-color: transparent;
2072
- background-repeat: no-repeat;
2073
- background-position: 5px 9px;
2074
- }
2075
-
2076
- .rtl .sidebar-name:hover .sidebar-name-arrow {
2077
- background-color: transparent;
2078
- background-repeat: no-repeat;
2079
- background-position: 5px 9px;
2080
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/admin/styles/green-34.dev.css DELETED
@@ -1,2080 +0,0 @@
1
-
2
-
3
- /*------------------------------------------------------------------------------
4
-
5
-
6
- Howdy! This is the CSS file that controls the
7
- Green (minty) color style on the WordPress Dashboard.
8
-
9
- This file contains both LTR and RTL styles.
10
-
11
-
12
- TABLE OF CONTENTS:
13
- ------------------
14
- 1.0 - Left to Right Styles
15
- 2.0 - Right to Left Styles
16
-
17
-
18
- ------------------------------------------------------------------------------*/
19
-
20
-
21
- /*------------------------------------------------------------------------------
22
- 1.0 - Left to Right Styles
23
- ------------------------------------------------------------------------------*/
24
-
25
- html,
26
- .wp-dialog {
27
- background-color: #fff;
28
- }
29
-
30
- textarea,
31
- input[type="text"],
32
- input[type="password"],
33
- input[type="file"],
34
- input[type="button"],
35
- input[type="submit"],
36
- input[type="reset"],
37
- input[type="email"],
38
- input[type="number"],
39
- input[type="search"],
40
- input[type="tel"],
41
- input[type="url"],
42
- select {
43
- border-color: #dfdfdf;
44
- background-color: #fff;
45
- }
46
-
47
- textarea:focus,
48
- input[type="text"]:focus,
49
- input[type="password"]:focus,
50
- input[type="file"]:focus,
51
- input[type="button"]:focus,
52
- input[type="submit"]:focus,
53
- input[type="reset"]:focus,
54
- input[type="email"]:focus,
55
- input[type="number"]:focus,
56
- input[type="search"]:focus,
57
- input[type="tel"]:focus,
58
- input[type="url"]:focus,
59
- select:focus {
60
- border-color: #bbb;
61
- }
62
-
63
- kbd,
64
- code {
65
- background: #eaeaea;
66
- }
67
-
68
- input[readonly] {
69
- background-color: #eee;
70
- }
71
-
72
- .find-box-search {
73
- border-color: #dfdfdf;
74
- background-color: #f1f1f1;
75
- }
76
-
77
- .find-box {
78
- background-color: #f1f1f1;
79
- }
80
-
81
- .find-box-inside {
82
- background-color: #fff;
83
- }
84
-
85
- a.page-numbers:hover {
86
- border-color: #999;
87
- }
88
-
89
- body,
90
- #wpbody,
91
- .form-table .pre {
92
- color: #333;
93
- }
94
-
95
- body > #upload-menu {
96
- border-bottom-color: #fff;
97
- }
98
-
99
- #postcustomstuff table,
100
- #your-profile fieldset,
101
- #rightnow,
102
- div.dashboard-widget,
103
- #dashboard-widgets p.dashboard-widget-links {
104
- border-color: #ccc;
105
- }
106
-
107
- #poststuff .inside label.spam,
108
- #poststuff .inside label.deleted {
109
- color: red;
110
- }
111
-
112
- #poststuff .inside label.waiting {
113
- color: orange;
114
- }
115
-
116
- #poststuff .inside label.approved {
117
- color: green;
118
- }
119
-
120
- #postcustomstuff table {
121
- border-color: #dfdfdf;
122
- background-color: #F9F9F9;
123
- }
124
-
125
- #postcustomstuff thead th {
126
- background-color: #F1F1F1;
127
- }
128
-
129
- .widefat {
130
- border-color: #dfdfdf;
131
- background-color: #eefcf1;
132
- }
133
- textarea.widefat {
134
- background-color: #fff;
135
- }
136
-
137
- div.dashboard-widget-error {
138
- background-color: #c43;
139
- }
140
-
141
- div.dashboard-widget-notice {
142
- background-color: #cfe1ef;
143
- }
144
-
145
- div.dashboard-widget-submit {
146
- border-top-color: #ccc;
147
- }
148
-
149
- div.tabs-panel,
150
- .wp-tab-panel,
151
- ul.category-tabs li.tabs,
152
- ul.add-menu-item-tabs li.tabs,
153
- .wp-tab-active {
154
- border-color: #dfdfdf;
155
- background-color: #fff;
156
- }
157
-
158
- ul.category-tabs li.tabs,
159
- ul.add-menu-item-tabs li.tabs,
160
- .wp-tab-active {
161
- background-color: #fff;
162
- }
163
-
164
- input.disabled,
165
- textarea.disabled {
166
- background-color: #ccc;
167
- }
168
- /* #upload-menu li a.upload-tab-link, */
169
- #plugin-information .action-button a,
170
- #plugin-information .action-button a:hover,
171
- #plugin-information .action-button a:visited {
172
- color: #fff;
173
- }
174
-
175
- .widget .widget-top,
176
- .postbox h3,
177
- .stuffbox h3,
178
- .widefat thead tr th,
179
- .widefat tfoot tr th,
180
- h3.dashboard-widget-title,
181
- h3.dashboard-widget-title span,
182
- h3.dashboard-widget-title small,
183
- .find-box-head,
184
- .sidebar-name,
185
- #nav-menu-header,
186
- #nav-menu-footer,
187
- .menu-item-handle,
188
- #fullscreen-topbar {
189
- background-color: #f1f1f1; /* Fallback */
190
- background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
191
- background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
192
- background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
193
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
194
- background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
195
- background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
196
- }
197
-
198
- .widget .widget-top,
199
- .postbox h3,
200
- .stuffbox h3 {
201
- border-bottom-color: #dfdfdf;
202
- text-shadow: #fff 0 1px 0;
203
- -moz-box-shadow: 0 1px 0 #fff;
204
- -webkit-box-shadow: 0 1px 0 #fff;
205
- box-shadow: 0 1px 0 #fff;
206
- }
207
-
208
- .form-table th,
209
- .form-wrap label {
210
- color: #222;
211
- text-shadow: #fff 0 1px 0;
212
- }
213
-
214
- .description,
215
- .form-wrap p {
216
- color: #666;
217
- }
218
-
219
- strong .post-com-count span {
220
- background-color: #007700;
221
- }
222
-
223
- .sorthelper {
224
- background-color: #ccf3fa;
225
- }
226
-
227
- .ac_match,
228
- .subsubsub a.current {
229
- color: #000;
230
- }
231
-
232
- .wrap h2 {
233
- color: #464646;
234
- }
235
-
236
- .wrap .add-new-h2 {
237
- background: #f1f1f1;
238
- }
239
-
240
- .subtitle {
241
- color: #777;
242
- }
243
-
244
- .ac_over {
245
- background-color: #f0f0b8;
246
- }
247
-
248
- .ac_results {
249
- background-color: #fff;
250
- border-color: #6EB469;
251
- }
252
-
253
- .ac_results li {
254
- color: #101010;
255
- }
256
-
257
- .alternate,
258
- .alt {
259
- background-color: #fefefe;
260
- }
261
-
262
- .available-theme a.screenshot {
263
- background-color: #f1f1f1;
264
- border-color: #ddd;
265
- }
266
-
267
- .bar {
268
- background-color: #e8e8e8;
269
- border-right-color: #99d;
270
- }
271
-
272
- #media-upload,
273
- #media-upload .media-item .slidetoggle {
274
- background: #fff;
275
- }
276
-
277
- #media-upload .slidetoggle {
278
- border-top-color: #dfdfdf;
279
- }
280
-
281
- div.error,
282
- .login #login_error {
283
- background-color: #ffebe8;
284
- border-color: #c00;
285
- }
286
-
287
- div.error a {
288
- color: #c00;
289
- }
290
-
291
- .form-invalid {
292
- background-color: #ffebe8 !important;
293
- }
294
-
295
- .form-invalid input,
296
- .form-invalid select {
297
- border-color: #c00 !important;
298
- }
299
-
300
- .submit {
301
- border-color: #DFDFDF;
302
- }
303
-
304
- .highlight {
305
- background-color: #e4f2fd;
306
- color: #000;
307
- }
308
-
309
- .howto,
310
- .nonessential,
311
- #edit-slug-box,
312
- .form-input-tip,
313
- .subsubsub {
314
- color: #666;
315
- }
316
-
317
- #wpbody-content #media-items .describe {
318
- border-top-color: #dfdfdf;
319
- }
320
-
321
- .media-upload-form label.form-help,
322
- td.help {
323
- color: #9a9a9a;
324
- }
325
-
326
- .post-com-count {
327
- color: #fff;
328
- }
329
-
330
- .post-com-count span {
331
- background-color: #bbb;
332
- color: #fff;
333
- }
334
-
335
- .post-com-count:hover span {
336
- background-color: #d54e21;
337
- }
338
-
339
- .quicktags, .search {
340
- background-color: #ccc;
341
- color: #000;
342
- }
343
-
344
- .side-info h5 {
345
- border-bottom-color: #dadada;
346
- }
347
-
348
- .side-info ul {
349
- color: #666;
350
- }
351
-
352
- .button,
353
- .button-secondary,
354
- .submit input,
355
- input[type=button],
356
- input[type=submit] {
357
- border-color: #bbb;
358
- color: #464646;
359
- }
360
-
361
- .button:hover,
362
- .button-secondary:hover,
363
- .submit input:hover,
364
- input[type=button]:hover,
365
- input[type=submit]:hover {
366
- color: #000;
367
- border-color: #666;
368
- }
369
-
370
- .button,
371
- .submit input,
372
- .button-secondary {
373
- background-color: #f2f2f2;
374
- background-repeat: repeat-x;
375
- background-attachment: scroll;
376
- background-position: left top;
377
- text-shadow: rgba(255,255,255,1) 0 1px 0;
378
- }
379
-
380
- .button:active,
381
- .submit input:active,
382
- .button-secondary:active {
383
- background-color: #eee;
384
- background-repeat: repeat-x;
385
- background-attachment: scroll;
386
- background-position: left top;
387
- }
388
-
389
- input.button-primary,
390
- button.button-primary,
391
- a.button-primary {
392
- border-color: #298cba;
393
- font-weight: bold;
394
- color: #fff;
395
- background-image: url('../images/button-grad.png');
396
- background-color: #007700;
397
- background-repeat: repeat-x;
398
- background-attachment: scroll;
399
- background-position: left top;
400
- text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
401
- }
402
-
403
- input.button-primary:active,
404
- button.button-primary:active,
405
- a.button-primary:active {
406
- background-image: url('../images/button-grad-active.png');
407
- background-color: #007700;
408
- background-repeat: repeat-x;
409
- background-attachment: scroll;
410
- background-position: left top;
411
- color: #eaf2fa;
412
- }
413
-
414
- input.button-primary:hover,
415
- button.button-primary:hover,
416
- a.button-primary:hover,
417
- a.button-primary:focus,
418
- a.button-primary:active {
419
- border-color: #13455b;
420
- color: #eaf2fa;
421
- }
422
-
423
- .button-disabled,
424
- .button[disabled],
425
- .button:disabled,
426
- .button-secondary[disabled],
427
- .button-secondary:disabled,
428
- a.button.disabled {
429
- color: #aaa !important;
430
- border-color: #ddd !important;
431
- }
432
-
433
- .button-primary-disabled,
434
- .button-primary[disabled],
435
- .button-primary:disabled {
436
- color: #9FD0D5 !important;
437
- background: #298CBA !important;
438
- }
439
-
440
- a:hover,
441
- a:active,
442
- a:focus {
443
- color: #d54e21;
444
- }
445
-
446
- #adminmenu a:hover,
447
- #adminmenu li.menu-top > a:focus,
448
- #adminmenu ul.wp-submenu a:hover,
449
- #the-comment-list .comment a:hover,
450
- #rightnow a:hover,
451
- #media-upload a.del-link:hover,
452
- div.dashboard-widget-submit input:hover,
453
- .subsubsub a:hover,
454
- .subsubsub a.current:hover,
455
- .ui-tabs-nav a:hover,
456
- .plugins .inactive a:hover,
457
- #all-plugins-table .plugins .inactive a:hover,
458
- #search-plugins-table .plugins .inactive a:hover {
459
- color: #d54e21;
460
- }
461
-
462
- #the-comment-list .comment-item,
463
- #dashboard-widgets #dashboard_quick_press form p.submit {
464
- border-color: #dfdfdf;
465
- }
466
-
467
- #side-sortables .category-tabs .tabs a,
468
- #side-sortables .add-menu-item-tabs .tabs a,
469
- .wp-tab-bar .wp-tab-active a {
470
- color: #333;
471
- }
472
-
473
- #rightnow .rbutton {
474
- background-color: #ebebeb;
475
- color: #264761;
476
- }
477
-
478
- .submitbox .submit {
479
- background-color: #464646;
480
- color: #ccc;
481
- }
482
-
483
- .plugins a.delete:hover,
484
- #all-plugins-table .plugins a.delete:hover,
485
- #search-plugins-table .plugins a.delete:hover,
486
- .submitbox .submitdelete {
487
- color: #f00;
488
- border-bottom-color: #f00;
489
- }
490
-
491
- .submitbox .submitdelete:hover,
492
- #media-items a.delete:hover {
493
- color: #fff;
494
- background-color: #f00;
495
- border-bottom-color: #f00;
496
- }
497
-
498
- #normal-sortables .submitbox .submitdelete:hover {
499
- color: #000;
500
- background-color: #f00;
501
- border-bottom-color: #f00;
502
- }
503
-
504
- .tablenav .dots {
505
- border-color: transparent;
506
- }
507
-
508
- .tablenav .next,
509
- .tablenav .prev {
510
- border-color: transparent;
511
- color: #007700;
512
- }
513
-
514
- .tablenav .next:hover,
515
- .tablenav .prev:hover {
516
- border-color: transparent;
517
- color: #d54e21;
518
- }
519
-
520
- div.updated,
521
- .login .message {
522
- background-color: #ffffe0;
523
- border-color: #e6db55;
524
- }
525
-
526
- .update-message {
527
- color: #000;
528
- }
529
-
530
- a.page-numbers {
531
- border-bottom-color: #B8D3E2;
532
- }
533
-
534
- .commentlist li {
535
- border-bottom-color: #ccc;
536
- }
537
-
538
- .widefat td,
539
- .widefat th {
540
- border-top-color: #fff;
541
- border-bottom-color: #dfdfdf;
542
- }
543
-
544
- .widefat th {
545
- text-shadow: rgba(255,255,255,0.8) 0 1px 0;
546
- }
547
-
548
- .widefat td {
549
- color: #555;
550
- }
551
- .widefat p,
552
- .widefat ol,
553
- .widefat ul {
554
- color: #333;
555
- }
556
-
557
- .widefat thead tr th,
558
- .widefat tfoot tr th,
559
- h3.dashboard-widget-title,
560
- h3.dashboard-widget-title span,
561
- h3.dashboard-widget-title small,
562
- .find-box-head {
563
- color: #333;
564
- }
565
-
566
- th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
567
- color: #333;
568
- }
569
-
570
- h3.dashboard-widget-title small a {
571
- color: #d7d7d7;
572
- }
573
-
574
- h3.dashboard-widget-title small a:hover {
575
- color: #fff;
576
- }
577
-
578
- a,
579
- #adminmenu a,
580
- #the-comment-list p.comment-author strong a,
581
- #media-upload a.del-link,
582
- #media-items a.delete,
583
- .plugins a.delete,
584
- .ui-tabs-nav a {
585
- color: #007700;
586
- }
587
-
588
- #adminmenu .awaiting-mod,
589
- #adminmenu .update-plugins,
590
- #sidemenu a .update-plugins,
591
- #rightnow .reallynow {
592
- background-color: #464646;
593
- color: #fff;
594
- -moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
595
- -khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
596
- -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
597
- box-shadow: rgba(255,255,255,0.5) 0 1px 0;
598
- }
599
- #plugin-information .action-button {
600
- background-color: #d54e21;
601
- color: #fff;
602
- }
603
-
604
- #adminmenu li.current a .awaiting-mod,
605
- #adminmenu li a.wp-has-current-submenu .update-plugins{
606
- background-color: #464646;
607
- color: #fff;
608
- -moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
609
- -khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
610
- -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
611
- box-shadow: rgba(255,255,255,0.5) 0 1px 0;
612
- }
613
-
614
- div#media-upload-header,
615
- div#plugin-information-header {
616
- background-color: #eefcf1;
617
- border-bottom-color: #dfdfdf;
618
- }
619
-
620
- #currenttheme img {
621
- border-color: #666;
622
- }
623
-
624
- #dashboard_secondary div.dashboard-widget-content ul li a {
625
- background-color: #eefcf1;
626
- }
627
-
628
- input.readonly, textarea.readonly {
629
- background-color: #ddd;
630
- }
631
-
632
- #editable-post-name {
633
- background-color: #fffbcc;
634
- }
635
-
636
- #edit-slug-box strong,
637
- .tablenav .displaying-num,
638
- #submitted-on,
639
- .submitted-on {
640
- color: #777;
641
- }
642
-
643
- .login #nav a,
644
- .login #backtoblog a {
645
- color: #007700 !important;
646
- }
647
-
648
- .login #nav a:hover,
649
- .login #backtoblog a:hover {
650
- color: #d54e21 !important;
651
- }
652
-
653
- #footer {
654
- color: #777;
655
- border-color: #dfdfdf;
656
- }
657
-
658
- #media-items,
659
- .imgedit-group,
660
- .media-item {
661
- border-color: #dfdfdf;
662
- }
663
-
664
- .checkbox,
665
- .side-info,
666
- .plugins tr,
667
- #your-profile #rich_editing {
668
- background-color: #fcfcfc;
669
- }
670
-
671
- .plugins .inactive,
672
- .plugins .inactive th,
673
- .plugins .inactive td,
674
- tr.inactive + tr.plugin-update-tr .plugin-update {
675
- background-color: #f4f4f4;
676
- }
677
-
678
- .plugin-update-tr .update-message {
679
- background-color: #fffbe4;
680
- border-color: #dfdfdf;
681
- }
682
-
683
- .plugins .active,
684
- .plugins .active th,
685
- .plugins .active td {
686
- color: #000;
687
- }
688
-
689
- .plugins .inactive a {
690
- color: #557799;
691
- }
692
-
693
- #the-comment-list tr.undo,
694
- #the-comment-list div.undo {
695
- background-color: #f4f4f4;
696
- }
697
-
698
- #the-comment-list .unapproved {
699
- background-color: #ffffe0;
700
- }
701
-
702
- #the-comment-list .approve a {
703
- color: #006505;
704
- }
705
-
706
- #the-comment-list .unapprove a {
707
- color: #d98500;
708
- }
709
-
710
- table.widefat span.delete a,
711
- table.widefat span.trash a,
712
- table.widefat span.spam a,
713
- #dashboard_recent_comments .delete a,
714
- #dashboard_recent_comments .trash a,
715
- #dashboard_recent_comments .spam a {
716
- color: #bc0b0b;
717
- }
718
-
719
- .welcome-panel {
720
- border-color: #dfdfdf;
721
- }
722
- .welcome-panel p {
723
- color: #777;
724
- }
725
- .welcome-panel-column p {
726
- color: #464646;
727
- }
728
- .welcome-panel .welcome-panel-close {
729
- background: #eee;
730
- text-shadow: 1px 1px 1px #eee;
731
- }
732
- .welcome-panel h3 {
733
- text-shadow: 1px 1px 1px white;
734
- }
735
-
736
- .widget,
737
- #widget-list .widget-top,
738
- .postbox,
739
- #titlediv,
740
- #poststuff .postarea,
741
- .stuffbox {
742
- border-color: #dfdfdf;
743
- -moz-box-shadow: inset 0 1px 0 #fff;
744
- -webkit-box-shadow: inset 0 1px 0 #fff;
745
- box-shadow: inset 0 1px 0 #fff;
746
- -moz-border-radius: 3px;
747
- -khtml-border-radius: 3px;
748
- -webkit-border-radius: 3px;
749
- border-radius: 3px;
750
- }
751
-
752
- .widget,
753
- #widget-list .widget-top,
754
- .postbox,
755
- .menu-item-settings {
756
- background-color: #eefcf1; /* Fallback */
757
- background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
758
- background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
759
- background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
760
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
761
- background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
762
- background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
763
- }
764
-
765
- .postbox h3 {
766
- color: #464646;
767
- }
768
-
769
- .widget .widget-top {
770
- color: #222;
771
- }
772
-
773
- .sidebar-name:hover h3,
774
- .postbox h3:hover {
775
- color: #000;
776
- }
777
-
778
- #quicktags #ed_link {
779
- color: #00f;
780
- }
781
-
782
- #rightnow .youhave {
783
- background-color: #f0f6fb;
784
- }
785
-
786
- #rightnow a {
787
- color: #448abd;
788
- }
789
-
790
- .tagchecklist span a,
791
- #bulk-titles div a {
792
-
793
- background-repeat: no-repeat;
794
- }
795
-
796
- .tagchecklist span a:hover,
797
- #bulk-titles div a:hover {
798
- background-repeat: no-repeat;
799
- background-position: -10px 0;
800
- }
801
-
802
- #update-nag, .update-nag {
803
- background-color: #FFFBCC;
804
- border-color: #E6DB55;
805
- color: #555;
806
- }
807
-
808
- #screen-meta {
809
- background-color: #f1f1f1;
810
- border-color: #ccc;
811
- -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
812
- box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
813
- }
814
-
815
- .contextual-help-tabs a:hover {
816
- color: #333;
817
- }
818
-
819
- .contextual-help-sidebar,
820
- .contextual-help-tabs .active {
821
- border-color: #ccc;
822
- }
823
-
824
- .contextual-help-tabs .active,
825
- .contextual-help-tabs .active a,
826
- .contextual-help-tabs .active a:hover {
827
- background: #fff;
828
- color: #000;
829
- }
830
-
831
- .contextual-help-tabs-wrap {
832
- border-color: #ccc;
833
- background-color: #fff;
834
- }
835
-
836
- /* screen options and help tabs */
837
- #screen-options-link-wrap,
838
- #contextual-help-link-wrap {
839
- background-color: #e3e3e3; /* Fallback */
840
- border-right: 1px solid transparent;
841
- border-left: 1px solid transparent;
842
- border-bottom: 1px solid transparent;
843
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
844
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
845
- background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
846
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
847
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
848
- background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
849
- }
850
-
851
- #screen-meta-links a.show-settings {
852
- color: #777;
853
- }
854
-
855
- #screen-meta-links a.show-settings:hover {
856
- color: #000;
857
- }
858
-
859
- #screen-meta-links a.show-settings {
860
- background-color: transparent;
861
- background-repeat: no-repeat;
862
- background-position: right 3px;
863
- }
864
-
865
- #screen-meta-links a.show-settings.screen-meta-active {
866
- background-color: transparent;
867
- background-repeat: no-repeat;
868
- background-position: right -33px;
869
- }
870
-
871
- /* end screen options and help tabs */
872
-
873
- .login #backtoblog a {
874
- color: #464646;
875
- }
876
-
877
- #wphead {
878
- border-bottom:#dfdfdf 1px solid;
879
- }
880
-
881
- #wphead h1 a {
882
- color: #464646;
883
- }
884
-
885
- #footer a:link,
886
- #footer a:visited {
887
- text-decoration: none;
888
- }
889
-
890
- #footer a:hover {
891
- color: #000;
892
- text-decoration: underline;
893
- }
894
-
895
- .file-error,
896
- abbr.required,
897
- .widget-control-remove:hover,
898
- table.widefat .delete a:hover,
899
- table.widefat .trash a:hover,
900
- table.widefat .spam a:hover,
901
- #dashboard_recent_comments .delete a:hover,
902
- #dashboard_recent_comments .trash a:hover
903
- #dashboard_recent_comments .spam a:hover {
904
- color: #f00;
905
- }
906
-
907
- #pass-strength-result {
908
- background-color: #eee;
909
- border-color: #ddd !important;
910
- }
911
-
912
- #pass-strength-result.bad {
913
- background-color: #ffb78c;
914
- border-color: #ff853c !important;
915
- }
916
-
917
- #pass-strength-result.good {
918
- background-color: #ffec8b;
919
- border-color: #fc0 !important;
920
- }
921
-
922
- #pass-strength-result.short {
923
- background-color: #ffa0a0;
924
- border-color: #f04040 !important;
925
- }
926
-
927
- #pass-strength-result.strong {
928
- background-color: #c3ff88;
929
- border-color: #8dff1c !important;
930
- }
931
-
932
- #titlediv #title {
933
- border-color: #ccc;
934
- }
935
-
936
- #post-status-info {
937
- border-color: #dfdfdf #ccc #ccc;
938
- background-color: #eaeaea;
939
- }
940
-
941
- .editwidget .widget-inside {
942
- border-color: #dfdfdf;
943
- }
944
-
945
- #titlediv #title {
946
- background-color: #fff;
947
- }
948
-
949
- #tTips p#tTips_inside {
950
- background-color: #ddd;
951
- color: #333;
952
- }
953
-
954
- #timestampdiv input,
955
- #namediv input,
956
- #poststuff .inside .the-tagcloud {
957
- border-color: #ddd;
958
- }
959
-
960
- /* menu */
961
- #adminmenuback,
962
- #adminmenuwrap {
963
- background-color: #deece1;
964
- border-color: #ccc;
965
- }
966
-
967
- #adminmenushadow,
968
- #adminmenuback {
969
- background-position: top right;
970
- background-repeat: repeat-y;
971
- }
972
-
973
- #adminmenu li.wp-menu-separator {
974
- background: #dfdfdf;
975
- border-color: #cfcfcf;
976
- }
977
-
978
- #adminmenu div.separator {
979
- border-color: #e1e1e1;
980
- }
981
-
982
- #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
983
- #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
984
- background-color: transparent;
985
- background-repeat: no-repeat;
986
- background-position: -1px 6px;
987
- }
988
-
989
- #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
990
- #adminmenu .wp-menu-open .wp-menu-toggle {
991
- background-color: transparent;
992
- background-repeat: no-repeat;
993
- background-position: -2px 6px;
994
- }
995
-
996
- #adminmenu a.menu-top,
997
- .folded #adminmenu li.menu-top,
998
- #adminmenu .wp-submenu .wp-submenu-head {
999
- border-top-color: #eefcf1;
1000
- border-bottom-color: #dfdfdf;
1001
- }
1002
-
1003
- #adminmenu li.wp-menu-open {
1004
- border-color: #dfdfdf;
1005
- }
1006
-
1007
- #adminmenu li.menu-top:hover > a,
1008
- #adminmenu li.menu-top.focused > a,
1009
- #adminmenu li.menu-top > a:focus {
1010
- background-color: #eefcf1;
1011
- text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
1012
- }
1013
-
1014
- #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
1015
- #adminmenu li.current a.menu-top,
1016
- .folded #adminmenu li.wp-has-current-submenu,
1017
- .folded #adminmenu li.current.menu-top,
1018
- #adminmenu .wp-menu-arrow,
1019
- #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1020
- background-color: #777; /* Fallback */
1021
- background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
1022
- background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
1023
- background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
1024
- background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
1025
- background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
1026
- background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
1027
- }
1028
-
1029
- #adminmenu .wp-menu-arrow div {
1030
- background-color: #777; /* Fallback */
1031
- background-image: -ms-linear-gradient(right bottom, #060, #6EB469); /* IE10 */
1032
- background-image: -moz-linear-gradient(right bottom, #060, #6EB469); /* Firefox */
1033
- background-image: -o-linear-gradient(right bottom, #060, #6EB469); /* Opera */
1034
- background-image: -webkit-gradient(linear, right bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
1035
- background-image: -webkit-linear-gradient(right bottom, #060, #6EB469); /* new Webkit */
1036
- background-image: linear-gradient(right bottom, #060, #6EB469); /* proposed W3C Markup */
1037
- }
1038
-
1039
- #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
1040
- border-top-color: #eefcf1;
1041
- border-bottom-color: #dfdfdf;
1042
- background: #eefcf1;
1043
- }
1044
-
1045
- #adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
1046
- background: #eefcf1;
1047
- border-color: #ccc;
1048
- }
1049
-
1050
- .folded #adminmenu li.menu-top li:hover a {
1051
- background-image: none;
1052
- }
1053
-
1054
- #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
1055
- #adminmenu li.current a.menu-top,
1056
- #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1057
- text-shadow: 0 -1px 0 #333;
1058
- color: #fff;
1059
- border-top-color: #6EB469;
1060
- border-bottom-color: #060;
1061
- }
1062
-
1063
- .folded #adminmenu li.wp-has-current-submenu,
1064
- .folded #adminmenu li.current.menu-top {
1065
- border-top-color: #6EB469;
1066
- border-bottom-color: #060;
1067
- }
1068
-
1069
- #adminmenu .wp-submenu a:hover,
1070
- #adminmenu .wp-submenu a:focus {
1071
- background-color: #eefcf1;
1072
- color: #333;
1073
- }
1074
-
1075
- #adminmenu .wp-submenu li.current,
1076
- #adminmenu .wp-submenu li.current a,
1077
- #adminmenu .wp-submenu li.current a:hover {
1078
- color: #333;
1079
- }
1080
-
1081
- #adminmenu .wp-submenu ul {
1082
- background-color: #fff;
1083
- }
1084
-
1085
- #adminmenu .wp-submenu-wrap,
1086
- #adminmenu .wp-submenu ul {
1087
- border-color: #dfdfdf;
1088
- }
1089
-
1090
- #adminmenu .wp-submenu-wrap,
1091
- .folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap {
1092
- -moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1093
- -webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1094
- box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1095
- }
1096
-
1097
- #adminmenu .wp-submenu .wp-submenu-head {
1098
- border-right-color: #dfdfdf;
1099
- background-color: #deece1;
1100
- }
1101
-
1102
- #adminmenu div.wp-submenu {
1103
- background-color: transparent;
1104
- }
1105
-
1106
- /* collapse menu button */
1107
- #collapse-menu {
1108
- color: #aaa;
1109
- }
1110
-
1111
- #collapse-menu:hover {
1112
- color: #999;
1113
- }
1114
-
1115
- #collapse-button {
1116
- border-color: #ccc;
1117
- background-color: #f4f4f4; /* Fallback */
1118
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
1119
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
1120
- background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
1121
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
1122
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
1123
- background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
1124
- }
1125
- #collapse-menu:hover #collapse-button {
1126
- border-color: #aaa;
1127
- }
1128
- #collapse-button div {
1129
- background-color: transparent;
1130
- background-repeat: no-repeat;
1131
- background-position: 0 -72px;
1132
- }
1133
- .folded #collapse-button div {
1134
- background-position: 0 -108px;
1135
- }
1136
-
1137
- /* menu and screen icons */
1138
- .icon16.icon-dashboard,
1139
- #adminmenu .menu-icon-dashboard div.wp-menu-image {
1140
- background-color: transparent;
1141
- background-repeat: no-repeat;
1142
- background-attachment: scroll;
1143
- background-position: -60px -33px;
1144
- }
1145
-
1146
- #adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
1147
- #adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
1148
- #adminmenu .menu-icon-dashboard.current div.wp-menu-image {
1149
- background-color: transparent;
1150
- background-repeat: no-repeat;
1151
- background-attachment: scroll;
1152
- background-position: -60px -1px;
1153
- }
1154
-
1155
- .icon16.icon-post,
1156
- #adminmenu .menu-icon-post div.wp-menu-image {
1157
- background-color: transparent;
1158
- background-repeat: no-repeat;
1159
- background-attachment: scroll;
1160
- background-position: -271px -33px;
1161
- }
1162
-
1163
- #adminmenu .menu-icon-post:hover div.wp-menu-image,
1164
- #adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
1165
- background-color: transparent;
1166
- background-repeat: no-repeat;
1167
- background-attachment: scroll;
1168
- background-position: -271px -33px;
1169
- }
1170
-
1171
- .icon16.icon-media,
1172
- #adminmenu .menu-icon-media div.wp-menu-image {
1173
- background-color: transparent;
1174
- background-repeat: no-repeat;
1175
- background-attachment: scroll;
1176
- background-position: -120px -33px;
1177
- }
1178
-
1179
- #adminmenu .menu-icon-media:hover div.wp-menu-image,
1180
- #adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
1181
- background-color: transparent;
1182
- background-repeat: no-repeat;
1183
- background-attachment: scroll;
1184
- background-position: -120px -1px;
1185
- }
1186
-
1187
- .icon16.icon-links,
1188
- #adminmenu .menu-icon-links div.wp-menu-image {
1189
- background-color: transparent;
1190
- background-repeat: no-repeat;
1191
- background-attachment: scroll;
1192
- background-position: -90px -33px;
1193
- }
1194
-
1195
- #adminmenu .menu-icon-links:hover div.wp-menu-image,
1196
- #adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
1197
- background-color: transparent;
1198
- background-repeat: no-repeat;
1199
- background-attachment: scroll;
1200
- background-position: -90px -1px;
1201
- }
1202
-
1203
- .icon16.icon-page,
1204
- #adminmenu .menu-icon-page div.wp-menu-image {
1205
- background-color: transparent;
1206
- background-repeat: no-repeat;
1207
- background-attachment: scroll;
1208
- background-position: -150px -33px;
1209
- }
1210
-
1211
- #adminmenu .menu-icon-page:hover div.wp-menu-image,
1212
- #adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
1213
- background-color: transparent;
1214
- background-repeat: no-repeat;
1215
- background-attachment: scroll;
1216
- background-position: -150px -1px;
1217
- }
1218
-
1219
- .icon16.icon-comments,
1220
- #adminmenu .menu-icon-comments div.wp-menu-image {
1221
- background-color: transparent;
1222
- background-repeat: no-repeat;
1223
- background-attachment: scroll;
1224
- background-position: -30px -33px;
1225
- }
1226
-
1227
- #adminmenu .menu-icon-comments:hover div.wp-menu-image,
1228
- #adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
1229
- #adminmenu .menu-icon-comments.current div.wp-menu-image {
1230
- background-color: transparent;
1231
- background-repeat: no-repeat;
1232
- background-attachment: scroll;
1233
- background-position: -30px -1px;
1234
- }
1235
-
1236
- .icon16.icon-appearance,
1237
- #adminmenu .menu-icon-appearance div.wp-menu-image {
1238
- background-color: transparent;
1239
- background-repeat: no-repeat;
1240
- background-attachment: scroll;
1241
- background-position: 0 -33px;
1242
- }
1243
-
1244
- #adminmenu .menu-icon-appearance:hover div.wp-menu-image,
1245
- #adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
1246
- background-color: transparent;
1247
- background-repeat: no-repeat;
1248
- background-attachment: scroll;
1249
- background-position: 0 -1px;
1250
- }
1251
-
1252
- .icon16.icon-plugins,
1253
- #adminmenu .menu-icon-plugins div.wp-menu-image {
1254
- background-color: transparent;
1255
- background-repeat: no-repeat;
1256
- background-attachment: scroll;
1257
- background-position: -180px -33px;
1258
- }
1259
-
1260
- #adminmenu .menu-icon-plugins:hover div.wp-menu-image,
1261
- #adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
1262
- background-color: transparent;
1263
- background-repeat: no-repeat;
1264
- background-attachment: scroll;
1265
- background-position: -180px -1px;
1266
- }
1267
-
1268
- .icon16.icon-users,
1269
- #adminmenu .menu-icon-users div.wp-menu-image {
1270
- background-color: transparent;
1271
- background-repeat: no-repeat;
1272
- background-attachment: scroll;
1273
- background-position: -300px -33px;
1274
- }
1275
-
1276
- #adminmenu .menu-icon-users:hover div.wp-menu-image,
1277
- #adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
1278
- #adminmenu .menu-icon-users.current div.wp-menu-image {
1279
- background-color: transparent;
1280
- background-repeat: no-repeat;
1281
- background-attachment: scroll;
1282
- background-position: -300px -1px;
1283
- }
1284
-
1285
- .icon16.icon-tools,
1286
- #adminmenu .menu-icon-tools div.wp-menu-image {
1287
- background-color: transparent;
1288
- background-repeat: no-repeat;
1289
- background-attachment: scroll;
1290
- background-position: -210px -33px;
1291
- }
1292
-
1293
- #adminmenu .menu-icon-tools:hover div.wp-menu-image,
1294
- #adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
1295
- #adminmenu .menu-icon-tools.current div.wp-menu-image {
1296
- background-color: transparent;
1297
- background-repeat: no-repeat;
1298
- background-attachment: scroll;
1299
- background-position: -210px -1px;
1300
- }
1301
-
1302
- .icon16.icon-settings,
1303
- #adminmenu .menu-icon-settings div.wp-menu-image {
1304
- background-color: transparent;
1305
- background-repeat: no-repeat;
1306
- background-attachment: scroll;
1307
- background-position: -240px -33px;
1308
- }
1309
-
1310
- #adminmenu .menu-icon-settings:hover div.wp-menu-image,
1311
- #adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
1312
- background-color: transparent;
1313
- background-repeat: no-repeat;
1314
- background-attachment: scroll;
1315
- background-position: -240px -1px;
1316
- }
1317
-
1318
- .icon16.icon-site,
1319
- #adminmenu .menu-icon-site div.wp-menu-image {
1320
- background-color: transparent;
1321
- background-repeat: no-repeat;
1322
- background-attachment: scroll;
1323
- background-position: -360px -33px;
1324
- }
1325
-
1326
- #adminmenu .menu-icon-site:hover div.wp-menu-image,
1327
- #adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
1328
- background-color: transparent;
1329
- background-repeat: no-repeat;
1330
- background-attachment: scroll;
1331
- background-position: -360px -1px;
1332
- }
1333
- /* end menu and screen icons */
1334
-
1335
- /* Screen Icons */
1336
- .icon32.icon-post,
1337
- #icon-edit,
1338
- #icon-post {
1339
- background-color: transparent;
1340
- background-repeat: no-repeat;
1341
- background-position: -552px -5px;
1342
- }
1343
-
1344
- .icon32.icon-dashboard,
1345
- #icon-index {
1346
- background-color: transparent;
1347
- background-repeat: no-repeat;
1348
- background-position: -137px -5px;
1349
- }
1350
-
1351
- .icon32.icon-media,
1352
- #icon-upload {
1353
- background-color: transparent;
1354
- background-repeat: no-repeat;
1355
- background-position: -251px -5px;
1356
- }
1357
-
1358
- .icon32.icon-links,
1359
- #icon-link-manager,
1360
- #icon-link,
1361
- #icon-link-category {
1362
- background-color: transparent;
1363
- background-repeat: no-repeat;
1364
- background-position: -190px -5px;
1365
- }
1366
-
1367
- .icon32.icon-page,
1368
- #icon-edit-pages,
1369
- #icon-page {
1370
- background-color: transparent;
1371
- background-repeat: no-repeat;
1372
- background-position: -312px -5px;
1373
- }
1374
-
1375
- .icon32.icon-comments,
1376
- #icon-edit-comments {
1377
- background-color: transparent;
1378
- background-repeat: no-repeat;
1379
- background-position: -72px -5px;
1380
- }
1381
-
1382
- .icon32.icon-appearance,
1383
- #icon-themes {
1384
- background-color: transparent;
1385
- background-repeat: no-repeat;
1386
- background-position: -11px -5px;
1387
- }
1388
-
1389
- .icon32.icon-plugins,
1390
- #icon-plugins {
1391
- background-color: transparent;
1392
- background-repeat: no-repeat;
1393
- background-position: -370px -5px;
1394
- }
1395
-
1396
- .icon32.icon-users,
1397
- #icon-users,
1398
- #icon-profile,
1399
- #icon-user-edit {
1400
- background-color: transparent;
1401
- background-repeat: no-repeat;
1402
- background-position: -600px -5px;
1403
- }
1404
-
1405
- .icon32.icon-tools,
1406
- #icon-tools,
1407
- #icon-admin {
1408
- background-color: transparent;
1409
- background-repeat: no-repeat;
1410
- background-position: -432px -5px;
1411
- }
1412
-
1413
- .icon32.icon-settings,
1414
- #icon-options-general {
1415
- background-color: transparent;
1416
- background-repeat: no-repeat;
1417
- background-position: -492px -5px;
1418
- }
1419
-
1420
- .icon32.icon-site,
1421
- #icon-ms-admin {
1422
- background-color: transparent;
1423
- background-repeat: no-repeat;
1424
- background-position: -659px -5px;
1425
- }
1426
- /* end screen icons */
1427
-
1428
-
1429
- /* Diff */
1430
- table.diff .diff-deletedline {
1431
- background-color: #fdd;
1432
- }
1433
-
1434
- table.diff .diff-deletedline del {
1435
- background-color: #f99;
1436
- }
1437
-
1438
- table.diff .diff-addedline {
1439
- background-color: #dfd;
1440
- }
1441
-
1442
- table.diff .diff-addedline ins {
1443
- background-color: #9f9;
1444
- }
1445
-
1446
- #att-info {
1447
- background-color: #E4F2FD;
1448
- }
1449
-
1450
- /* edit image */
1451
- #sidemenu a {
1452
- background-color: #eefcf1;
1453
- border-color: #eefcf1;
1454
- border-bottom-color: #dfdfdf;
1455
- }
1456
-
1457
- #sidemenu a.current {
1458
- background-color: #fff;
1459
- border-color: #dfdfdf #dfdfdf #fff;
1460
- color: #D54E21;
1461
- }
1462
-
1463
- #replyerror {
1464
- border-color: #ddd;
1465
- background-color: #eefcf1;
1466
- }
1467
-
1468
- /* table vim shortcuts */
1469
- .vim-current,
1470
- .vim-current th,
1471
- .vim-current td {
1472
- background-color: #E4F2FD !important;
1473
- }
1474
-
1475
- /* Install Plugins */
1476
- .star-average,
1477
- .star.star-rating {
1478
- background-color: #fc0;
1479
- }
1480
-
1481
- div.star.select:hover {
1482
- background-color: #d00;
1483
- }
1484
-
1485
- div.star img {
1486
- border-left: 1px solid #fff;
1487
- border-right: 1px solid #fff;
1488
- }
1489
-
1490
- .widefat div.star img {
1491
- border-left: 1px solid #eefcf1;
1492
- border-right: 1px solid #eefcf1;
1493
- }
1494
-
1495
- #plugin-information .fyi ul {
1496
- background-color: #eaf3fa;
1497
- }
1498
-
1499
- #plugin-information .fyi h2.mainheader {
1500
- background-color: #cee1ef;
1501
- }
1502
-
1503
- #plugin-information pre,
1504
- #plugin-information code {
1505
- background-color: #ededff;
1506
- }
1507
-
1508
- #plugin-information pre {
1509
- border: 1px solid #ccc;
1510
- }
1511
-
1512
- /* inline editor */
1513
- .inline-edit-row fieldset input[type="text"],
1514
- .inline-edit-row fieldset textarea,
1515
- #bulk-titles {
1516
- border-color: #ddd;
1517
- }
1518
-
1519
- .inline-editor div.title {
1520
- background-color: #EAF3FA;
1521
- }
1522
-
1523
- .inline-editor ul.cat-checklist {
1524
- background-color: #fff;
1525
- border-color: #ddd;
1526
- }
1527
-
1528
- .inline-editor .categories .catshow,
1529
- .inline-editor .categories .cathide {
1530
- color: #007700;
1531
- }
1532
-
1533
- .inline-editor .quick-edit-save {
1534
- background-color: #f1f1f1;
1535
- }
1536
-
1537
- fieldset.inline-edit-col-right .inline-edit-col {
1538
- border-color: #dfdfdf;
1539
- }
1540
-
1541
- .attention {
1542
- color: #D54E21;
1543
- }
1544
-
1545
- .meta-box-sortables .postbox:hover .handlediv {
1546
- background-color: transparent;
1547
- background-repeat: no-repeat;
1548
- background-position: 6px 7px;
1549
- }
1550
-
1551
- .tablenav .tablenav-pages {
1552
- color: #555;
1553
- }
1554
-
1555
- .tablenav .tablenav-pages a {
1556
- border-color: #e3e3e3;
1557
- background-color: #eee;
1558
- background-repeat: repeat-x;
1559
- background-attachment: scroll;
1560
- background-position: left -379px;
1561
- }
1562
-
1563
- .tablenav .tablenav-pages a:hover,
1564
- .tablenav .tablenav-pages a:focus {
1565
- color: #d54e21;
1566
- }
1567
-
1568
- .tablenav .tablenav-pages a.disabled,
1569
- .tablenav .tablenav-pages a.disabled:hover,
1570
- .tablenav .tablenav-pages a.disabled:focus {
1571
- color: #aaa;
1572
- }
1573
-
1574
- .tablenav .tablenav-pages .current {
1575
- background: #dfdfdf;
1576
- border-color: #d3d3d3;
1577
- }
1578
-
1579
- #availablethemes,
1580
- #availablethemes td {
1581
- border-color: #ddd;
1582
- }
1583
-
1584
- #current-theme img {
1585
- border-color: #999;
1586
- }
1587
-
1588
- #TB_window #TB_title a.tb-theme-preview-link,
1589
- #TB_window #TB_title a.tb-theme-preview-link:visited {
1590
- color: #999;
1591
- }
1592
-
1593
- #TB_window #TB_title a.tb-theme-preview-link:hover,
1594
- #TB_window #TB_title a.tb-theme-preview-link:focus {
1595
- color: #ccc;
1596
- }
1597
-
1598
- .misc-pub-section {
1599
- border-top-color: #fff;
1600
- border-bottom-color: #dfdfdf;
1601
- }
1602
-
1603
- #minor-publishing {
1604
- border-bottom-color: #dfdfdf;
1605
- }
1606
-
1607
- #post-body .misc-pub-section {
1608
- border-right-color: #eee;
1609
- }
1610
-
1611
- .post-com-count span {
1612
- background-color: #bbb;
1613
- }
1614
-
1615
- .form-table .color-palette td {
1616
- border-color: #fff;
1617
- }
1618
-
1619
- .sortable-placeholder {
1620
- border-color: #bbb;
1621
- background-color: #eefcf1;
1622
- }
1623
-
1624
- #post-body ul.category-tabs li.tabs a,
1625
- #post-body ul.add-menu-item-tabs li.tabs a,
1626
- body.press-this ul.category-tabs li.tabs a {
1627
- color: #333;
1628
- }
1629
-
1630
- .view-switch #view-switch-list {
1631
- background-color: transparent;
1632
- background-repeat: no-repeat;
1633
- background-position: 0 0;
1634
- }
1635
-
1636
- .view-switch .current #view-switch-list {
1637
- background-color: transparent;
1638
- background-repeat: no-repeat;
1639
- background-position: -40px 0;
1640
- }
1641
-
1642
- .view-switch #view-switch-excerpt {
1643
- background-color: transparent;
1644
- background-repeat: no-repeat;
1645
- background-position: -20px 0;
1646
- }
1647
-
1648
- .view-switch .current #view-switch-excerpt {
1649
- background-color: transparent;
1650
- background-repeat: no-repeat;
1651
- background-position: -60px 0;
1652
- }
1653
-
1654
- #header-logo {
1655
- background-color: transparent;
1656
- background-repeat: no-repeat;
1657
- background-attachment: scroll;
1658
- background-position: center center;
1659
- }
1660
-
1661
- .popular-tags,
1662
- .feature-filter {
1663
- background-color: #fff;
1664
- border-color: #DFDFDF;
1665
- }
1666
-
1667
- #theme-information .action-button {
1668
- border-top-color: #DFDFDF;
1669
- }
1670
-
1671
- .theme-listing br.line {
1672
- border-bottom-color: #ccc;
1673
- }
1674
-
1675
- div.widgets-sortables,
1676
- #widgets-left .inactive {
1677
- background-color: #fcfcfc;
1678
- border-color: #dfdfdf;
1679
- }
1680
-
1681
- #available-widgets .widget-holder {
1682
- background-color: #fcfcfc;
1683
- border-color: #dfdfdf;
1684
- }
1685
-
1686
- #available-widgets .widget-description {
1687
- color: #555;
1688
- }
1689
-
1690
- .sidebar-name {
1691
- color: #464646;
1692
- text-shadow: #fff 0 1px 0;
1693
- border-color: #dfdfdf;
1694
- -moz-box-shadow: inset 0 1px 0 #fff;
1695
- -webkit-box-shadow: inset 0 1px 0 #fff;
1696
- box-shadow: inset 0 1px 0 #fff;
1697
- }
1698
-
1699
- .sidebar-name:hover,
1700
- #removing-widget {
1701
- color: #d54e21;
1702
- }
1703
-
1704
- #removing-widget span {
1705
- color: black;
1706
- }
1707
-
1708
- .sidebar-name-arrow {
1709
- background-color: transparent;
1710
- background-repeat: no-repeat;
1711
- background-position: 5px 9px;
1712
- }
1713
-
1714
- .sidebar-name:hover .sidebar-name-arrow {
1715
- background-color: transparent;
1716
- background-repeat: no-repeat;
1717
- background-position: 5px 9px;
1718
- }
1719
-
1720
- .in-widget-title {
1721
- color: #606060;
1722
- }
1723
-
1724
- .deleting .widget-title * {
1725
- color: #aaa;
1726
- }
1727
-
1728
- .imgedit-menu div {
1729
- border-color: #d5d5d5;
1730
- background-color: #f1f1f1;
1731
- }
1732
-
1733
- .imgedit-menu div:hover {
1734
- border-color: #c1c1c1;
1735
- background-color: #eaeaea;
1736
- }
1737
-
1738
- .imgedit-menu div.disabled {
1739
- border-color: #ccc;
1740
- background-color: #ddd;
1741
- filter: alpha(opacity=50);
1742
- opacity: 0.5;
1743
- }
1744
-
1745
- #dashboard_recent_comments div.undo {
1746
- border-top-color: #dfdfdf;
1747
- }
1748
-
1749
- .comment-ays,
1750
- .comment-ays th {
1751
- border-color: #ddd;
1752
- }
1753
-
1754
- .comment-ays th {
1755
- background-color: #f1f1f1;
1756
- }
1757
-
1758
- /* added from nav-menu.css */
1759
- #menu-management .menu-edit {
1760
- border-color: #dfdfdf;
1761
- }
1762
-
1763
- #post-body {
1764
- background: #fff;
1765
- border-top-color: #fff;
1766
- border-bottom-color: #dfdfdf;
1767
- }
1768
-
1769
- #nav-menu-header {
1770
- border-bottom-color: #dfdfdf;
1771
- }
1772
-
1773
- #nav-menu-footer {
1774
- border-top-color: #fff;
1775
- }
1776
-
1777
- #menu-management .nav-tabs-arrow a {
1778
- color: #C1C1C1;
1779
- }
1780
-
1781
- #menu-management .nav-tabs-arrow a:hover {
1782
- color: #D54E21;
1783
- }
1784
-
1785
- #menu-management .nav-tabs-arrow a:active {
1786
- color: #464646;
1787
- }
1788
-
1789
- #menu-management .nav-tab-active {
1790
- border-color: #dfdfdf;
1791
- }
1792
-
1793
- #menu-management .nav-tab {
1794
- background: #fbfbfb;
1795
- border-color: #dfdfdf;
1796
- }
1797
-
1798
- .js .input-with-default-title {
1799
- color: #aaa;
1800
- }
1801
-
1802
- #cancel-save {
1803
- color: #ff0000;
1804
- }
1805
-
1806
- #cancel-save:hover {
1807
- background-color: #FF0000;
1808
- color: #fff;
1809
- }
1810
-
1811
- .list-container {
1812
- border-color: #DFDFDF;
1813
- }
1814
-
1815
- .menu-item-handle {
1816
- border-color: #dfdfdf;
1817
- }
1818
-
1819
- .menu li.deleting .menu-item-handle {
1820
- background-color: #f66;
1821
- text-shadow: #ccc;
1822
- }
1823
-
1824
- .item-type { /* Menu item controls */
1825
- color: #999999;
1826
- }
1827
-
1828
- .item-controls .menu-item-delete:hover {
1829
- color: #ff0000;
1830
- }
1831
-
1832
- .item-edit {
1833
- background-color: transparent;
1834
- background-repeat: no-repeat;
1835
- background-position: 8px 10px;
1836
- border-bottom-color: #eee;
1837
- }
1838
-
1839
- .item-edit:hover {
1840
- background-color: transparent;
1841
- background-repeat: no-repeat;
1842
- background-position: 8px 10px;
1843
- }
1844
-
1845
- .menu-item-settings { /* Menu editing */
1846
- border-color: #dfdfdf;
1847
- }
1848
-
1849
- .link-to-original {
1850
- color: #777;
1851
- border-color: #dfdfdf;
1852
- }
1853
-
1854
- #cancel-save:hover {
1855
- color: #fff !important;
1856
- }
1857
-
1858
- #update-menu-item {
1859
- color: #fff !important;
1860
- }
1861
-
1862
- #update-menu-item:hover,
1863
- #update-menu-item:active,
1864
- #update-menu-item:focus {
1865
- color: #eaf2fa !important;
1866
- border-color: #13455b !important;
1867
- }
1868
-
1869
- .submitbox .submitcancel {
1870
- color: #007700;
1871
- border-bottom-color: #007700;
1872
- }
1873
-
1874
- .submitbox .submitcancel:hover {
1875
- background: #007700;
1876
- color: #fff;
1877
- }
1878
- /* end added from nav-menu.css */
1879
-
1880
- #menu-management .nav-tab-active,
1881
- .menu-item-handle,
1882
- .menu-item-settings {
1883
- -moz-box-shadow: inset 0 1px 0 #fff;
1884
- -webkit-box-shadow: inset 0 1px 0 #fff;
1885
- box-shadow: inset 0 1px 0 #fff;
1886
- }
1887
-
1888
- #menu-management .nav-tab-active {
1889
- background: #eefcf1;
1890
- border-bottom-color: #eefcf1;
1891
- }
1892
-
1893
- /* custom header & background pages */
1894
- #upload-form label {
1895
- color: #777;
1896
- }
1897
- /* custom header & background pages */
1898
-
1899
- /* full screen */
1900
- .fullscreen-overlay {
1901
- background: #fff;
1902
- }
1903
-
1904
- .wp-fullscreen-focus #wp-fullscreen-title,
1905
- .wp-fullscreen-focus #wp-fullscreen-container {
1906
- border-color: #ccc;
1907
- }
1908
-
1909
- #fullscreen-topbar {
1910
- border-bottom-color: #DFDFDF;
1911
- }
1912
-
1913
- /* Begin About Pages */
1914
-
1915
- .about-wrap h1 {
1916
- color: #333;
1917
- text-shadow: 1px 1px 1px white;
1918
- }
1919
-
1920
- .about-text {
1921
- color: #777;
1922
- }
1923
-
1924
- .wp-badge {
1925
- color: #fff;
1926
- text-shadow: 0 -1px 0 #0c3d57;
1927
- border-color: #2B5173;
1928
-
1929
- -moz-box-shadow: inset 0 0 0 1px #5F8CA8;
1930
- -webkit-box-shadow: inset 0 0 0 1px #5F8CA8;
1931
- box-shadow: inset 0 0 0 1px #5F8CA8;
1932
-
1933
- background-color: #378aac;
1934
- }
1935
-
1936
- .about-wrap h2 .nav-tab {
1937
- color: #007700;
1938
- }
1939
- .about-wrap h2 .nav-tab:hover {
1940
- color: #d54e21;
1941
- }
1942
- .about-wrap h2 .nav-tab-active,
1943
- .about-wrap h2 .nav-tab-active:hover {
1944
- color: #333;
1945
- }
1946
- .about-wrap h2 .nav-tab-active {
1947
- text-shadow: 1px 1px 1px white;
1948
- color: #464646;
1949
- }
1950
-
1951
- .about-wrap h3 {
1952
- color: #333;
1953
- text-shadow: 1px 1px 1px white;
1954
- }
1955
-
1956
- .about-wrap .feature-section h4 {
1957
- color: #464646;
1958
- }
1959
-
1960
- .about-wrap .feature-section img {
1961
- background: #eefcf1;
1962
- border-color: #dfdfdf;
1963
-
1964
- -moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1965
- -webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1966
- box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1967
- }
1968
-
1969
- .about-wrap h4.wp-people-group {
1970
- text-shadow: 1px 1px 1px white;
1971
- }
1972
-
1973
- .about-wrap li.wp-person img.gravatar {
1974
- -moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1975
- -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1976
- box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1977
- }
1978
- .about-wrap li.wp-person .title {
1979
- color: #464646;
1980
- text-shadow: 1px 1px 1px white;
1981
- }
1982
-
1983
- .freedoms-php .about-wrap ol li {
1984
- color: #999;
1985
- }
1986
- .freedoms-php .about-wrap ol p {
1987
- color: #464646;
1988
- }
1989
-
1990
- /* End About Pages */
1991
-
1992
-
1993
- /*------------------------------------------------------------------------------
1994
- 2.0 - Right to Left Styles
1995
- ------------------------------------------------------------------------------*/
1996
-
1997
- .rtl .bar {
1998
- border-right-color: none;
1999
- border-left-color: #99d;
2000
- }
2001
-
2002
- .rtl #screen-meta-links a.show-settings {
2003
- background-position: left 3px;
2004
- }
2005
-
2006
- .rtl #screen-meta-links a.show-settings.screen-meta-active {
2007
- background-position: left -33px;
2008
- }
2009
-
2010
- /* Menu */
2011
- .rtl #adminmenushadow,
2012
- .rtl #adminmenuback {
2013
- background-position: top left;
2014
- }
2015
-
2016
- .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
2017
- .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
2018
- background-color: transparent;
2019
- background-repeat: no-repeat;
2020
- background-position: 8px 6px;
2021
- }
2022
-
2023
- .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
2024
- .rtl #adminmenu .wp-menu-open .wp-menu-toggle {
2025
- background-color: transparent;
2026
- background-repeat: no-repeat;
2027
- background-position: 8px 6px;
2028
- }
2029
-
2030
- .rtl #adminmenu .wp-submenu .wp-submenu-head {
2031
- border-right-color: none;
2032
- border-left-color: #dfdfdf;
2033
- }
2034
-
2035
- .rtl .folded #adminmenu .wp-submenu-wrap {
2036
- -moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2037
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2038
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2039
- }
2040
-
2041
- /* Collapse Menu Button */
2042
- .rtl #collapse-button div {
2043
- background-position: 0 -108px;
2044
- }
2045
-
2046
- .rtl .folded #collapse-button div {
2047
- background-position: 0 -72px;
2048
- }
2049
-
2050
- /* Edit Image */
2051
- .rtl .meta-box-sortables .postbox:hover .handlediv {
2052
- background-color: transparent;
2053
- background-repeat: no-repeat;
2054
- background-position: 6px 7px;
2055
- }
2056
-
2057
- .rtl .tablenav .tablenav-pages a {
2058
- border-color: #e3e3e3;
2059
- background-color: #eee;
2060
- background-repeat: repeat-x;
2061
- background-attachment: scroll;
2062
- background-position: right -379px;
2063
- }
2064
-
2065
- .rtl #post-body .misc-pub-section {
2066
- border-right-color: none;
2067
- border-left-color: #eee;
2068
- }
2069
-
2070
- .rtl .sidebar-name-arrow {
2071
- background-color: transparent;
2072
- background-repeat: no-repeat;
2073
- background-position: 5px 9px;
2074
- }
2075
-
2076
- .rtl .sidebar-name:hover .sidebar-name-arrow {
2077
- background-color: transparent;
2078
- background-repeat: no-repeat;
2079
- background-position: 5px 9px;
2080
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/admin/styles/green-34.min.css DELETED
@@ -1 +0,0 @@
1
- html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{border-color:#dfdfdf;background-color:#fff}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="button"]:focus,input[type="submit"]:focus,input[type="reset"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{border-color:#bbb}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{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}.widefat{border-color:#dfdfdf;background-color:#eefcf1}textarea.widefat{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,.wp-tab-panel,ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}input.disabled,textarea.disabled{background-color:#ccc}#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,.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,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}.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:#070}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#6eb469}.ac_results li{color:#101010}.alternate,.alt{background-color:#fefefe}.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}div.error,.login #login_error{background-color:#ffebe8;border-color:#c00}div.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:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}#wpbody-content #media-items .describe{border-top-color:#dfdfdf}.media-upload-form label.form-help,td.help{color:#9a9a9a}.post-com-count{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-color:#f2f2f2;background-repeat:repeat-x;background-attachment:scroll;background-position:left top;text-shadow:rgba(255,255,255,1) 0 1px 0}.button:active,.submit input:active,.button-secondary:active{background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:left top}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background-image:url('../images/button-grad.png');background-color:#070;background-repeat:repeat-x;background-attachment:scroll;background-position: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-image:url('../images/button-grad-active.png');background-color:#070;background-repeat:repeat-x;background-attachment:scroll;background-position: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}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#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,#side-sortables .add-menu-item-tabs .tabs a,.wp-tab-bar .wp-tab-active 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:#070}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21}div.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{border-top-color:#fff;border-bottom-color:#dfdfdf}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0}.widefat td{color:#555}.widefat p,.widefat ol,.widefat ul{color:#333}.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}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}a,#adminmenu a,#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:#070}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}#plugin-information .action-button{background-color:#d54e21;color:#fff}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#eefcf1;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#eefcf1}input.readonly,textarea.readonly{background-color:#ddd}#editable-post-name{background-color:#fffbcc}#edit-slug-box strong,.tablenav .displaying-num,#submitted-on,.submitted-on{color:#777}.login #nav a,.login #backtoblog a{color:#070!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#footer{color:#777;border-color:#dfdfdf}#media-items,.imgedit-group,.media-item{border-color:#dfdfdf}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fcfcfc}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#f4f4f4}.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}.welcome-panel{border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel .welcome-panel-close{background:#eee;text-shadow:1px 1px 1px #eee}.welcome-panel h3{text-shadow:1px 1px 1px white}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background-color:#eefcf1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.sidebar-name:hover h3,.postbox h3:hover{color:#000}#quicktags #ed_link{color:#00f}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background-repeat:no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background-repeat:no-repeat;background-position:-10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#f1f1f1;border-color:#ccc;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.05)}.contextual-help-tabs a:hover{color:#333}.contextual-help-sidebar,.contextual-help-tabs .active{border-color:#ccc}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}.contextual-help-tabs-wrap{border-color:#ccc;background-color:#fff}#screen-options-link-wrap,#contextual-help-link-wrap{background-color:#e3e3e3;border-right:1px solid transparent;border-left:1px solid transparent;border-bottom:1px solid transparent;background-image:-ms-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(bottom,#dfdfdf,#f1f1f1)}#screen-meta-links a.show-settings{color:#777}#screen-meta-links a.show-settings:hover{color:#000}#screen-meta-links a.show-settings{background-color:transparent;background-repeat:no-repeat;background-position:right 3px}#screen-meta-links a.show-settings.screen-meta-active{background-color:transparent;background-repeat:no-repeat;background-position:right -33px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#footer a:link,#footer a:visited{text-decoration:none}#footer a:hover{color:#000;text-decoration:underline}.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}#titlediv #title{border-color:#ccc}#post-status-info{border-color:#dfdfdf #ccc #ccc;background-color:#eaeaea}.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}#adminmenuback,#adminmenuwrap{background-color:#deece1;border-color:#ccc}#adminmenushadow,#adminmenuback{background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#dfdfdf;border-color:#cfcfcf}#adminmenu div.separator{border-color:#e1e1e1}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:-1px 6px}#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:-2px 6px}#adminmenu a.menu-top,.folded #adminmenu li.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#eefcf1;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top:hover>a,#adminmenu li.menu-top.focused>a,#adminmenu li.menu-top>a:focus{background-color:#eefcf1;text-shadow:0 1px 0 rgba(255,255,255,0.4)}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,#adminmenu .wp-menu-arrow,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:#777;background-image:-ms-linear-gradient(bottom,#060,#6eb469);background-image:-moz-linear-gradient(bottom,#060,#6eb469);background-image:-o-linear-gradient(bottom,#060,#6eb469);background-image:-webkit-gradient(linear,left bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(bottom,#060,#6eb469);background-image:linear-gradient(bottom,#060,#6eb469)}#adminmenu .wp-menu-arrow div{background-color:#777;background-image:-ms-linear-gradient(right bottom,#060,#6eb469);background-image:-moz-linear-gradient(right bottom,#060,#6eb469);background-image:-o-linear-gradient(right bottom,#060,#6eb469);background-image:-webkit-gradient(linear,right bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(right bottom,#060,#6eb469);background-image:linear-gradient(right bottom,#060,#6eb469)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#eefcf1;border-bottom-color:#dfdfdf;background:#eefcf1}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#eefcf1;border-color:#ccc}.folded #adminmenu li.menu-top li:hover a{background-image:none}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{text-shadow:0 -1px 0 #333;color:#fff;border-top-color:#6eb469;border-bottom-color:#060}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#6eb469;border-bottom-color:#060}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eefcf1;color:#333}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{color:#333}#adminmenu .wp-submenu ul{background-color:#fff}#adminmenu .wp-submenu-wrap,#adminmenu .wp-submenu ul{border-color:#dfdfdf}#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0.4);box-shadow:2px 2px 5px rgba(0,0,0,0.4)}#adminmenu .wp-submenu .wp-submenu-head{border-right-color:#dfdfdf;background-color:#deece1}#adminmenu div.wp-submenu{background-color:transparent}#collapse-menu{color:#aaa}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background-color:#f4f4f4;background-image:-ms-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(bottom,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background-color:transparent;background-repeat:no-repeat;background-position:0 -72px}.folded #collapse-button div{background-position:0 -108px}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-60px -33px}#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-dashboard.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-60px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-271px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-271px -33px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-120px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-120px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-90px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-90px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-150px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-150px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-30px -33px}#adminmenu .menu-icon-comments:hover div.wp-menu-image,#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-comments.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-30px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:0 -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:0 -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-180px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-180px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-300px -33px}#adminmenu .menu-icon-users:hover div.wp-menu-image,#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-users.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-210px -33px}#adminmenu .menu-icon-tools:hover div.wp-menu-image,#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-tools.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-210px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-240px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-240px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-360px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-360px -1px}.icon32.icon-post,#icon-edit,#icon-post{background-color:transparent;background-repeat:no-repeat;background-position:-552px -5px}.icon32.icon-dashboard,#icon-index{background-color:transparent;background-repeat:no-repeat;background-position:-137px -5px}.icon32.icon-media,#icon-upload{background-color:transparent;background-repeat:no-repeat;background-position:-251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background-color:transparent;background-repeat:no-repeat;background-position:-190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background-color:transparent;background-repeat:no-repeat;background-position:-312px -5px}.icon32.icon-comments,#icon-edit-comments{background-color:transparent;background-repeat:no-repeat;background-position:-72px -5px}.icon32.icon-appearance,#icon-themes{background-color:transparent;background-repeat:no-repeat;background-position:-11px -5px}.icon32.icon-plugins,#icon-plugins{background-color:transparent;background-repeat:no-repeat;background-position:-370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background-color:transparent;background-repeat:no-repeat;background-position:-600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background-color:transparent;background-repeat:no-repeat;background-position:-432px -5px}.icon32.icon-settings,#icon-options-general{background-color:transparent;background-repeat:no-repeat;background-position:-492px -5px}.icon32.icon-site,#icon-ms-admin{background-color:transparent;background-repeat:no-repeat;background-position:-659px -5px}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:#eefcf1;border-color:#eefcf1;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#eefcf1}.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}div.star img{border-left:1px solid #fff;border-right:1px solid #fff}.widefat div.star img{border-left:1px solid #eefcf1;border-right:1px solid #eefcf1}#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{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:#070}.inline-editor .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.meta-box-sortables .postbox:hover .handlediv{background-color:transparent;background-repeat:no-repeat;background-position:6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:left -379px}.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#d54e21}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:focus{color:#aaa}.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-top-color:#fff;border-bottom-color:#dfdfdf}#minor-publishing{border-bottom-color:#dfdfdf}#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:#eefcf1}#post-body ul.category-tabs li.tabs a,#post-body ul.add-menu-item-tabs li.tabs a,body.press-this ul.category-tabs li.tabs a{color:#333}.view-switch #view-switch-list{background-color:transparent;background-repeat:no-repeat;background-position:0 0}.view-switch .current #view-switch-list{background-color:transparent;background-repeat:no-repeat;background-position:-40px 0}.view-switch #view-switch-excerpt{background-color:transparent;background-repeat:no-repeat;background-position:-20px 0}.view-switch .current #view-switch-excerpt{background-color:transparent;background-repeat:no-repeat;background-position:-60px 0}#header-logo{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center}.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:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-holder{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.sidebar-name:hover,#removing-widget{color:#d54e21}#removing-widget span{color:black}.sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.sidebar-name:hover .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.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}#menu-management .menu-edit{border-color:#dfdfdf}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#dfdfdf}#nav-menu-header{border-bottom-color:#dfdfdf}#nav-menu-footer{border-top-color:#fff}#menu-management .nav-tabs-arrow a{color:#c1c1c1}#menu-management .nav-tabs-arrow a:hover{color:#d54e21}#menu-management .nav-tabs-arrow a:active{color:#464646}#menu-management .nav-tab-active{border-color:#dfdfdf}#menu-management .nav-tab{background:#fbfbfb;border-color:#dfdfdf}.js .input-with-default-title{color:#aaa}#cancel-save{color:#f00}#cancel-save:hover{background-color:#f00;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#dfdfdf}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:#f00}.item-edit{background-color:transparent;background-repeat:no-repeat;background-position:8px 10px;border-bottom-color:#eee}.item-edit:hover{background-color:transparent;background-repeat:no-repeat;background-position:8px 10px}.menu-item-settings{border-color:#dfdfdf}.link-to-original{color:#777;border-color:#dfdfdf}#cancel-save:hover{color:#fff!important}#update-menu-item{color:#fff!important}#update-menu-item:hover,#update-menu-item:active,#update-menu-item:focus{color:#eaf2fa!important;border-color:#13455b!important}.submitbox .submitcancel{color:#070;border-bottom-color:#070}.submitbox .submitcancel:hover{background:#070;color:#fff}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#eefcf1;border-bottom-color:#eefcf1}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf}.about-wrap h1{color:#333;text-shadow:1px 1px 1px white}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 #0c3d57;border-color:#2b5173;-moz-box-shadow:inset 0 0 0 1px #5f8ca8;-webkit-box-shadow:inset 0 0 0 1px #5f8ca8;box-shadow:inset 0 0 0 1px #5f8ca8;background-color:#378aac}.about-wrap h2 .nav-tab{color:#070}.about-wrap h2 .nav-tab:hover{color:#d54e21}.about-wrap h2 .nav-tab-active,.about-wrap h2 .nav-tab-active:hover{color:#333}.about-wrap h2 .nav-tab-active{text-shadow:1px 1px 1px white;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px white}.about-wrap .feature-section h4{color:#464646}.about-wrap .feature-section img{background:#eefcf1;border-color:#dfdfdf;-moz-box-shadow:0 0 6px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3);box-shadow:0 0 6px rgba(0,0,0,0.3)}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px white}.about-wrap li.wp-person img.gravatar{-moz-box-shadow:0 0 4px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);box-shadow:0 0 4px rgba(0,0,0,0.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px white}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:none;border-left-color:#99d}.rtl #screen-meta-links a.show-settings{background-position:left 3px}.rtl #screen-meta-links a.show-settings.screen-meta-active{background-position:left -33px}.rtl #adminmenushadow,.rtl #adminmenuback{background-position:top left}.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:8px 6px}.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:8px 6px}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:none;border-left-color:#dfdfdf}.rtl .folded #adminmenu .wp-submenu-wrap{-moz-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);box-shadow:-2px 2px 5px rgba(0,0,0,0.4)}.rtl #collapse-button div{background-position:0 -108px}.rtl .folded #collapse-button div{background-position:0 -72px}.rtl .meta-box-sortables .postbox:hover .handlediv{background-color:transparent;background-repeat:no-repeat;background-position:6px 7px}.rtl .tablenav .tablenav-pages a{border-color:#e3e3e3;background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:right -379px}.rtl #post-body .misc-pub-section{border-right-color:none;border-left-color:#eee}.rtl .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.rtl .sidebar-name:hover .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}
 
includes/admin/styles/green.css DELETED
@@ -1,2086 +0,0 @@
1
- /*------------------------------------------------------------------------------
2
-
3
-
4
- Howdy! This is the CSS file that controls the
5
- Green (minty) color style on the WordPress Dashboard.
6
-
7
- This file contains both LTR and RTL styles.
8
-
9
-
10
- TABLE OF CONTENTS:
11
- ------------------
12
- 1.0 - Left to Right Styles
13
- 2.0 - Right to Left Styles
14
-
15
-
16
- ------------------------------------------------------------------------------*/
17
-
18
-
19
- /*------------------------------------------------------------------------------
20
- 1.0 - Left to Right Styles
21
- ------------------------------------------------------------------------------*/
22
-
23
- html,
24
- .wp-dialog {
25
- background-color: #fff;
26
- }
27
-
28
- textarea,
29
- input[type="text"],
30
- input[type="password"],
31
- input[type="file"],
32
- input[type="button"],
33
- input[type="submit"],
34
- input[type="reset"],
35
- input[type="email"],
36
- input[type="number"],
37
- input[type="search"],
38
- input[type="tel"],
39
- input[type="url"],
40
- select {
41
- border-color: #dfdfdf;
42
- background-color: #fff;
43
- }
44
-
45
- textarea:focus,
46
- input[type="text"]:focus,
47
- input[type="password"]:focus,
48
- input[type="file"]:focus,
49
- input[type="button"]:focus,
50
- input[type="submit"]:focus,
51
- input[type="reset"]:focus,
52
- input[type="email"]:focus,
53
- input[type="number"]:focus,
54
- input[type="search"]:focus,
55
- input[type="tel"]:focus,
56
- input[type="url"]:focus,
57
- select:focus {
58
- border-color: #bbb;
59
- }
60
-
61
- kbd,
62
- code {
63
- background: #eaeaea;
64
- }
65
-
66
- input[readonly] {
67
- background-color: #eee;
68
- }
69
-
70
- .find-box-search {
71
- border-color: #dfdfdf;
72
- background-color: #f1f1f1;
73
- }
74
-
75
- .find-box {
76
- background-color: #f1f1f1;
77
- }
78
-
79
- .find-box-inside {
80
- background-color: #fff;
81
- }
82
-
83
- a.page-numbers:hover {
84
- border-color: #999;
85
- }
86
-
87
- body,
88
- #wpbody,
89
- .form-table .pre {
90
- color: #555;
91
- }
92
-
93
- body > #upload-menu {
94
- border-bottom-color: #fff;
95
- }
96
-
97
- #postcustomstuff table,
98
- #your-profile fieldset,
99
- #rightnow,
100
- div.dashboard-widget,
101
- #dashboard-widgets p.dashboard-widget-links {
102
- border-color: #ccc;
103
- }
104
-
105
- #poststuff .inside label.spam,
106
- #poststuff .inside label.deleted {
107
- color: red;
108
- }
109
-
110
- #poststuff .inside label.waiting {
111
- color: orange;
112
- }
113
-
114
- #poststuff .inside label.approved {
115
- color: green;
116
- }
117
-
118
- #postcustomstuff table {
119
- border-color: #dfdfdf;
120
- background-color: #F9F9F9;
121
- }
122
-
123
- #postcustomstuff thead th {
124
- background-color: #F1F1F1;
125
- }
126
-
127
- .widefat {
128
- border-color: #dfdfdf;
129
- background-color: #eefcf1;
130
- }
131
- textarea.widefat {
132
- background-color: #fff;
133
- }
134
-
135
- div.dashboard-widget-error {
136
- background-color: #c43;
137
- }
138
-
139
- div.dashboard-widget-notice {
140
- background-color: #cfe1ef;
141
- }
142
-
143
- div.dashboard-widget-submit {
144
- border-top-color: #ccc;
145
- }
146
-
147
- div.tabs-panel,
148
- .wp-tab-panel,
149
- ul.category-tabs li.tabs,
150
- ul.add-menu-item-tabs li.tabs,
151
- .wp-tab-active {
152
- border-color: #dfdfdf;
153
- background-color: #fff;
154
- }
155
-
156
- ul.category-tabs li.tabs,
157
- ul.add-menu-item-tabs li.tabs,
158
- .wp-tab-active {
159
- background-color: #fff;
160
- }
161
-
162
- input.disabled,
163
- textarea.disabled {
164
- background-color: #ccc;
165
- }
166
- /* #upload-menu li a.upload-tab-link, */
167
- #plugin-information .action-button a,
168
- #plugin-information .action-button a:hover,
169
- #plugin-information .action-button a:visited {
170
- color: #fff;
171
- }
172
-
173
- .widget .widget-top,
174
- .postbox h3,
175
- .stuffbox h3,
176
- .widefat thead tr th,
177
- .widefat tfoot tr th,
178
- h3.dashboard-widget-title,
179
- h3.dashboard-widget-title span,
180
- h3.dashboard-widget-title small,
181
- .find-box-head,
182
- .sidebar-name,
183
- #nav-menu-header,
184
- #nav-menu-footer,
185
- .menu-item-handle,
186
- #fullscreen-topbar {
187
- background-color: #f1f1f1; /* Fallback */
188
- background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
189
- background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
190
- background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
191
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
192
- background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
193
- background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
194
- }
195
-
196
- .widget .widget-top,
197
- .postbox h3,
198
- .stuffbox h3 {
199
- border-bottom-color: #dfdfdf;
200
- text-shadow: #fff 0 1px 0;
201
- -moz-box-shadow: 0 1px 0 #fff;
202
- -webkit-box-shadow: 0 1px 0 #fff;
203
- box-shadow: 0 1px 0 #fff;
204
- }
205
-
206
- .form-table th,
207
- .form-wrap label {
208
- color: #222;
209
- text-shadow: #fff 0 1px 0;
210
- }
211
-
212
- .description,
213
- .form-wrap p {
214
- color: #666;
215
- }
216
-
217
- strong .post-com-count span {
218
- background-color: #007700;
219
- }
220
-
221
- .sorthelper {
222
- background-color: #ccf3fa;
223
- }
224
-
225
- .ac_match,
226
- .subsubsub a.current {
227
- color: #000;
228
- }
229
-
230
- .wrap h2 {
231
- color: #464646;
232
- }
233
-
234
- .wrap .add-new-h2 {
235
- background: #f1f1f1;
236
- }
237
-
238
- .subtitle {
239
- color: #777;
240
- }
241
-
242
- .ac_over {
243
- background-color: #f0f0b8;
244
- }
245
-
246
- .ac_results {
247
- background-color: #fff;
248
- border-color: #6EB469;
249
- }
250
-
251
- .ac_results li {
252
- color: #101010;
253
- }
254
-
255
- .alternate,
256
- .alt {
257
- background-color: #fefefe;
258
- }
259
-
260
- .available-theme a.screenshot {
261
- background-color: #f1f1f1;
262
- border-color: #ddd;
263
- }
264
-
265
- .bar {
266
- background-color: #e8e8e8;
267
- border-right-color: #99d;
268
- }
269
-
270
- #media-upload,
271
- #media-upload .media-item .slidetoggle {
272
- background: #fff;
273
- }
274
-
275
- #media-upload .slidetoggle {
276
- border-top-color: #dfdfdf;
277
- }
278
-
279
- div.error,
280
- .login #login_error {
281
- background-color: #ffebe8;
282
- border-color: #c00;
283
- }
284
-
285
- div.error a {
286
- color: #c00;
287
- }
288
-
289
- .form-invalid {
290
- background-color: #ffebe8 !important;
291
- }
292
-
293
- .form-invalid input,
294
- .form-invalid select {
295
- border-color: #c00 !important;
296
- }
297
-
298
- .submit {
299
- border-color: #DFDFDF;
300
- }
301
-
302
- .highlight {
303
- background-color: #e4f2fd;
304
- color: #000;
305
- }
306
-
307
- .howto,
308
- .nonessential,
309
- #edit-slug-box,
310
- .form-input-tip,
311
- .subsubsub {
312
- color: #666;
313
- }
314
-
315
- #wpbody-content #media-items .describe {
316
- border-top-color: #dfdfdf;
317
- }
318
-
319
- .media-upload-form label.form-help,
320
- td.help {
321
- color: #9a9a9a;
322
- }
323
-
324
- .post-com-count {
325
- color: #fff;
326
- }
327
-
328
- .post-com-count span {
329
- background-color: #bbb;
330
- color: #fff;
331
- }
332
-
333
- .post-com-count:hover span {
334
- background-color: #d54e21;
335
- }
336
-
337
- .quicktags, .search {
338
- background-color: #ccc;
339
- color: #000;
340
- }
341
-
342
- .side-info h5 {
343
- border-bottom-color: #dadada;
344
- }
345
-
346
- .side-info ul {
347
- color: #666;
348
- }
349
-
350
- .button,
351
- .button-secondary,
352
- .submit input,
353
- input[type=button],
354
- input[type=submit] {
355
- border-color: #bbb;
356
- color: #464646;
357
- }
358
-
359
- .button:hover,
360
- .button-secondary:hover,
361
- .submit input:hover,
362
- input[type=button]:hover,
363
- input[type=submit]:hover {
364
- color: #000;
365
- border-color: #666;
366
- }
367
-
368
- .button,
369
- .submit input,
370
- .button-secondary {
371
- background-color: #f2f2f2;
372
- background-repeat: repeat-x;
373
- background-attachment: scroll;
374
- background-position: left top;
375
- text-shadow: rgba(255,255,255,1) 0 1px 0;
376
- }
377
-
378
- .button:active,
379
- .submit input:active,
380
- .button-secondary:active {
381
- background-color: #eee;
382
- background-repeat: repeat-x;
383
- background-attachment: scroll;
384
- background-position: left top;
385
- }
386
-
387
- input.button-primary,
388
- button.button-primary,
389
- a.button-primary {
390
- border-color: #298cba;
391
- font-weight: bold;
392
- color: #fff;
393
- background-image: url('../images/button-grad.png');
394
- background-color: #007700;
395
- background-repeat: repeat-x;
396
- background-attachment: scroll;
397
- background-position: left top;
398
- text-shadow: rgba(0,0,0,0.3) 0 -1px 0;
399
- }
400
-
401
- input.button-primary:active,
402
- button.button-primary:active,
403
- a.button-primary:active {
404
- background-image: url('../images/button-grad-active.png');
405
- background-color: #007700;
406
- background-repeat: repeat-x;
407
- background-attachment: scroll;
408
- background-position: left top;
409
- color: #eaf2fa;
410
- }
411
-
412
- input.button-primary:hover,
413
- button.button-primary:hover,
414
- a.button-primary:hover,
415
- a.button-primary:focus,
416
- a.button-primary:active {
417
- border-color: #13455b;
418
- color: #eaf2fa;
419
- }
420
-
421
- .button-disabled,
422
- .button[disabled],
423
- .button:disabled,
424
- .button-secondary[disabled],
425
- .button-secondary:disabled,
426
- a.button.disabled {
427
- color: #aaa !important;
428
- border-color: #ddd !important;
429
- }
430
-
431
- .button-primary-disabled,
432
- .button-primary[disabled],
433
- .button-primary:disabled {
434
- color: #9FD0D5 !important;
435
- background: #298CBA !important;
436
- }
437
-
438
- a:hover,
439
- a:active,
440
- a:focus {
441
- color: #d54e21;
442
- }
443
-
444
- #adminmenu a:hover,
445
- #adminmenu li.menu-top > a:focus,
446
- #adminmenu ul.wp-submenu a:hover,
447
- #the-comment-list .comment a:hover,
448
- #rightnow a:hover,
449
- #media-upload a.del-link:hover,
450
- div.dashboard-widget-submit input:hover,
451
- .subsubsub a:hover,
452
- .subsubsub a.current:hover,
453
- .ui-tabs-nav a:hover,
454
- .plugins .inactive a:hover,
455
- #all-plugins-table .plugins .inactive a:hover,
456
- #search-plugins-table .plugins .inactive a:hover {
457
- color: #d54e21;
458
- }
459
-
460
- #the-comment-list .comment-item,
461
- #dashboard-widgets #dashboard_quick_press form p.submit {
462
- border-color: #dfdfdf;
463
- }
464
-
465
- #side-sortables .category-tabs .tabs a,
466
- #side-sortables .add-menu-item-tabs .tabs a,
467
- .wp-tab-bar .wp-tab-active a {
468
- color: #333;
469
- }
470
-
471
- #rightnow .rbutton {
472
- background-color: #ebebeb;
473
- color: #264761;
474
- }
475
-
476
- .submitbox .submit {
477
- background-color: #464646;
478
- color: #ccc;
479
- }
480
-
481
- .plugins a.delete:hover,
482
- #all-plugins-table .plugins a.delete:hover,
483
- #search-plugins-table .plugins a.delete:hover,
484
- .submitbox .submitdelete {
485
- color: #f00;
486
- border-bottom-color: #f00;
487
- }
488
-
489
- .submitbox .submitdelete:hover,
490
- #media-items a.delete:hover {
491
- color: #fff;
492
- background-color: #f00;
493
- border-bottom-color: #f00;
494
- }
495
-
496
- #normal-sortables .submitbox .submitdelete:hover {
497
- color: #000;
498
- background-color: #f00;
499
- border-bottom-color: #f00;
500
- }
501
-
502
- .tablenav .dots {
503
- border-color: transparent;
504
- }
505
-
506
- .tablenav .next,
507
- .tablenav .prev {
508
- border-color: transparent;
509
- color: #007700;
510
- }
511
-
512
- .tablenav .next:hover,
513
- .tablenav .prev:hover {
514
- border-color: transparent;
515
- color: #d54e21;
516
- }
517
-
518
- div.updated,
519
- .login .message {
520
- background-color: #ffffe0;
521
- border-color: #e6db55;
522
- }
523
-
524
- .update-message {
525
- color: #000;
526
- }
527
-
528
- a.page-numbers {
529
- border-bottom-color: #B8D3E2;
530
- }
531
-
532
- .commentlist li {
533
- border-bottom-color: #ccc;
534
- }
535
-
536
- .widefat td,
537
- .widefat th {
538
- border-top-color: #fff;
539
- border-bottom-color: #dfdfdf;
540
- }
541
-
542
- .widefat th {
543
- text-shadow: rgba(255,255,255,0.8) 0 1px 0;
544
- }
545
-
546
- .widefat td {
547
- color: #555;
548
- }
549
- .widefat p,
550
- .widefat ol,
551
- .widefat ul {
552
- color: #333;
553
- }
554
-
555
- .widefat thead tr th,
556
- .widefat tfoot tr th,
557
- h3.dashboard-widget-title,
558
- h3.dashboard-widget-title span,
559
- h3.dashboard-widget-title small,
560
- .find-box-head {
561
- color: #333;
562
- }
563
-
564
- th.sortable a:hover, th.sortable a:active, th.sortable a:focus {
565
- color: #333;
566
- }
567
-
568
- h3.dashboard-widget-title small a {
569
- color: #d7d7d7;
570
- }
571
-
572
- h3.dashboard-widget-title small a:hover {
573
- color: #fff;
574
- }
575
-
576
- a,
577
- #adminmenu a,
578
- #the-comment-list p.comment-author strong a,
579
- #media-upload a.del-link,
580
- #media-items a.delete,
581
- .plugins a.delete,
582
- .ui-tabs-nav a {
583
- color: #007700;
584
- }
585
-
586
- #adminmenu .awaiting-mod,
587
- #adminmenu .update-plugins,
588
- #sidemenu a .update-plugins,
589
- #rightnow .reallynow {
590
- background-color: #464646;
591
- color: #fff;
592
- -moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
593
- -khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
594
- -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
595
- box-shadow: rgba(255,255,255,0.5) 0 1px 0;
596
- }
597
- #plugin-information .action-button {
598
- background-color: #d54e21;
599
- color: #fff;
600
- }
601
-
602
- #adminmenu li.current a .awaiting-mod,
603
- #adminmenu li a.wp-has-current-submenu .update-plugins{
604
- background-color: #464646;
605
- color: #fff;
606
- -moz-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
607
- -khtml-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
608
- -webkit-box-shadow: rgba(255,255,255,0.5) 0 1px 0;
609
- box-shadow: rgba(255,255,255,0.5) 0 1px 0;
610
- }
611
-
612
- div#media-upload-header,
613
- div#plugin-information-header {
614
- background-color: #eefcf1;
615
- border-bottom-color: #dfdfdf;
616
- }
617
-
618
- #currenttheme img {
619
- border-color: #666;
620
- }
621
-
622
- #dashboard_secondary div.dashboard-widget-content ul li a {
623
- background-color: #eefcf1;
624
- }
625
-
626
- input.readonly, textarea.readonly {
627
- background-color: #ddd;
628
- }
629
-
630
- #editable-post-name {
631
- background-color: #fffbcc;
632
- }
633
-
634
- #edit-slug-box strong,
635
- .tablenav .displaying-num,
636
- #submitted-on,
637
- .submitted-on {
638
- color: #777;
639
- }
640
-
641
- .login #nav a,
642
- .login #backtoblog a {
643
- color: #007700 !important;
644
- }
645
-
646
- .login #nav a:hover,
647
- .login #backtoblog a:hover {
648
- color: #d54e21 !important;
649
- }
650
-
651
- #footer {
652
- color: #777;
653
- border-color: #dfdfdf;
654
- }
655
-
656
- #media-items,
657
- .imgedit-group,
658
- .media-item {
659
- border-color: #dfdfdf;
660
- }
661
-
662
- .checkbox,
663
- .side-info,
664
- .plugins tr,
665
- #your-profile #rich_editing {
666
- background-color: #fcfcfc;
667
- }
668
-
669
- .plugins .inactive,
670
- .plugins .inactive th,
671
- .plugins .inactive td,
672
- tr.inactive + tr.plugin-update-tr .plugin-update {
673
- background-color: #f4f4f4;
674
- }
675
-
676
- .plugin-update-tr .update-message {
677
- background-color: #fffbe4;
678
- border-color: #dfdfdf;
679
- }
680
-
681
- .plugins .active,
682
- .plugins .active th,
683
- .plugins .active td {
684
- color: #000;
685
- }
686
-
687
- .plugins .inactive a {
688
- color: #557799;
689
- }
690
-
691
- #the-comment-list tr.undo,
692
- #the-comment-list div.undo {
693
- background-color: #f4f4f4;
694
- }
695
-
696
- #the-comment-list .unapproved {
697
- background-color: #ffffe0;
698
- }
699
-
700
- #the-comment-list .approve a {
701
- color: #006505;
702
- }
703
-
704
- #the-comment-list .unapprove a {
705
- color: #d98500;
706
- }
707
-
708
- table.widefat span.delete a,
709
- table.widefat span.trash a,
710
- table.widefat span.spam a,
711
- #dashboard_recent_comments .delete a,
712
- #dashboard_recent_comments .trash a,
713
- #dashboard_recent_comments .spam a {
714
- color: #bc0b0b;
715
- }
716
-
717
- .welcome-panel {
718
- border-color: #dfdfdf;
719
- }
720
- .welcome-panel p {
721
- color: #777;
722
- }
723
- .welcome-panel-column p {
724
- color: #464646;
725
- }
726
- .welcome-panel .welcome-panel-close {
727
- background: #eee;
728
- text-shadow: 1px 1px 1px #eee;
729
- }
730
- .welcome-panel h3 {
731
- text-shadow: 1px 1px 1px white;
732
- }
733
-
734
- .widget,
735
- #widget-list .widget-top,
736
- .postbox,
737
- #titlediv,
738
- #poststuff .postarea,
739
- .stuffbox {
740
- border-color: #dfdfdf;
741
- -moz-box-shadow: inset 0 1px 0 #fff;
742
- -webkit-box-shadow: inset 0 1px 0 #fff;
743
- box-shadow: inset 0 1px 0 #fff;
744
- -moz-border-radius: 3px;
745
- -khtml-border-radius: 3px;
746
- -webkit-border-radius: 3px;
747
- border-radius: 3px;
748
- }
749
-
750
- .widget,
751
- #widget-list .widget-top,
752
- .postbox,
753
- .menu-item-settings {
754
- background-color: #eefcf1; /* Fallback */
755
- background-image: -ms-linear-gradient(top, #eefcf1, #deece1); /* IE10 */
756
- background-image: -moz-linear-gradient(top, #eefcf1, #deece1); /* Firefox */
757
- background-image: -o-linear-gradient(top, #eefcf1, #deece1); /* Opera */
758
- background-image: -webkit-gradient(linear, left top, left bottom, from(#eefcf1), to(#deece1)); /* old Webkit */
759
- background-image: -webkit-linear-gradient(top, #eefcf1, #deece1); /* new Webkit */
760
- background-image: linear-gradient(top, #eefcf1, #deece1); /* proposed W3C Markup */
761
- }
762
-
763
- .postbox h3 {
764
- color: #464646;
765
- }
766
-
767
- .widget .widget-top {
768
- color: #222;
769
- }
770
-
771
- .sidebar-name:hover h3,
772
- .postbox h3:hover {
773
- color: #000;
774
- }
775
-
776
- #quicktags #ed_link {
777
- color: #00f;
778
- }
779
-
780
- #rightnow .youhave {
781
- background-color: #f0f6fb;
782
- }
783
-
784
- #rightnow a {
785
- color: #448abd;
786
- }
787
-
788
- .tagchecklist span a,
789
- #bulk-titles div a {
790
-
791
- background-repeat: no-repeat;
792
- }
793
-
794
- .tagchecklist span a:hover,
795
- #bulk-titles div a:hover {
796
- background-repeat: no-repeat;
797
- background-position: -10px 0;
798
- }
799
-
800
- #update-nag, .update-nag {
801
- background-color: #FFFBCC;
802
- border-color: #E6DB55;
803
- color: #555;
804
- }
805
-
806
- #screen-meta {
807
- background-color: #f1f1f1;
808
- border-color: #ccc;
809
- -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
810
- box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.05 );
811
- }
812
-
813
- .contextual-help-tabs a:hover {
814
- color: #333;
815
- }
816
-
817
- .contextual-help-sidebar,
818
- .contextual-help-tabs .active {
819
- border-color: #ccc;
820
- }
821
-
822
- .contextual-help-tabs .active,
823
- .contextual-help-tabs .active a,
824
- .contextual-help-tabs .active a:hover {
825
- background: #fff;
826
- color: #000;
827
- }
828
-
829
- .contextual-help-tabs-wrap {
830
- border-color: #ccc;
831
- background-color: #fff;
832
- }
833
-
834
- /* screen options and help tabs */
835
- #screen-options-link-wrap,
836
- #contextual-help-link-wrap {
837
- background-color: #e3e3e3; /* Fallback */
838
- border-right: 1px solid transparent;
839
- border-left: 1px solid transparent;
840
- border-bottom: 1px solid transparent;
841
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* IE10 */
842
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Firefox */
843
- background-image: -o-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* Opera */
844
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#f1f1f1)); /* old Webkit */
845
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #f1f1f1); /* new Webkit */
846
- background-image: linear-gradient(bottom, #dfdfdf, #f1f1f1); /* proposed W3C Markup */
847
- }
848
-
849
- #screen-meta-links a.show-settings {
850
- color: #777;
851
- }
852
-
853
- #screen-meta-links a.show-settings:hover {
854
- color: #000;
855
- }
856
-
857
- #screen-meta-links a.show-settings {
858
- background-color: transparent;
859
- background-repeat: no-repeat;
860
- background-position: right 3px;
861
- }
862
-
863
- #screen-meta-links a.show-settings.screen-meta-active {
864
- background-color: transparent;
865
- background-repeat: no-repeat;
866
- background-position: right -33px;
867
- }
868
-
869
- /* end screen options and help tabs */
870
-
871
- .login #backtoblog a {
872
- color: #464646;
873
- }
874
-
875
- #wphead {
876
- border-bottom:#dfdfdf 1px solid;
877
- }
878
-
879
- #wphead h1 a {
880
- color: #464646;
881
- }
882
-
883
- #footer a:link,
884
- #footer a:visited {
885
- text-decoration: none;
886
- }
887
-
888
- #footer a:hover {
889
- color: #000;
890
- text-decoration: underline;
891
- }
892
-
893
- .file-error,
894
- abbr.required,
895
- .widget-control-remove:hover,
896
- table.widefat .delete a:hover,
897
- table.widefat .trash a:hover,
898
- table.widefat .spam a:hover,
899
- #dashboard_recent_comments .delete a:hover,
900
- #dashboard_recent_comments .trash a:hover
901
- #dashboard_recent_comments .spam a:hover {
902
- color: #f00;
903
- }
904
-
905
- #pass-strength-result {
906
- background-color: #eee;
907
- border-color: #ddd !important;
908
- }
909
-
910
- #pass-strength-result.bad {
911
- background-color: #ffb78c;
912
- border-color: #ff853c !important;
913
- }
914
-
915
- #pass-strength-result.good {
916
- background-color: #ffec8b;
917
- border-color: #fc0 !important;
918
- }
919
-
920
- #pass-strength-result.short {
921
- background-color: #ffa0a0;
922
- border-color: #f04040 !important;
923
- }
924
-
925
- #pass-strength-result.strong {
926
- background-color: #c3ff88;
927
- border-color: #8dff1c !important;
928
- }
929
-
930
- #titlediv #title {
931
- border-color: #ccc;
932
- }
933
-
934
- #post-status-info {
935
- border-color: #dfdfdf #ccc #ccc;
936
- background-color: #eaeaea;
937
- }
938
-
939
- .editwidget .widget-inside {
940
- border-color: #dfdfdf;
941
- }
942
-
943
- #titlediv #title {
944
- background-color: #fff;
945
- }
946
-
947
- #tTips p#tTips_inside {
948
- background-color: #ddd;
949
- color: #333;
950
- }
951
-
952
- #timestampdiv input,
953
- #namediv input,
954
- #poststuff .inside .the-tagcloud {
955
- border-color: #ddd;
956
- }
957
-
958
- /* menu */
959
- #adminmenuback,
960
- #adminmenuwrap {
961
- background-color: #deece1;
962
- border-color: #ccc;
963
- }
964
-
965
- #adminmenushadow,
966
- #adminmenuback {
967
- background-position: top right;
968
- background-repeat: repeat-y;
969
- }
970
-
971
- #adminmenu li.wp-menu-separator {
972
- background: #dfdfdf;
973
- border-color: #cfcfcf;
974
- }
975
-
976
- #adminmenu div.separator {
977
- border-color: #e1e1e1;
978
- }
979
-
980
- #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
981
- #adminmenu li.wp-has-current-submenu.opensub .wp-menu-toggle,
982
- #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
983
- background-color: transparent;
984
- background-repeat: no-repeat;
985
- background-position: -1px 6px;
986
- }
987
-
988
- #adminmenu .wp-has-submenu.opensub .wp-menu-toggle,
989
- #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
990
- #adminmenu .wp-menu-open .wp-menu-toggle {
991
- background-color: transparent;
992
- background-repeat: no-repeat;
993
- background-position: -2px 6px;
994
- }
995
-
996
- #adminmenu a.menu-top,
997
- .folded #adminmenu li.menu-top,
998
- #adminmenu .wp-submenu .wp-submenu-head {
999
- border-top-color: #eefcf1;
1000
- border-bottom-color: #dfdfdf;
1001
- }
1002
-
1003
- #adminmenu li.wp-menu-open {
1004
- border-color: #dfdfdf;
1005
- }
1006
-
1007
- #adminmenu li.menu-top.opensub > a,
1008
- #adminmenu li.menu-top:hover > a,
1009
- #adminmenu li.menu-top.focused > a,
1010
- #adminmenu li.menu-top > a:focus {
1011
- background-color: #eefcf1;
1012
- text-shadow: 0 1px 0 rgba( 255, 255, 255, 0.4 );
1013
- }
1014
-
1015
- #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
1016
- #adminmenu li.current a.menu-top,
1017
- .folded #adminmenu li.wp-has-current-submenu,
1018
- .folded #adminmenu li.current.menu-top,
1019
- #adminmenu .wp-menu-arrow,
1020
- #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1021
- background-color: #777; /* Fallback */
1022
- background-image: -ms-linear-gradient(bottom, #060, #6EB469); /* IE10 */
1023
- background-image: -moz-linear-gradient(bottom, #060, #6EB469); /* Firefox */
1024
- background-image: -o-linear-gradient(bottom, #060, #6EB469); /* Opera */
1025
- background-image: -webkit-gradient(linear, left bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
1026
- background-image: -webkit-linear-gradient(bottom, #060, #6EB469); /* new Webkit */
1027
- background-image: linear-gradient(bottom, #060, #6EB469); /* proposed W3C Markup */
1028
- }
1029
-
1030
- #adminmenu .wp-menu-arrow div {
1031
- background-color: #777; /* Fallback */
1032
- background-image: -ms-linear-gradient(right bottom, #060, #6EB469); /* IE10 */
1033
- background-image: -moz-linear-gradient(right bottom, #060, #6EB469); /* Firefox */
1034
- background-image: -o-linear-gradient(right bottom, #060, #6EB469); /* Opera */
1035
- background-image: -webkit-gradient(linear, right bottom, left top, from(#060), to(#6EB469)); /* old Webkit */
1036
- background-image: -webkit-linear-gradient(right bottom, #060, #6EB469); /* new Webkit */
1037
- background-image: linear-gradient(right bottom, #060, #6EB469); /* proposed W3C Markup */
1038
- }
1039
-
1040
- #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
1041
- border-top-color: #eefcf1;
1042
- border-bottom-color: #dfdfdf;
1043
- background: #eefcf1;
1044
- }
1045
-
1046
- #adminmenu li.wp-not-current-submenu .wp-menu-arrow div {
1047
- background: #eefcf1;
1048
- border-color: #ccc;
1049
- }
1050
-
1051
- .folded #adminmenu li.menu-top li.opensub a,
1052
- .folded #adminmenu li.menu-top li:hover a {
1053
- background-image: none;
1054
- }
1055
-
1056
- #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,
1057
- #adminmenu li.current a.menu-top,
1058
- #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head {
1059
- text-shadow: 0 -1px 0 #333;
1060
- color: #fff;
1061
- border-top-color: #6EB469;
1062
- border-bottom-color: #060;
1063
- }
1064
-
1065
- .folded #adminmenu li.wp-has-current-submenu,
1066
- .folded #adminmenu li.current.menu-top {
1067
- border-top-color: #6EB469;
1068
- border-bottom-color: #060;
1069
- }
1070
-
1071
- #adminmenu .wp-submenu a:hover,
1072
- #adminmenu .wp-submenu a:focus {
1073
- background-color: #eefcf1;
1074
- color: #333;
1075
- }
1076
-
1077
- #adminmenu .wp-submenu li.current,
1078
- #adminmenu .wp-submenu li.current a,
1079
- #adminmenu .wp-submenu li.current a:hover {
1080
- color: #333;
1081
- }
1082
-
1083
- #adminmenu .wp-submenu ul {
1084
- background-color: #fff;
1085
- }
1086
-
1087
- #adminmenu .wp-submenu-wrap,
1088
- #adminmenu .wp-submenu ul {
1089
- border-color: #dfdfdf;
1090
- }
1091
-
1092
- #adminmenu .wp-submenu-wrap,
1093
- .folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap {
1094
- -moz-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1095
- -webkit-box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1096
- box-shadow: 2px 2px 5px rgba( 0, 0, 0, 0.4 );
1097
- background: #f9f9f9;
1098
- }
1099
-
1100
- #adminmenu .wp-submenu .wp-submenu-head {
1101
- border-right-color: #dfdfdf;
1102
- background-color: #deece1;
1103
- }
1104
-
1105
- #adminmenu div.wp-submenu {
1106
- background-color: transparent;
1107
- }
1108
-
1109
- /* collapse menu button */
1110
- #collapse-menu {
1111
- color: #aaa;
1112
- border-color: transparent;
1113
- }
1114
-
1115
- #collapse-menu:hover {
1116
- color: #999;
1117
- }
1118
-
1119
- #collapse-button {
1120
- border-color: #ccc;
1121
- background-color: #f4f4f4; /* Fallback */
1122
- background-image: -ms-linear-gradient(bottom, #dfdfdf, #fff); /* IE10 */
1123
- background-image: -moz-linear-gradient(bottom, #dfdfdf, #fff); /* Firefox */
1124
- background-image: -o-linear-gradient(bottom, #dfdfdf, #fff); /* Opera */
1125
- background-image: -webkit-gradient(linear, left bottom, left top, from(#dfdfdf), to(#fff)); /* old Webkit */
1126
- background-image: -webkit-linear-gradient(bottom, #dfdfdf, #fff); /* new Webkit */
1127
- background-image: linear-gradient(bottom, #dfdfdf, #fff); /* proposed W3C Markup */
1128
- }
1129
- #collapse-menu:hover #collapse-button {
1130
- border-color: #aaa;
1131
- }
1132
- #collapse-button div {
1133
- background-color: transparent;
1134
- background-repeat: no-repeat;
1135
- background-position: 0 -72px;
1136
- }
1137
- .folded #collapse-button div {
1138
- background-position: 0 -108px;
1139
- }
1140
-
1141
- /* menu and screen icons */
1142
- .icon16.icon-dashboard,
1143
- #adminmenu .menu-icon-dashboard div.wp-menu-image {
1144
- background-color: transparent;
1145
- background-repeat: no-repeat;
1146
- background-attachment: scroll;
1147
- background-position: -60px -33px;
1148
- }
1149
-
1150
- #adminmenu .menu-icon-dashboard:hover div.wp-menu-image,
1151
- #adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,
1152
- #adminmenu .menu-icon-dashboard.current div.wp-menu-image {
1153
- background-color: transparent;
1154
- background-repeat: no-repeat;
1155
- background-attachment: scroll;
1156
- background-position: -60px -1px;
1157
- }
1158
-
1159
- .icon16.icon-post,
1160
- #adminmenu .menu-icon-post div.wp-menu-image {
1161
- background-color: transparent;
1162
- background-repeat: no-repeat;
1163
- background-attachment: scroll;
1164
- background-position: -271px -33px;
1165
- }
1166
-
1167
- #adminmenu .menu-icon-post:hover div.wp-menu-image,
1168
- #adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image {
1169
- background-color: transparent;
1170
- background-repeat: no-repeat;
1171
- background-attachment: scroll;
1172
- background-position: -271px -33px;
1173
- }
1174
-
1175
- .icon16.icon-media,
1176
- #adminmenu .menu-icon-media div.wp-menu-image {
1177
- background-color: transparent;
1178
- background-repeat: no-repeat;
1179
- background-attachment: scroll;
1180
- background-position: -120px -33px;
1181
- }
1182
-
1183
- #adminmenu .menu-icon-media:hover div.wp-menu-image,
1184
- #adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image {
1185
- background-color: transparent;
1186
- background-repeat: no-repeat;
1187
- background-attachment: scroll;
1188
- background-position: -120px -1px;
1189
- }
1190
-
1191
- .icon16.icon-links,
1192
- #adminmenu .menu-icon-links div.wp-menu-image {
1193
- background-color: transparent;
1194
- background-repeat: no-repeat;
1195
- background-attachment: scroll;
1196
- background-position: -90px -33px;
1197
- }
1198
-
1199
- #adminmenu .menu-icon-links:hover div.wp-menu-image,
1200
- #adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image {
1201
- background-color: transparent;
1202
- background-repeat: no-repeat;
1203
- background-attachment: scroll;
1204
- background-position: -90px -1px;
1205
- }
1206
-
1207
- .icon16.icon-page,
1208
- #adminmenu .menu-icon-page div.wp-menu-image {
1209
- background-color: transparent;
1210
- background-repeat: no-repeat;
1211
- background-attachment: scroll;
1212
- background-position: -150px -33px;
1213
- }
1214
-
1215
- #adminmenu .menu-icon-page:hover div.wp-menu-image,
1216
- #adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image {
1217
- background-color: transparent;
1218
- background-repeat: no-repeat;
1219
- background-attachment: scroll;
1220
- background-position: -150px -1px;
1221
- }
1222
-
1223
- .icon16.icon-comments,
1224
- #adminmenu .menu-icon-comments div.wp-menu-image {
1225
- background-color: transparent;
1226
- background-repeat: no-repeat;
1227
- background-attachment: scroll;
1228
- background-position: -30px -33px;
1229
- }
1230
-
1231
- #adminmenu .menu-icon-comments:hover div.wp-menu-image,
1232
- #adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,
1233
- #adminmenu .menu-icon-comments.current div.wp-menu-image {
1234
- background-color: transparent;
1235
- background-repeat: no-repeat;
1236
- background-attachment: scroll;
1237
- background-position: -30px -1px;
1238
- }
1239
-
1240
- .icon16.icon-appearance,
1241
- #adminmenu .menu-icon-appearance div.wp-menu-image {
1242
- background-color: transparent;
1243
- background-repeat: no-repeat;
1244
- background-attachment: scroll;
1245
- background-position: 0 -33px;
1246
- }
1247
-
1248
- #adminmenu .menu-icon-appearance:hover div.wp-menu-image,
1249
- #adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image {
1250
- background-color: transparent;
1251
- background-repeat: no-repeat;
1252
- background-attachment: scroll;
1253
- background-position: 0 -1px;
1254
- }
1255
-
1256
- .icon16.icon-plugins,
1257
- #adminmenu .menu-icon-plugins div.wp-menu-image {
1258
- background-color: transparent;
1259
- background-repeat: no-repeat;
1260
- background-attachment: scroll;
1261
- background-position: -180px -33px;
1262
- }
1263
-
1264
- #adminmenu .menu-icon-plugins:hover div.wp-menu-image,
1265
- #adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image {
1266
- background-color: transparent;
1267
- background-repeat: no-repeat;
1268
- background-attachment: scroll;
1269
- background-position: -180px -1px;
1270
- }
1271
-
1272
- .icon16.icon-users,
1273
- #adminmenu .menu-icon-users div.wp-menu-image {
1274
- background-color: transparent;
1275
- background-repeat: no-repeat;
1276
- background-attachment: scroll;
1277
- background-position: -300px -33px;
1278
- }
1279
-
1280
- #adminmenu .menu-icon-users:hover div.wp-menu-image,
1281
- #adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,
1282
- #adminmenu .menu-icon-users.current div.wp-menu-image {
1283
- background-color: transparent;
1284
- background-repeat: no-repeat;
1285
- background-attachment: scroll;
1286
- background-position: -300px -1px;
1287
- }
1288
-
1289
- .icon16.icon-tools,
1290
- #adminmenu .menu-icon-tools div.wp-menu-image {
1291
- background-color: transparent;
1292
- background-repeat: no-repeat;
1293
- background-attachment: scroll;
1294
- background-position: -210px -33px;
1295
- }
1296
-
1297
- #adminmenu .menu-icon-tools:hover div.wp-menu-image,
1298
- #adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,
1299
- #adminmenu .menu-icon-tools.current div.wp-menu-image {
1300
- background-color: transparent;
1301
- background-repeat: no-repeat;
1302
- background-attachment: scroll;
1303
- background-position: -210px -1px;
1304
- }
1305
-
1306
- .icon16.icon-settings,
1307
- #adminmenu .menu-icon-settings div.wp-menu-image {
1308
- background-color: transparent;
1309
- background-repeat: no-repeat;
1310
- background-attachment: scroll;
1311
- background-position: -240px -33px;
1312
- }
1313
-
1314
- #adminmenu .menu-icon-settings:hover div.wp-menu-image,
1315
- #adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image {
1316
- background-color: transparent;
1317
- background-repeat: no-repeat;
1318
- background-attachment: scroll;
1319
- background-position: -240px -1px;
1320
- }
1321
-
1322
- .icon16.icon-site,
1323
- #adminmenu .menu-icon-site div.wp-menu-image {
1324
- background-color: transparent;
1325
- background-repeat: no-repeat;
1326
- background-attachment: scroll;
1327
- background-position: -360px -33px;
1328
- }
1329
-
1330
- #adminmenu .menu-icon-site:hover div.wp-menu-image,
1331
- #adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image {
1332
- background-color: transparent;
1333
- background-repeat: no-repeat;
1334
- background-attachment: scroll;
1335
- background-position: -360px -1px;
1336
- }
1337
- /* end menu and screen icons */
1338
-
1339
- /* Screen Icons */
1340
- .icon32.icon-post,
1341
- #icon-edit,
1342
- #icon-post {
1343
- background-color: transparent;
1344
- background-repeat: no-repeat;
1345
- background-position: -552px -5px;
1346
- }
1347
-
1348
- .icon32.icon-dashboard,
1349
- #icon-index {
1350
- background-color: transparent;
1351
- background-repeat: no-repeat;
1352
- background-position: -137px -5px;
1353
- }
1354
-
1355
- .icon32.icon-media,
1356
- #icon-upload {
1357
- background-color: transparent;
1358
- background-repeat: no-repeat;
1359
- background-position: -251px -5px;
1360
- }
1361
-
1362
- .icon32.icon-links,
1363
- #icon-link-manager,
1364
- #icon-link,
1365
- #icon-link-category {
1366
- background-color: transparent;
1367
- background-repeat: no-repeat;
1368
- background-position: -190px -5px;
1369
- }
1370
-
1371
- .icon32.icon-page,
1372
- #icon-edit-pages,
1373
- #icon-page {
1374
- background-color: transparent;
1375
- background-repeat: no-repeat;
1376
- background-position: -312px -5px;
1377
- }
1378
-
1379
- .icon32.icon-comments,
1380
- #icon-edit-comments {
1381
- background-color: transparent;
1382
- background-repeat: no-repeat;
1383
- background-position: -72px -5px;
1384
- }
1385
-
1386
- .icon32.icon-appearance,
1387
- #icon-themes {
1388
- background-color: transparent;
1389
- background-repeat: no-repeat;
1390
- background-position: -11px -5px;
1391
- }
1392
-
1393
- .icon32.icon-plugins,
1394
- #icon-plugins {
1395
- background-color: transparent;
1396
- background-repeat: no-repeat;
1397
- background-position: -370px -5px;
1398
- }
1399
-
1400
- .icon32.icon-users,
1401
- #icon-users,
1402
- #icon-profile,
1403
- #icon-user-edit {
1404
- background-color: transparent;
1405
- background-repeat: no-repeat;
1406
- background-position: -600px -5px;
1407
- }
1408
-
1409
- .icon32.icon-tools,
1410
- #icon-tools,
1411
- #icon-admin {
1412
- background-color: transparent;
1413
- background-repeat: no-repeat;
1414
- background-position: -432px -5px;
1415
- }
1416
-
1417
- .icon32.icon-settings,
1418
- #icon-options-general {
1419
- background-color: transparent;
1420
- background-repeat: no-repeat;
1421
- background-position: -492px -5px;
1422
- }
1423
-
1424
- .icon32.icon-site,
1425
- #icon-ms-admin {
1426
- background-color: transparent;
1427
- background-repeat: no-repeat;
1428
- background-position: -659px -5px;
1429
- }
1430
- /* end screen icons */
1431
-
1432
-
1433
- /* Diff */
1434
- table.diff .diff-deletedline {
1435
- background-color: #fdd;
1436
- }
1437
-
1438
- table.diff .diff-deletedline del {
1439
- background-color: #f99;
1440
- }
1441
-
1442
- table.diff .diff-addedline {
1443
- background-color: #dfd;
1444
- }
1445
-
1446
- table.diff .diff-addedline ins {
1447
- background-color: #9f9;
1448
- }
1449
-
1450
- #att-info {
1451
- background-color: #E4F2FD;
1452
- }
1453
-
1454
- /* edit image */
1455
- #sidemenu a {
1456
- background-color: #eefcf1;
1457
- border-color: #eefcf1;
1458
- border-bottom-color: #dfdfdf;
1459
- }
1460
-
1461
- #sidemenu a.current {
1462
- background-color: #fff;
1463
- border-color: #dfdfdf #dfdfdf #fff;
1464
- color: #D54E21;
1465
- }
1466
-
1467
- #replyerror {
1468
- border-color: #ddd;
1469
- background-color: #eefcf1;
1470
- }
1471
-
1472
- /* table vim shortcuts */
1473
- .vim-current,
1474
- .vim-current th,
1475
- .vim-current td {
1476
- background-color: #E4F2FD !important;
1477
- }
1478
-
1479
- /* Install Plugins */
1480
- .star-average,
1481
- .star.star-rating {
1482
- background-color: #fc0;
1483
- }
1484
-
1485
- div.star.select:hover {
1486
- background-color: #d00;
1487
- }
1488
-
1489
- div.star img {
1490
- border-left: 1px solid #fff;
1491
- border-right: 1px solid #fff;
1492
- }
1493
-
1494
- .widefat div.star img {
1495
- border-left: 1px solid #eefcf1;
1496
- border-right: 1px solid #eefcf1;
1497
- }
1498
-
1499
- #plugin-information .fyi ul {
1500
- background-color: #eaf3fa;
1501
- }
1502
-
1503
- #plugin-information .fyi h2.mainheader {
1504
- background-color: #cee1ef;
1505
- }
1506
-
1507
- #plugin-information pre,
1508
- #plugin-information code {
1509
- background-color: #ededff;
1510
- }
1511
-
1512
- #plugin-information pre {
1513
- border: 1px solid #ccc;
1514
- }
1515
-
1516
- /* inline editor */
1517
- .inline-edit-row fieldset input[type="text"],
1518
- .inline-edit-row fieldset textarea,
1519
- #bulk-titles {
1520
- border-color: #ddd;
1521
- }
1522
-
1523
- .inline-editor div.title {
1524
- background-color: #EAF3FA;
1525
- }
1526
-
1527
- .inline-editor ul.cat-checklist {
1528
- background-color: #fff;
1529
- border-color: #ddd;
1530
- }
1531
-
1532
- .inline-editor .categories .catshow,
1533
- .inline-editor .categories .cathide {
1534
- color: #007700;
1535
- }
1536
-
1537
- .inline-editor .quick-edit-save {
1538
- background-color: #f1f1f1;
1539
- }
1540
-
1541
- fieldset.inline-edit-col-right .inline-edit-col {
1542
- border-color: #dfdfdf;
1543
- }
1544
-
1545
- .attention {
1546
- color: #D54E21;
1547
- }
1548
-
1549
- .meta-box-sortables .postbox:hover .handlediv {
1550
- background-color: transparent;
1551
- background-repeat: no-repeat;
1552
- background-position: 6px 7px;
1553
- }
1554
-
1555
- .tablenav .tablenav-pages {
1556
- color: #555;
1557
- }
1558
-
1559
- .tablenav .tablenav-pages a {
1560
- border-color: #e3e3e3;
1561
- background-color: #eee;
1562
- background-repeat: repeat-x;
1563
- background-attachment: scroll;
1564
- background-position: left -379px;
1565
- }
1566
-
1567
- .tablenav .tablenav-pages a:hover,
1568
- .tablenav .tablenav-pages a:focus {
1569
- color: #d54e21;
1570
- }
1571
-
1572
- .tablenav .tablenav-pages a.disabled,
1573
- .tablenav .tablenav-pages a.disabled:hover,
1574
- .tablenav .tablenav-pages a.disabled:focus {
1575
- color: #aaa;
1576
- }
1577
-
1578
- .tablenav .tablenav-pages .current {
1579
- background: #dfdfdf;
1580
- border-color: #d3d3d3;
1581
- }
1582
-
1583
- #availablethemes,
1584
- #availablethemes td {
1585
- border-color: #ddd;
1586
- }
1587
-
1588
- #current-theme img {
1589
- border-color: #999;
1590
- }
1591
-
1592
- #TB_window #TB_title a.tb-theme-preview-link,
1593
- #TB_window #TB_title a.tb-theme-preview-link:visited {
1594
- color: #999;
1595
- }
1596
-
1597
- #TB_window #TB_title a.tb-theme-preview-link:hover,
1598
- #TB_window #TB_title a.tb-theme-preview-link:focus {
1599
- color: #ccc;
1600
- }
1601
-
1602
- .misc-pub-section {
1603
- border-top-color: #fff;
1604
- border-bottom-color: #dfdfdf;
1605
- }
1606
-
1607
- #minor-publishing {
1608
- border-bottom-color: #dfdfdf;
1609
- }
1610
-
1611
- #post-body .misc-pub-section {
1612
- border-right-color: #eee;
1613
- }
1614
-
1615
- .post-com-count span {
1616
- background-color: #bbb;
1617
- }
1618
-
1619
- .form-table .color-palette td {
1620
- border-color: #fff;
1621
- }
1622
-
1623
- .sortable-placeholder {
1624
- border-color: #bbb;
1625
- background-color: #eefcf1;
1626
- }
1627
-
1628
- #post-body ul.category-tabs li.tabs a,
1629
- #post-body ul.add-menu-item-tabs li.tabs a,
1630
- body.press-this ul.category-tabs li.tabs a {
1631
- color: #333;
1632
- }
1633
-
1634
- .view-switch #view-switch-list {
1635
- background-color: transparent;
1636
- background-repeat: no-repeat;
1637
- background-position: 0 0;
1638
- }
1639
-
1640
- .view-switch .current #view-switch-list {
1641
- background-color: transparent;
1642
- background-repeat: no-repeat;
1643
- background-position: -40px 0;
1644
- }
1645
-
1646
- .view-switch #view-switch-excerpt {
1647
- background-color: transparent;
1648
- background-repeat: no-repeat;
1649
- background-position: -20px 0;
1650
- }
1651
-
1652
- .view-switch .current #view-switch-excerpt {
1653
- background-color: transparent;
1654
- background-repeat: no-repeat;
1655
- background-position: -60px 0;
1656
- }
1657
-
1658
- #header-logo {
1659
- background-color: transparent;
1660
- background-repeat: no-repeat;
1661
- background-attachment: scroll;
1662
- background-position: center center;
1663
- }
1664
-
1665
- .popular-tags,
1666
- .feature-filter {
1667
- background-color: #fff;
1668
- border-color: #DFDFDF;
1669
- }
1670
-
1671
- #theme-information .action-button {
1672
- border-top-color: #DFDFDF;
1673
- }
1674
-
1675
- .theme-listing br.line {
1676
- border-bottom-color: #ccc;
1677
- }
1678
-
1679
- div.widgets-sortables,
1680
- #widgets-left .inactive {
1681
- background-color: #fcfcfc;
1682
- border-color: #dfdfdf;
1683
- }
1684
-
1685
- #available-widgets .widget-holder {
1686
- background-color: #fcfcfc;
1687
- border-color: #dfdfdf;
1688
- }
1689
-
1690
- #available-widgets .widget-description {
1691
- color: #555;
1692
- }
1693
-
1694
- .sidebar-name {
1695
- color: #464646;
1696
- text-shadow: #fff 0 1px 0;
1697
- border-color: #dfdfdf;
1698
- -moz-box-shadow: inset 0 1px 0 #fff;
1699
- -webkit-box-shadow: inset 0 1px 0 #fff;
1700
- box-shadow: inset 0 1px 0 #fff;
1701
- }
1702
-
1703
- .sidebar-name:hover,
1704
- #removing-widget {
1705
- color: #d54e21;
1706
- }
1707
-
1708
- #removing-widget span {
1709
- color: black;
1710
- }
1711
-
1712
- .sidebar-name-arrow {
1713
- background-color: transparent;
1714
- background-repeat: no-repeat;
1715
- background-position: 5px 9px;
1716
- }
1717
-
1718
- .sidebar-name:hover .sidebar-name-arrow {
1719
- background-color: transparent;
1720
- background-repeat: no-repeat;
1721
- background-position: 5px 9px;
1722
- }
1723
-
1724
- .in-widget-title {
1725
- color: #606060;
1726
- }
1727
-
1728
- .deleting .widget-title * {
1729
- color: #aaa;
1730
- }
1731
-
1732
- .imgedit-menu div {
1733
- border-color: #d5d5d5;
1734
- background-color: #f1f1f1;
1735
- }
1736
-
1737
- .imgedit-menu div:hover {
1738
- border-color: #c1c1c1;
1739
- background-color: #eaeaea;
1740
- }
1741
-
1742
- .imgedit-menu div.disabled {
1743
- border-color: #ccc;
1744
- background-color: #ddd;
1745
- filter: alpha(opacity=50);
1746
- opacity: 0.5;
1747
- }
1748
-
1749
- #dashboard_recent_comments div.undo {
1750
- border-top-color: #dfdfdf;
1751
- }
1752
-
1753
- .comment-ays,
1754
- .comment-ays th {
1755
- border-color: #ddd;
1756
- }
1757
-
1758
- .comment-ays th {
1759
- background-color: #f1f1f1;
1760
- }
1761
-
1762
- /* added from nav-menu.css */
1763
- #menu-management .menu-edit {
1764
- border-color: #dfdfdf;
1765
- }
1766
-
1767
- #post-body {
1768
- background: #fff;
1769
- border-top-color: #fff;
1770
- border-bottom-color: #dfdfdf;
1771
- }
1772
-
1773
- #nav-menu-header {
1774
- border-bottom-color: #dfdfdf;
1775
- }
1776
-
1777
- #nav-menu-footer {
1778
- border-top-color: #fff;
1779
- }
1780
-
1781
- #menu-management .nav-tabs-arrow a {
1782
- color: #C1C1C1;
1783
- }
1784
-
1785
- #menu-management .nav-tabs-arrow a:hover {
1786
- color: #D54E21;
1787
- }
1788
-
1789
- #menu-management .nav-tabs-arrow a:active {
1790
- color: #464646;
1791
- }
1792
-
1793
- #menu-management .nav-tab-active {
1794
- border-color: #dfdfdf;
1795
- }
1796
-
1797
- #menu-management .nav-tab {
1798
- background: #fbfbfb;
1799
- border-color: #dfdfdf;
1800
- }
1801
-
1802
- .js .input-with-default-title {
1803
- color: #aaa;
1804
- }
1805
-
1806
- #cancel-save {
1807
- color: #ff0000;
1808
- }
1809
-
1810
- #cancel-save:hover {
1811
- background-color: #FF0000;
1812
- color: #fff;
1813
- }
1814
-
1815
- .list-container {
1816
- border-color: #DFDFDF;
1817
- }
1818
-
1819
- .menu-item-handle {
1820
- border-color: #dfdfdf;
1821
- }
1822
-
1823
- .menu li.deleting .menu-item-handle {
1824
- background-color: #f66;
1825
- text-shadow: #ccc;
1826
- }
1827
-
1828
- .item-type { /* Menu item controls */
1829
- color: #999999;
1830
- }
1831
-
1832
- .item-controls .menu-item-delete:hover {
1833
- color: #ff0000;
1834
- }
1835
-
1836
- .item-edit {
1837
- background-color: transparent;
1838
- background-repeat: no-repeat;
1839
- background-position: 8px 10px;
1840
- border-bottom-color: #eee;
1841
- }
1842
-
1843
- .item-edit:hover {
1844
- background-color: transparent;
1845
- background-repeat: no-repeat;
1846
- background-position: 8px 10px;
1847
- }
1848
-
1849
- .menu-item-settings { /* Menu editing */
1850
- border-color: #dfdfdf;
1851
- }
1852
-
1853
- .link-to-original {
1854
- color: #777;
1855
- border-color: #dfdfdf;
1856
- }
1857
-
1858
- #cancel-save:hover {
1859
- color: #fff !important;
1860
- }
1861
-
1862
- #update-menu-item {
1863
- color: #fff !important;
1864
- }
1865
-
1866
- #update-menu-item:hover,
1867
- #update-menu-item:active,
1868
- #update-menu-item:focus {
1869
- color: #eaf2fa !important;
1870
- border-color: #13455b !important;
1871
- }
1872
-
1873
- .submitbox .submitcancel {
1874
- color: #007700;
1875
- border-bottom-color: #007700;
1876
- }
1877
-
1878
- .submitbox .submitcancel:hover {
1879
- background: #007700;
1880
- color: #fff;
1881
- }
1882
- /* end added from nav-menu.css */
1883
-
1884
- #menu-management .nav-tab-active,
1885
- .menu-item-handle,
1886
- .menu-item-settings {
1887
- -moz-box-shadow: inset 0 1px 0 #fff;
1888
- -webkit-box-shadow: inset 0 1px 0 #fff;
1889
- box-shadow: inset 0 1px 0 #fff;
1890
- }
1891
-
1892
- #menu-management .nav-tab-active {
1893
- background: #eefcf1;
1894
- border-bottom-color: #eefcf1;
1895
- }
1896
-
1897
- /* custom header & background pages */
1898
- #upload-form label {
1899
- color: #777;
1900
- }
1901
- /* custom header & background pages */
1902
-
1903
- /* full screen */
1904
- .fullscreen-overlay {
1905
- background: #fff;
1906
- }
1907
-
1908
- .wp-fullscreen-focus #wp-fullscreen-title,
1909
- .wp-fullscreen-focus #wp-fullscreen-container {
1910
- border-color: #ccc;
1911
- }
1912
-
1913
- #fullscreen-topbar {
1914
- border-bottom-color: #DFDFDF;
1915
- }
1916
-
1917
- /* Begin About Pages */
1918
-
1919
- .about-wrap h1 {
1920
- color: #333;
1921
- text-shadow: 1px 1px 1px white;
1922
- }
1923
-
1924
- .about-text {
1925
- color: #777;
1926
- }
1927
-
1928
- .wp-badge {
1929
- color: #fff;
1930
- text-shadow: 0 -1px 0 #0c3d57;
1931
- border-color: #2B5173;
1932
-
1933
- -moz-box-shadow: inset 0 0 0 1px #5F8CA8;
1934
- -webkit-box-shadow: inset 0 0 0 1px #5F8CA8;
1935
- box-shadow: inset 0 0 0 1px #5F8CA8;
1936
-
1937
- background-color: #378aac;
1938
- }
1939
-
1940
- .about-wrap h2 .nav-tab {
1941
- color: #007700;
1942
- }
1943
- .about-wrap h2 .nav-tab:hover {
1944
- color: #d54e21;
1945
- }
1946
- .about-wrap h2 .nav-tab-active,
1947
- .about-wrap h2 .nav-tab-active:hover {
1948
- color: #333;
1949
- }
1950
- .about-wrap h2 .nav-tab-active {
1951
- text-shadow: 1px 1px 1px white;
1952
- color: #464646;
1953
- }
1954
-
1955
- .about-wrap h3 {
1956
- color: #333;
1957
- text-shadow: 1px 1px 1px white;
1958
- }
1959
-
1960
- .about-wrap .feature-section h4 {
1961
- color: #464646;
1962
- }
1963
-
1964
- .about-wrap .feature-section img {
1965
- background: #eefcf1;
1966
- border-color: #dfdfdf;
1967
-
1968
- -moz-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1969
- -webkit-box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1970
- box-shadow: 0 0 6px rgba( 0, 0, 0, 0.3 );
1971
- }
1972
-
1973
- .about-wrap h4.wp-people-group {
1974
- text-shadow: 1px 1px 1px white;
1975
- }
1976
-
1977
- .about-wrap li.wp-person img.gravatar {
1978
- -moz-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1979
- -webkit-box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1980
- box-shadow: 0 0 4px rgba( 0, 0, 0, 0.4 );
1981
- }
1982
- .about-wrap li.wp-person .title {
1983
- color: #464646;
1984
- text-shadow: 1px 1px 1px white;
1985
- }
1986
-
1987
- .freedoms-php .about-wrap ol li {
1988
- color: #999;
1989
- }
1990
- .freedoms-php .about-wrap ol p {
1991
- color: #464646;
1992
- }
1993
-
1994
- /* End About Pages */
1995
-
1996
-
1997
- /*------------------------------------------------------------------------------
1998
- 2.0 - Right to Left Styles
1999
- ------------------------------------------------------------------------------*/
2000
-
2001
- .rtl .bar {
2002
- border-right-color: none;
2003
- border-left-color: #99d;
2004
- }
2005
-
2006
- .rtl #screen-meta-links a.show-settings {
2007
- background-position: left 3px;
2008
- }
2009
-
2010
- .rtl #screen-meta-links a.show-settings.screen-meta-active {
2011
- background-position: left -33px;
2012
- }
2013
-
2014
- /* Menu */
2015
- .rtl #adminmenushadow,
2016
- .rtl #adminmenuback {
2017
- background-position: top left;
2018
- }
2019
-
2020
- .rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,
2021
- .rtl #adminmenu li.wp-has-current-submenu.opensub .wp-menu-toggle,
2022
- .rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle {
2023
- background-color: transparent;
2024
- background-repeat: no-repeat;
2025
- background-position: 8px 6px;
2026
- }
2027
-
2028
- .rtl #adminmenu .wp-has-submenu.opensub .wp-menu-toggle,
2029
- .rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,
2030
- .rtl #adminmenu .wp-menu-open .wp-menu-toggle {
2031
- background-color: transparent;
2032
- background-repeat: no-repeat;
2033
- background-position: 8px 6px;
2034
- }
2035
-
2036
- .rtl #adminmenu .wp-submenu .wp-submenu-head {
2037
- border-right-color: none;
2038
- border-left-color: #dfdfdf;
2039
- }
2040
-
2041
- .rtl .folded #adminmenu .wp-submenu-wrap {
2042
- -moz-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2043
- -webkit-box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2044
- box-shadow: -2px 2px 5px rgba( 0, 0, 0, 0.4 );
2045
- }
2046
-
2047
- /* Collapse Menu Button */
2048
- .rtl #collapse-button div {
2049
- background-position: 0 -108px;
2050
- }
2051
-
2052
- .rtl .folded #collapse-button div {
2053
- background-position: 0 -72px;
2054
- }
2055
-
2056
- /* Edit Image */
2057
- .rtl .meta-box-sortables .postbox:hover .handlediv {
2058
- background-color: transparent;
2059
- background-repeat: no-repeat;
2060
- background-position: 6px 7px;
2061
- }
2062
-
2063
- .rtl .tablenav .tablenav-pages a {
2064
- border-color: #e3e3e3;
2065
- background-color: #eee;
2066
- background-repeat: repeat-x;
2067
- background-attachment: scroll;
2068
- background-position: right -379px;
2069
- }
2070
-
2071
- .rtl #post-body .misc-pub-section {
2072
- border-right-color: none;
2073
- border-left-color: #eee;
2074
- }
2075
-
2076
- .rtl .sidebar-name-arrow {
2077
- background-color: transparent;
2078
- background-repeat: no-repeat;
2079
- background-position: 5px 9px;
2080
- }
2081
-
2082
- .rtl .sidebar-name:hover .sidebar-name-arrow {
2083
- background-color: transparent;
2084
- background-repeat: no-repeat;
2085
- background-position: 5px 9px;
2086
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/admin/styles/green.min.css DELETED
@@ -1 +0,0 @@
1
- html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="button"],input[type="submit"],input[type="reset"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{border-color:#dfdfdf;background-color:#fff}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="button"]:focus,input[type="submit"]:focus,input[type="reset"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{border-color:#bbb}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:#555}body>#upload-menu{border-bottom-color:#fff}#postcustomstuff table,#your-profile fieldset,#rightnow,div.dashboard-widget,#dashboard-widgets p.dashboard-widget-links{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}.widefat{border-color:#dfdfdf;background-color:#eefcf1}textarea.widefat{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,.wp-tab-panel,ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-color:#dfdfdf;background-color:#fff}ul.category-tabs li.tabs,ul.add-menu-item-tabs li.tabs,.wp-tab-active{background-color:#fff}input.disabled,textarea.disabled{background-color:#ccc}#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,.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,.sidebar-name,#nav-menu-header,#nav-menu-footer,.menu-item-handle,#fullscreen-topbar{background-color:#f1f1f1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.widget .widget-top,.postbox h3,.stuffbox h3{border-bottom-color:#dfdfdf;text-shadow:#fff 0 1px 0;-moz-box-shadow:0 1px 0 #fff;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}.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:#070}.sorthelper{background-color:#ccf3fa}.ac_match,.subsubsub a.current{color:#000}.wrap h2{color:#464646}.wrap .add-new-h2{background:#f1f1f1}.subtitle{color:#777}.ac_over{background-color:#f0f0b8}.ac_results{background-color:#fff;border-color:#6eb469}.ac_results li{color:#101010}.alternate,.alt{background-color:#fefefe}.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}div.error,.login #login_error{background-color:#ffebe8;border-color:#c00}div.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:#000}.howto,.nonessential,#edit-slug-box,.form-input-tip,.subsubsub{color:#666}#wpbody-content #media-items .describe{border-top-color:#dfdfdf}.media-upload-form label.form-help,td.help{color:#9a9a9a}.post-com-count{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-color:#f2f2f2;background-repeat:repeat-x;background-attachment:scroll;background-position:left top;text-shadow:rgba(255,255,255,1) 0 1px 0}.button:active,.submit input:active,.button-secondary:active{background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:left top}input.button-primary,button.button-primary,a.button-primary{border-color:#298cba;font-weight:bold;color:#fff;background-image:url('../images/button-grad.png');background-color:#070;background-repeat:repeat-x;background-attachment:scroll;background-position: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-image:url('../images/button-grad-active.png');background-color:#070;background-repeat:repeat-x;background-attachment:scroll;background-position: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}#adminmenu a:hover,#adminmenu li.menu-top>a:focus,#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,#side-sortables .add-menu-item-tabs .tabs a,.wp-tab-bar .wp-tab-active 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:#070}.tablenav .next:hover,.tablenav .prev:hover{border-color:transparent;color:#d54e21}div.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{border-top-color:#fff;border-bottom-color:#dfdfdf}.widefat th{text-shadow:rgba(255,255,255,0.8) 0 1px 0}.widefat td{color:#555}.widefat p,.widefat ol,.widefat ul{color:#333}.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}th.sortable a:hover,th.sortable a:active,th.sortable a:focus{color:#333}h3.dashboard-widget-title small a{color:#d7d7d7}h3.dashboard-widget-title small a:hover{color:#fff}a,#adminmenu a,#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:#070}#adminmenu .awaiting-mod,#adminmenu .update-plugins,#sidemenu a .update-plugins,#rightnow .reallynow{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}#plugin-information .action-button{background-color:#d54e21;color:#fff}#adminmenu li.current a .awaiting-mod,#adminmenu li a.wp-has-current-submenu .update-plugins{background-color:#464646;color:#fff;-moz-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-khtml-box-shadow:rgba(255,255,255,0.5) 0 1px 0;-webkit-box-shadow:rgba(255,255,255,0.5) 0 1px 0;box-shadow:rgba(255,255,255,0.5) 0 1px 0}div#media-upload-header,div#plugin-information-header{background-color:#eefcf1;border-bottom-color:#dfdfdf}#currenttheme img{border-color:#666}#dashboard_secondary div.dashboard-widget-content ul li a{background-color:#eefcf1}input.readonly,textarea.readonly{background-color:#ddd}#editable-post-name{background-color:#fffbcc}#edit-slug-box strong,.tablenav .displaying-num,#submitted-on,.submitted-on{color:#777}.login #nav a,.login #backtoblog a{color:#070!important}.login #nav a:hover,.login #backtoblog a:hover{color:#d54e21!important}#footer{color:#777;border-color:#dfdfdf}#media-items,.imgedit-group,.media-item{border-color:#dfdfdf}.checkbox,.side-info,.plugins tr,#your-profile #rich_editing{background-color:#fcfcfc}.plugins .inactive,.plugins .inactive th,.plugins .inactive td,tr.inactive+tr.plugin-update-tr .plugin-update{background-color:#f4f4f4}.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}.welcome-panel{border-color:#dfdfdf}.welcome-panel p{color:#777}.welcome-panel-column p{color:#464646}.welcome-panel .welcome-panel-close{background:#eee;text-shadow:1px 1px 1px #eee}.welcome-panel h3{text-shadow:1px 1px 1px white}.widget,#widget-list .widget-top,.postbox,#titlediv,#poststuff .postarea,.stuffbox{border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.widget,#widget-list .widget-top,.postbox,.menu-item-settings{background-color:#eefcf1;background-image:-ms-linear-gradient(top,#eefcf1,#deece1);background-image:-moz-linear-gradient(top,#eefcf1,#deece1);background-image:-o-linear-gradient(top,#eefcf1,#deece1);background-image:-webkit-gradient(linear,left top,left bottom,from(#eefcf1),to(#deece1));background-image:-webkit-linear-gradient(top,#eefcf1,#deece1);background-image:linear-gradient(top,#eefcf1,#deece1)}.postbox h3{color:#464646}.widget .widget-top{color:#222}.sidebar-name:hover h3,.postbox h3:hover{color:#000}#quicktags #ed_link{color:#00f}#rightnow .youhave{background-color:#f0f6fb}#rightnow a{color:#448abd}.tagchecklist span a,#bulk-titles div a{background-repeat:no-repeat}.tagchecklist span a:hover,#bulk-titles div a:hover{background-repeat:no-repeat;background-position:-10px 0}#update-nag,.update-nag{background-color:#fffbcc;border-color:#e6db55;color:#555}#screen-meta{background-color:#f1f1f1;border-color:#ccc;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.05);box-shadow:0 1px 3px rgba(0,0,0,0.05)}.contextual-help-tabs a:hover{color:#333}.contextual-help-sidebar,.contextual-help-tabs .active{border-color:#ccc}.contextual-help-tabs .active,.contextual-help-tabs .active a,.contextual-help-tabs .active a:hover{background:#fff;color:#000}.contextual-help-tabs-wrap{border-color:#ccc;background-color:#fff}#screen-options-link-wrap,#contextual-help-link-wrap{background-color:#e3e3e3;border-right:1px solid transparent;border-left:1px solid transparent;border-bottom:1px solid transparent;background-image:-ms-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-moz-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-o-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#f1f1f1));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#f1f1f1);background-image:linear-gradient(bottom,#dfdfdf,#f1f1f1)}#screen-meta-links a.show-settings{color:#777}#screen-meta-links a.show-settings:hover{color:#000}#screen-meta-links a.show-settings{background-color:transparent;background-repeat:no-repeat;background-position:right 3px}#screen-meta-links a.show-settings.screen-meta-active{background-color:transparent;background-repeat:no-repeat;background-position:right -33px}.login #backtoblog a{color:#464646}#wphead{border-bottom:#dfdfdf 1px solid}#wphead h1 a{color:#464646}#footer a:link,#footer a:visited{text-decoration:none}#footer a:hover{color:#000;text-decoration:underline}.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}#titlediv #title{border-color:#ccc}#post-status-info{border-color:#dfdfdf #ccc #ccc;background-color:#eaeaea}.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}#adminmenuback,#adminmenuwrap{background-color:#deece1;border-color:#ccc}#adminmenushadow,#adminmenuback{background-position:top right;background-repeat:repeat-y}#adminmenu li.wp-menu-separator{background:#dfdfdf;border-color:#cfcfcf}#adminmenu div.separator{border-color:#e1e1e1}#adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,#adminmenu li.wp-has-current-submenu.opensub .wp-menu-toggle,#adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:-1px 6px}#adminmenu .wp-has-submenu.opensub .wp-menu-toggle,#adminmenu .wp-has-submenu:hover .wp-menu-toggle,#adminmenu .wp-menu-open .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:-2px 6px}#adminmenu a.menu-top,.folded #adminmenu li.menu-top,#adminmenu .wp-submenu .wp-submenu-head{border-top-color:#eefcf1;border-bottom-color:#dfdfdf}#adminmenu li.wp-menu-open{border-color:#dfdfdf}#adminmenu li.menu-top.opensub>a,#adminmenu li.menu-top:hover>a,#adminmenu li.menu-top.focused>a,#adminmenu li.menu-top>a:focus{background-color:#eefcf1;text-shadow:0 1px 0 rgba(255,255,255,0.4)}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top,#adminmenu .wp-menu-arrow,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{background-color:#777;background-image:-ms-linear-gradient(bottom,#060,#6eb469);background-image:-moz-linear-gradient(bottom,#060,#6eb469);background-image:-o-linear-gradient(bottom,#060,#6eb469);background-image:-webkit-gradient(linear,left bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(bottom,#060,#6eb469);background-image:linear-gradient(bottom,#060,#6eb469)}#adminmenu .wp-menu-arrow div{background-color:#777;background-image:-ms-linear-gradient(right bottom,#060,#6eb469);background-image:-moz-linear-gradient(right bottom,#060,#6eb469);background-image:-o-linear-gradient(right bottom,#060,#6eb469);background-image:-webkit-gradient(linear,right bottom,left top,from(#060),to(#6eb469));background-image:-webkit-linear-gradient(right bottom,#060,#6eb469);background-image:linear-gradient(right bottom,#060,#6eb469)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{border-top-color:#eefcf1;border-bottom-color:#dfdfdf;background:#eefcf1}#adminmenu li.wp-not-current-submenu .wp-menu-arrow div{background:#eefcf1;border-color:#ccc}.folded #adminmenu li.menu-top li.opensub a,.folded #adminmenu li.menu-top li:hover a{background-image:none}#adminmenu li.wp-has-current-submenu a.wp-has-current-submenu,#adminmenu li.current a.menu-top,#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head{text-shadow:0 -1px 0 #333;color:#fff;border-top-color:#6eb469;border-bottom-color:#060}.folded #adminmenu li.wp-has-current-submenu,.folded #adminmenu li.current.menu-top{border-top-color:#6eb469;border-bottom-color:#060}#adminmenu .wp-submenu a:hover,#adminmenu .wp-submenu a:focus{background-color:#eefcf1;color:#333}#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover{color:#333}#adminmenu .wp-submenu ul{background-color:#fff}#adminmenu .wp-submenu-wrap,#adminmenu .wp-submenu ul{border-color:#dfdfdf}#adminmenu .wp-submenu-wrap,.folded #adminmenu .wp-has-current-submenu .wp-submenu-wrap{-moz-box-shadow:2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:2px 2px 5px rgba(0,0,0,0.4);box-shadow:2px 2px 5px rgba(0,0,0,0.4);background:#f9f9f9}#adminmenu .wp-submenu .wp-submenu-head{border-right-color:#dfdfdf;background-color:#deece1}#adminmenu div.wp-submenu{background-color:transparent}#collapse-menu{color:#aaa;border-color:transparent}#collapse-menu:hover{color:#999}#collapse-button{border-color:#ccc;background-color:#f4f4f4;background-image:-ms-linear-gradient(bottom,#dfdfdf,#fff);background-image:-moz-linear-gradient(bottom,#dfdfdf,#fff);background-image:-o-linear-gradient(bottom,#dfdfdf,#fff);background-image:-webkit-gradient(linear,left bottom,left top,from(#dfdfdf),to(#fff));background-image:-webkit-linear-gradient(bottom,#dfdfdf,#fff);background-image:linear-gradient(bottom,#dfdfdf,#fff)}#collapse-menu:hover #collapse-button{border-color:#aaa}#collapse-button div{background-color:transparent;background-repeat:no-repeat;background-position:0 -72px}.folded #collapse-button div{background-position:0 -108px}.icon16.icon-dashboard,#adminmenu .menu-icon-dashboard div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-60px -33px}#adminmenu .menu-icon-dashboard:hover div.wp-menu-image,#adminmenu .menu-icon-dashboard.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-dashboard.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-60px -1px}.icon16.icon-post,#adminmenu .menu-icon-post div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-271px -33px}#adminmenu .menu-icon-post:hover div.wp-menu-image,#adminmenu .menu-icon-post.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-271px -33px}.icon16.icon-media,#adminmenu .menu-icon-media div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-120px -33px}#adminmenu .menu-icon-media:hover div.wp-menu-image,#adminmenu .menu-icon-media.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-120px -1px}.icon16.icon-links,#adminmenu .menu-icon-links div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-90px -33px}#adminmenu .menu-icon-links:hover div.wp-menu-image,#adminmenu .menu-icon-links.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-90px -1px}.icon16.icon-page,#adminmenu .menu-icon-page div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-150px -33px}#adminmenu .menu-icon-page:hover div.wp-menu-image,#adminmenu .menu-icon-page.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-150px -1px}.icon16.icon-comments,#adminmenu .menu-icon-comments div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-30px -33px}#adminmenu .menu-icon-comments:hover div.wp-menu-image,#adminmenu .menu-icon-comments.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-comments.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-30px -1px}.icon16.icon-appearance,#adminmenu .menu-icon-appearance div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:0 -33px}#adminmenu .menu-icon-appearance:hover div.wp-menu-image,#adminmenu .menu-icon-appearance.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:0 -1px}.icon16.icon-plugins,#adminmenu .menu-icon-plugins div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-180px -33px}#adminmenu .menu-icon-plugins:hover div.wp-menu-image,#adminmenu .menu-icon-plugins.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-180px -1px}.icon16.icon-users,#adminmenu .menu-icon-users div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-300px -33px}#adminmenu .menu-icon-users:hover div.wp-menu-image,#adminmenu .menu-icon-users.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-users.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-300px -1px}.icon16.icon-tools,#adminmenu .menu-icon-tools div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-210px -33px}#adminmenu .menu-icon-tools:hover div.wp-menu-image,#adminmenu .menu-icon-tools.wp-has-current-submenu div.wp-menu-image,#adminmenu .menu-icon-tools.current div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-210px -1px}.icon16.icon-settings,#adminmenu .menu-icon-settings div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-240px -33px}#adminmenu .menu-icon-settings:hover div.wp-menu-image,#adminmenu .menu-icon-settings.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-240px -1px}.icon16.icon-site,#adminmenu .menu-icon-site div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-360px -33px}#adminmenu .menu-icon-site:hover div.wp-menu-image,#adminmenu .menu-icon-site.wp-has-current-submenu div.wp-menu-image{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:-360px -1px}.icon32.icon-post,#icon-edit,#icon-post{background-color:transparent;background-repeat:no-repeat;background-position:-552px -5px}.icon32.icon-dashboard,#icon-index{background-color:transparent;background-repeat:no-repeat;background-position:-137px -5px}.icon32.icon-media,#icon-upload{background-color:transparent;background-repeat:no-repeat;background-position:-251px -5px}.icon32.icon-links,#icon-link-manager,#icon-link,#icon-link-category{background-color:transparent;background-repeat:no-repeat;background-position:-190px -5px}.icon32.icon-page,#icon-edit-pages,#icon-page{background-color:transparent;background-repeat:no-repeat;background-position:-312px -5px}.icon32.icon-comments,#icon-edit-comments{background-color:transparent;background-repeat:no-repeat;background-position:-72px -5px}.icon32.icon-appearance,#icon-themes{background-color:transparent;background-repeat:no-repeat;background-position:-11px -5px}.icon32.icon-plugins,#icon-plugins{background-color:transparent;background-repeat:no-repeat;background-position:-370px -5px}.icon32.icon-users,#icon-users,#icon-profile,#icon-user-edit{background-color:transparent;background-repeat:no-repeat;background-position:-600px -5px}.icon32.icon-tools,#icon-tools,#icon-admin{background-color:transparent;background-repeat:no-repeat;background-position:-432px -5px}.icon32.icon-settings,#icon-options-general{background-color:transparent;background-repeat:no-repeat;background-position:-492px -5px}.icon32.icon-site,#icon-ms-admin{background-color:transparent;background-repeat:no-repeat;background-position:-659px -5px}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:#eefcf1;border-color:#eefcf1;border-bottom-color:#dfdfdf}#sidemenu a.current{background-color:#fff;border-color:#dfdfdf #dfdfdf #fff;color:#d54e21}#replyerror{border-color:#ddd;background-color:#eefcf1}.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}div.star img{border-left:1px solid #fff;border-right:1px solid #fff}.widefat div.star img{border-left:1px solid #eefcf1;border-right:1px solid #eefcf1}#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{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:#070}.inline-editor .quick-edit-save{background-color:#f1f1f1}fieldset.inline-edit-col-right .inline-edit-col{border-color:#dfdfdf}.attention{color:#d54e21}.meta-box-sortables .postbox:hover .handlediv{background-color:transparent;background-repeat:no-repeat;background-position:6px 7px}.tablenav .tablenav-pages{color:#555}.tablenav .tablenav-pages a{border-color:#e3e3e3;background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:left -379px}.tablenav .tablenav-pages a:hover,.tablenav .tablenav-pages a:focus{color:#d54e21}.tablenav .tablenav-pages a.disabled,.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:focus{color:#aaa}.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-top-color:#fff;border-bottom-color:#dfdfdf}#minor-publishing{border-bottom-color:#dfdfdf}#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:#eefcf1}#post-body ul.category-tabs li.tabs a,#post-body ul.add-menu-item-tabs li.tabs a,body.press-this ul.category-tabs li.tabs a{color:#333}.view-switch #view-switch-list{background-color:transparent;background-repeat:no-repeat;background-position:0 0}.view-switch .current #view-switch-list{background-color:transparent;background-repeat:no-repeat;background-position:-40px 0}.view-switch #view-switch-excerpt{background-color:transparent;background-repeat:no-repeat;background-position:-20px 0}.view-switch .current #view-switch-excerpt{background-color:transparent;background-repeat:no-repeat;background-position:-60px 0}#header-logo{background-color:transparent;background-repeat:no-repeat;background-attachment:scroll;background-position:center center}.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:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-holder{background-color:#fcfcfc;border-color:#dfdfdf}#available-widgets .widget-description{color:#555}.sidebar-name{color:#464646;text-shadow:#fff 0 1px 0;border-color:#dfdfdf;-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}.sidebar-name:hover,#removing-widget{color:#d54e21}#removing-widget span{color:black}.sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.sidebar-name:hover .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.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}#menu-management .menu-edit{border-color:#dfdfdf}#post-body{background:#fff;border-top-color:#fff;border-bottom-color:#dfdfdf}#nav-menu-header{border-bottom-color:#dfdfdf}#nav-menu-footer{border-top-color:#fff}#menu-management .nav-tabs-arrow a{color:#c1c1c1}#menu-management .nav-tabs-arrow a:hover{color:#d54e21}#menu-management .nav-tabs-arrow a:active{color:#464646}#menu-management .nav-tab-active{border-color:#dfdfdf}#menu-management .nav-tab{background:#fbfbfb;border-color:#dfdfdf}.js .input-with-default-title{color:#aaa}#cancel-save{color:#f00}#cancel-save:hover{background-color:#f00;color:#fff}.list-container{border-color:#dfdfdf}.menu-item-handle{border-color:#dfdfdf}.menu li.deleting .menu-item-handle{background-color:#f66;text-shadow:#ccc}.item-type{color:#999}.item-controls .menu-item-delete:hover{color:#f00}.item-edit{background-color:transparent;background-repeat:no-repeat;background-position:8px 10px;border-bottom-color:#eee}.item-edit:hover{background-color:transparent;background-repeat:no-repeat;background-position:8px 10px}.menu-item-settings{border-color:#dfdfdf}.link-to-original{color:#777;border-color:#dfdfdf}#cancel-save:hover{color:#fff!important}#update-menu-item{color:#fff!important}#update-menu-item:hover,#update-menu-item:active,#update-menu-item:focus{color:#eaf2fa!important;border-color:#13455b!important}.submitbox .submitcancel{color:#070;border-bottom-color:#070}.submitbox .submitcancel:hover{background:#070;color:#fff}#menu-management .nav-tab-active,.menu-item-handle,.menu-item-settings{-moz-box-shadow:inset 0 1px 0 #fff;-webkit-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff}#menu-management .nav-tab-active{background:#eefcf1;border-bottom-color:#eefcf1}#upload-form label{color:#777}.fullscreen-overlay{background:#fff}.wp-fullscreen-focus #wp-fullscreen-title,.wp-fullscreen-focus #wp-fullscreen-container{border-color:#ccc}#fullscreen-topbar{border-bottom-color:#dfdfdf}.about-wrap h1{color:#333;text-shadow:1px 1px 1px white}.about-text{color:#777}.wp-badge{color:#fff;text-shadow:0 -1px 0 #0c3d57;border-color:#2b5173;-moz-box-shadow:inset 0 0 0 1px #5f8ca8;-webkit-box-shadow:inset 0 0 0 1px #5f8ca8;box-shadow:inset 0 0 0 1px #5f8ca8;background-color:#378aac}.about-wrap h2 .nav-tab{color:#070}.about-wrap h2 .nav-tab:hover{color:#d54e21}.about-wrap h2 .nav-tab-active,.about-wrap h2 .nav-tab-active:hover{color:#333}.about-wrap h2 .nav-tab-active{text-shadow:1px 1px 1px white;color:#464646}.about-wrap h3{color:#333;text-shadow:1px 1px 1px white}.about-wrap .feature-section h4{color:#464646}.about-wrap .feature-section img{background:#eefcf1;border-color:#dfdfdf;-moz-box-shadow:0 0 6px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 6px rgba(0,0,0,0.3);box-shadow:0 0 6px rgba(0,0,0,0.3)}.about-wrap h4.wp-people-group{text-shadow:1px 1px 1px white}.about-wrap li.wp-person img.gravatar{-moz-box-shadow:0 0 4px rgba(0,0,0,0.4);-webkit-box-shadow:0 0 4px rgba(0,0,0,0.4);box-shadow:0 0 4px rgba(0,0,0,0.4)}.about-wrap li.wp-person .title{color:#464646;text-shadow:1px 1px 1px white}.freedoms-php .about-wrap ol li{color:#999}.freedoms-php .about-wrap ol p{color:#464646}.rtl .bar{border-right-color:none;border-left-color:#99d}.rtl #screen-meta-links a.show-settings{background-position:left 3px}.rtl #screen-meta-links a.show-settings.screen-meta-active{background-position:left -33px}.rtl #adminmenushadow,.rtl #adminmenuback{background-position:top left}.rtl #adminmenu li.wp-has-current-submenu.wp-menu-open .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu.opensub .wp-menu-toggle,.rtl #adminmenu li.wp-has-current-submenu:hover .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:8px 6px}.rtl #adminmenu .wp-has-submenu.opensub .wp-menu-toggle,.rtl #adminmenu .wp-has-submenu:hover .wp-menu-toggle,.rtl #adminmenu .wp-menu-open .wp-menu-toggle{background-color:transparent;background-repeat:no-repeat;background-position:8px 6px}.rtl #adminmenu .wp-submenu .wp-submenu-head{border-right-color:none;border-left-color:#dfdfdf}.rtl .folded #adminmenu .wp-submenu-wrap{-moz-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);-webkit-box-shadow:-2px 2px 5px rgba(0,0,0,0.4);box-shadow:-2px 2px 5px rgba(0,0,0,0.4)}.rtl #collapse-button div{background-position:0 -108px}.rtl .folded #collapse-button div{background-position:0 -72px}.rtl .meta-box-sortables .postbox:hover .handlediv{background-color:transparent;background-repeat:no-repeat;background-position:6px 7px}.rtl .tablenav .tablenav-pages a{border-color:#e3e3e3;background-color:#eee;background-repeat:repeat-x;background-attachment:scroll;background-position:right -379px}.rtl #post-body .misc-pub-section{border-right-color:none;border-left-color:#eee}.rtl .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}.rtl .sidebar-name:hover .sidebar-name-arrow{background-color:transparent;background-repeat:no-repeat;background-position:5px 9px}
 
includes/admin/topics.php CHANGED
@@ -654,7 +654,6 @@ class BBP_Topics_Admin {
654
  * of topic forum actions
655
  * @uses bbp_get_forum_permalink() To get the forum permalink
656
  * @uses admin_url() To get the admin url of post.php
657
- * @uses add_query_arg() To add custom args to the url
658
  * @uses bbp_topic_reply_count() To output the topic reply count
659
  * @uses bbp_topic_voice_count() To output the topic voice count
660
  * @uses bbp_topic_author_display_name() To output the topic author name
@@ -815,13 +814,13 @@ class BBP_Topics_Admin {
815
  if ( current_user_can( 'delete_topic', $topic->ID ) ) {
816
  if ( bbp_get_trash_status_id() === $topic->post_status ) {
817
  $post_type_object = get_post_type_object( bbp_get_topic_post_type() );
818
- $actions['untrash'] = "<a title='" . esc_attr__( 'Restore this item from the Trash', 'bbpress' ) . "' href='" . wp_nonce_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), admin_url( 'edit.php' ) ) ), admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $topic->ID ) ) ), 'untrash-' . $topic->post_type . '_' . $topic->ID ) . "'>" . esc_html__( 'Restore', 'bbpress' ) . "</a>";
819
  } elseif ( EMPTY_TRASH_DAYS ) {
820
- $actions['trash'] = "<a class='submitdelete' title='" . esc_attr__( 'Move this item to the Trash', 'bbpress' ) . "' href='" . add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $topic->ID ) ) . "'>" . esc_html__( 'Trash', 'bbpress' ) . "</a>";
821
  }
822
 
823
  if ( bbp_get_trash_status_id() === $topic->post_status || !EMPTY_TRASH_DAYS ) {
824
- $actions['delete'] = "<a class='submitdelete' title='" . esc_attr__( 'Delete this item permanently', 'bbpress' ) . "' href='" . add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $topic->ID, '', true ) ) . "'>" . esc_html__( 'Delete Permanently', 'bbpress' ) . "</a>";
825
  } elseif ( bbp_get_spam_status_id() === $topic->post_status ) {
826
  unset( $actions['trash'] );
827
  }
654
  * of topic forum actions
655
  * @uses bbp_get_forum_permalink() To get the forum permalink
656
  * @uses admin_url() To get the admin url of post.php
 
657
  * @uses bbp_topic_reply_count() To output the topic reply count
658
  * @uses bbp_topic_voice_count() To output the topic voice count
659
  * @uses bbp_topic_author_display_name() To output the topic author name
814
  if ( current_user_can( 'delete_topic', $topic->ID ) ) {
815
  if ( bbp_get_trash_status_id() === $topic->post_status ) {
816
  $post_type_object = get_post_type_object( bbp_get_topic_post_type() );
817
+ $actions['untrash'] = "<a title='" . esc_attr__( 'Restore this item from the Trash', 'bbpress' ) . "' href='" . esc_url( wp_nonce_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), admin_url( 'edit.php' ) ) ), admin_url( sprintf( $post_type_object->_edit_link . '&amp;action=untrash', $topic->ID ) ) ), 'untrash-' . $topic->post_type . '_' . $topic->ID ) ) . "'>" . esc_html__( 'Restore', 'bbpress' ) . "</a>";
818
  } elseif ( EMPTY_TRASH_DAYS ) {
819
+ $actions['trash'] = "<a class='submitdelete' title='" . esc_attr__( 'Move this item to the Trash', 'bbpress' ) . "' href='" . esc_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $topic->ID ) ) ) . "'>" . esc_html__( 'Trash', 'bbpress' ) . "</a>";
820
  }
821
 
822
  if ( bbp_get_trash_status_id() === $topic->post_status || !EMPTY_TRASH_DAYS ) {
823
+ $actions['delete'] = "<a class='submitdelete' title='" . esc_attr__( 'Delete this item permanently', 'bbpress' ) . "' href='" . esc_url( add_query_arg( array( '_wp_http_referer' => add_query_arg( array( 'post_type' => bbp_get_topic_post_type() ), admin_url( 'edit.php' ) ) ), get_delete_post_link( $topic->ID, '', true ) ) ) . "'>" . esc_html__( 'Delete Permanently', 'bbpress' ) . "</a>";
824
  } elseif ( bbp_get_spam_status_id() === $topic->post_status ) {
825
  unset( $actions['trash'] );
826
  }
includes/common/functions.php CHANGED
@@ -274,7 +274,7 @@ function bbp_add_view_all( $original_link = '', $force = false ) {
274
  *
275
  * @param string $original_link Original Link to be modified
276
  * @uses current_user_can() To check if the current user can moderate
277
- * @uses add_query_arg() To add args to the url
278
  * @uses apply_filters() Calls 'bbp_add_view_all' with the link and original link
279
  * @return string The link with 'view=all' appended if necessary
280
  */
274
  *
275
  * @param string $original_link Original Link to be modified
276
  * @uses current_user_can() To check if the current user can moderate
277
+ * @uses remove_query_arg() To add args to the url
278
  * @uses apply_filters() Calls 'bbp_add_view_all' with the link and original link
279
  * @return string The link with 'view=all' appended if necessary
280
  */
includes/common/template.php CHANGED
@@ -1134,32 +1134,47 @@ function is_bbpress() {
1134
  *
1135
  * @since bbPress (r2815)
1136
  *
1137
- * @param string $url Pass a URL to redirect to
1138
  * @uses add_query_arg() To add a arg to the url
1139
  * @uses site_url() Toget the site url
1140
  * @uses apply_filters() Calls 'bbp_wp_login_action' with the url and args
1141
  */
1142
  function bbp_wp_login_action( $args = '' ) {
 
 
1143
 
1144
- // Parse arguments against default values
1145
- $r = bbp_parse_args( $args, array(
1146
- 'action' => '',
1147
- 'context' => ''
1148
- ), 'login_action' );
 
 
 
 
 
 
 
 
 
 
 
 
 
1149
 
1150
- // Add action as query arg
1151
- if ( !empty( $r['action'] ) ) {
1152
- $login_url = add_query_arg( array( 'action' => $r['action'] ), 'wp-login.php' );
1153
 
1154
- // No query arg
1155
- } else {
1156
- $login_url = 'wp-login.php';
1157
- }
1158
 
1159
- $login_url = site_url( $login_url, $r['context'] );
1160
 
1161
- echo apply_filters( 'bbp_wp_login_action', $login_url, $r );
1162
- }
1163
 
1164
  /**
1165
  * Output hidden request URI field for user forms.
@@ -1172,7 +1187,8 @@ function bbp_wp_login_action( $args = '' ) {
1172
  * @param string $redirect_to Pass a URL to redirect to
1173
  *
1174
  * @uses wp_get_referer() To get the referer
1175
- * @uses esc_attr() To escape the url
 
1176
  * @uses apply_filters() Calls 'bbp_redirect_to_field', passes field and to
1177
  */
1178
  function bbp_redirect_to_field( $redirect_to = '' ) {
@@ -1187,8 +1203,8 @@ function bbp_redirect_to_field( $redirect_to = '' ) {
1187
  }
1188
 
1189
  // Remove loggedout query arg if it's there
1190
- $redirect_to = (string) esc_attr( remove_query_arg( 'loggedout', $redirect_to ) );
1191
- $redirect_field = '<input type="hidden" id="bbp_redirect_to" name="redirect_to" value="' . $redirect_to . '" />';
1192
 
1193
  echo apply_filters( 'bbp_redirect_to_field', $redirect_field, $redirect_to );
1194
  }
1134
  *
1135
  * @since bbPress (r2815)
1136
  *
1137
+ * @param string $args Pass a URL to redirect to
1138
  * @uses add_query_arg() To add a arg to the url
1139
  * @uses site_url() Toget the site url
1140
  * @uses apply_filters() Calls 'bbp_wp_login_action' with the url and args
1141
  */
1142
  function bbp_wp_login_action( $args = '' ) {
1143
+ echo esc_url( bbp_get_wp_login_action( $args ) );
1144
+ }
1145
 
1146
+ /**
1147
+ * Return the login form action url
1148
+ *
1149
+ * @since bbPress (r5691)
1150
+ *
1151
+ * @param string $args Pass a URL to redirect to
1152
+ * @uses add_query_arg() To add a arg to the url
1153
+ * @uses site_url() Toget the site url
1154
+ * @uses apply_filters() Calls 'bbp_wp_login_action' with the url and args
1155
+ */
1156
+ function bbp_get_wp_login_action( $args = '' ) {
1157
+
1158
+ // Parse arguments against default values
1159
+ $r = bbp_parse_args( $args, array(
1160
+ 'action' => '',
1161
+ 'context' => '',
1162
+ 'url' => 'wp-login.php'
1163
+ ), 'login_action' );
1164
 
1165
+ // Add action as query arg
1166
+ if ( !empty( $r['action'] ) ) {
1167
+ $login_url = add_query_arg( array( 'action' => $r['action'] ), $r['url'] );
1168
 
1169
+ // No query arg
1170
+ } else {
1171
+ $login_url = $r['url'];
1172
+ }
1173
 
1174
+ $login_url = site_url( $login_url, $r['context'] );
1175
 
1176
+ return apply_filters( 'bbp_get_wp_login_action', $login_url, $r, $args );
1177
+ }
1178
 
1179
  /**
1180
  * Output hidden request URI field for user forms.
1187
  * @param string $redirect_to Pass a URL to redirect to
1188
  *
1189
  * @uses wp_get_referer() To get the referer
1190
+ * @uses remove_query_arg() To remove the `loggedout` argument
1191
+ * @uses esc_url() To escape the url
1192
  * @uses apply_filters() Calls 'bbp_redirect_to_field', passes field and to
1193
  */
1194
  function bbp_redirect_to_field( $redirect_to = '' ) {
1203
  }
1204
 
1205
  // Remove loggedout query arg if it's there
1206
+ $redirect_to = remove_query_arg( 'loggedout', $redirect_to );
1207
+ $redirect_field = '<input type="hidden" id="bbp_redirect_to" name="redirect_to" value="' . esc_url( $redirect_to ) . '" />';
1208
 
1209
  echo apply_filters( 'bbp_redirect_to_field', $redirect_field, $redirect_to );
1210
  }
includes/forums/template.php CHANGED
@@ -1224,7 +1224,6 @@ function bbp_forum_topics_link( $forum_id = 0 ) {
1224
  * @uses bbp_get_forum() To get the forum
1225
  * @uses bbp_get_forum_topic_count() To get the forum topic count
1226
  * @uses bbp_get_forum_permalink() To get the forum permalink
1227
- * @uses remove_query_arg() To remove args from the url
1228
  * @uses bbp_get_forum_topic_count_hidden() To get the forum hidden
1229
  * topic count
1230
  * @uses current_user_can() To check if the current user can edit others
1224
  * @uses bbp_get_forum() To get the forum
1225
  * @uses bbp_get_forum_topic_count() To get the forum topic count
1226
  * @uses bbp_get_forum_permalink() To get the forum permalink
 
1227
  * @uses bbp_get_forum_topic_count_hidden() To get the forum hidden
1228
  * topic count
1229
  * @uses current_user_can() To check if the current user can edit others
includes/replies/functions.php CHANGED
@@ -1495,7 +1495,6 @@ function bbp_move_reply_count( $move_reply_id, $source_topic_id, $destination_to
1495
  * @uses do_action() Calls 'bbp_toggle_reply_handler' with success, post data
1496
  * and action
1497
  * @uses bbp_get_reply_url() To get the reply url
1498
- * @uses add_query_arg() To add custom args to the reply url
1499
  * @uses wp_safe_redirect() To redirect to the reply
1500
  * @uses bbPress::errors:add() To log the error messages
1501
  */
1495
  * @uses do_action() Calls 'bbp_toggle_reply_handler' with success, post data
1496
  * and action
1497
  * @uses bbp_get_reply_url() To get the reply url
 
1498
  * @uses wp_safe_redirect() To redirect to the reply
1499
  * @uses bbPress::errors:add() To log the error messages
1500
  */
includes/replies/template.php CHANGED
@@ -458,7 +458,7 @@ function bbp_reply_url( $reply_id = 0 ) {
458
  * @since bbPress (r2679)
459
  *
460
  * @param int $reply_id Optional. Reply id
461
- * @param $string $redirect_to Optional. Pass a redirect value for use with
462
  * shortcodes and other fun things.
463
  * @uses bbp_get_reply_id() To get the reply id
464
  * @uses bbp_get_reply_topic_id() To get the reply topic id
458
  * @since bbPress (r2679)
459
  *
460
  * @param int $reply_id Optional. Reply id
461
+ * @param string $redirect_to Optional. Pass a redirect value for use with
462
  * shortcodes and other fun things.
463
  * @uses bbp_get_reply_id() To get the reply id
464
  * @uses bbp_get_reply_topic_id() To get the reply topic id
includes/topics/functions.php CHANGED
@@ -2051,7 +2051,6 @@ function bbp_get_super_stickies() {
2051
  * and action
2052
  * @uses bbp_get_forum_permalink() To get the forum link
2053
  * @uses bbp_get_topic_permalink() To get the topic link
2054
- * @uses add_query_arg() To add args to the url
2055
  * @uses wp_safe_redirect() To redirect to the topic
2056
  * @uses bbPress::errors:add() To log the error messages
2057
  */
2051
  * and action
2052
  * @uses bbp_get_forum_permalink() To get the forum link
2053
  * @uses bbp_get_topic_permalink() To get the topic link
 
2054
  * @uses wp_safe_redirect() To redirect to the topic
2055
  * @uses bbPress::errors:add() To log the error messages
2056
  */
includes/topics/template.php CHANGED
@@ -2088,12 +2088,10 @@ function bbp_topic_replies_link( $topic_id = 0 ) {
2088
  * @uses bbp_get_topic() To get the topic
2089
  * @uses bbp_get_topic_reply_count() To get the topic reply count
2090
  * @uses bbp_get_topic_permalink() To get the topic permalink
2091
- * @uses remove_query_arg() To remove args from the url
2092
  * @uses bbp_get_topic_reply_count_hidden() To get the topic hidden
2093
  * reply count
2094
  * @uses current_user_can() To check if the current user can edit others
2095
  * replies
2096
- * @uses add_query_arg() To add custom args to the url
2097
  * @uses apply_filters() Calls 'bbp_get_topic_replies_link' with the
2098
  * replies link and topic id
2099
  */
2088
  * @uses bbp_get_topic() To get the topic
2089
  * @uses bbp_get_topic_reply_count() To get the topic reply count
2090
  * @uses bbp_get_topic_permalink() To get the topic permalink
 
2091
  * @uses bbp_get_topic_reply_count_hidden() To get the topic hidden
2092
  * reply count
2093
  * @uses current_user_can() To check if the current user can edit others
2094
  * replies
 
2095
  * @uses apply_filters() Calls 'bbp_get_topic_replies_link' with the
2096
  * replies link and topic id
2097
  */
languages/bbpress.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the bbPress package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: bbPress 2.5.6\n"
6
  "Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
7
- "POT-Creation-Date: 2015-03-06 17:13:54+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -134,7 +134,7 @@ msgstr ""
134
 
135
  #: includes/admin/admin.php:282 includes/admin/admin.php:283
136
  #: includes/admin/admin.php:304 includes/admin/admin.php:305
137
- #: includes/admin/admin.php:1014 includes/admin/admin.php:1101
138
  msgid "Update Forums"
139
  msgstr ""
140
 
@@ -150,72 +150,72 @@ msgstr ""
150
  msgid "Right Now in Forums"
151
  msgstr ""
152
 
153
- #: includes/admin/admin.php:549
154
  msgid "About bbPress"
155
  msgstr ""
156
 
157
- #: includes/admin/admin.php:634
158
  msgctxt "admin color scheme"
159
  msgid "Mint"
160
  msgstr ""
161
 
162
- #: includes/admin/admin.php:643
163
  msgctxt "admin color scheme"
164
  msgid "Evergreen"
165
  msgstr ""
166
 
167
- #: includes/admin/admin.php:724 includes/admin/admin.php:762
168
  msgid "%s - %s"
169
  msgstr ""
170
 
171
- #: includes/admin/admin.php:780 includes/admin/admin.php:857
172
  msgid "Welcome to bbPress %s"
173
  msgstr ""
174
 
175
- #: includes/admin/admin.php:781
176
  msgid ""
177
  "Thank you for updating! bbPress %s is bundled up and ready to weather the "
178
  "storm of users in your community!"
179
  msgstr ""
180
 
181
- #: includes/admin/admin.php:782 includes/admin/admin.php:859
182
  msgid "Version %s"
183
  msgstr ""
184
 
185
- #: includes/admin/admin.php:786 includes/admin/admin.php:863
186
  msgid "What&#8217;s New"
187
  msgstr ""
188
 
189
- #: includes/admin/admin.php:788 includes/admin/admin.php:865
190
  msgid "Credits"
191
  msgstr ""
192
 
193
- #: includes/admin/admin.php:793
194
  msgid "Forum Subscriptions"
195
  msgstr ""
196
 
197
- #: includes/admin/admin.php:797
198
  msgid "Subscribe to Forums"
199
  msgstr ""
200
 
201
- #: includes/admin/admin.php:798
202
  msgid "Now your users can subscribe to new topics in specific forums."
203
  msgstr ""
204
 
205
- #: includes/admin/admin.php:802
206
  msgid "Manage Subscriptions"
207
  msgstr ""
208
 
209
- #: includes/admin/admin.php:803
210
  msgid ""
211
  "Your users can manage all of their subscriptions in one convenient location."
212
  msgstr ""
213
 
214
- #: includes/admin/admin.php:809
215
  msgid "Converters"
216
  msgstr ""
217
 
218
- #: includes/admin/admin.php:813
219
  msgid ""
220
  "We&#8217;re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
221
  "Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
@@ -224,111 +224,111 @@ msgid ""
224
  "if you need to remove imported users."
225
  msgstr ""
226
 
227
- #: includes/admin/admin.php:819
228
  msgid "Theme Compatibility"
229
  msgstr ""
230
 
231
- #: includes/admin/admin.php:820
232
  msgid "Better handling of styles and scripts in the template stack."
233
  msgstr ""
234
 
235
- #: includes/admin/admin.php:824
236
  msgid "Polyglot support"
237
  msgstr ""
238
 
239
- #: includes/admin/admin.php:825
240
  msgid "bbPress fully supports automatic translation updates."
241
  msgstr ""
242
 
243
- #: includes/admin/admin.php:829
244
  msgid "User capabilities"
245
  msgstr ""
246
 
247
- #: includes/admin/admin.php:830
248
  msgid ""
249
  "Roles and capabilities have been swept through, cleaned up, and simplified."
250
  msgstr ""
251
 
252
- #: includes/admin/admin.php:836 includes/admin/admin.php:940
253
  msgid "Go to Forum Settings"
254
  msgstr ""
255
 
256
- #: includes/admin/admin.php:858
257
  msgid ""
258
  "Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
259
  "take it for a lap or two around the block!"
260
  msgstr ""
261
 
262
- #: includes/admin/admin.php:869
263
  msgid "bbPress is created by a worldwide swarm of busy, busy bees."
264
  msgstr ""
265
 
266
- #: includes/admin/admin.php:871
267
  msgid "Project Leaders"
268
  msgstr ""
269
 
270
- #: includes/admin/admin.php:876
271
  msgid "Founding Developer"
272
  msgstr ""
273
 
274
- #: includes/admin/admin.php:881
275
  msgid "Lead Developer"
276
  msgstr ""
277
 
278
- #: includes/admin/admin.php:886 includes/admin/admin.php:905
279
  msgid "Feature Developer"
280
  msgstr ""
281
 
282
- #: includes/admin/admin.php:891
283
  msgid "Converter Specialist"
284
  msgstr ""
285
 
286
- #: includes/admin/admin.php:895
287
  msgid "Contributing Developers"
288
  msgstr ""
289
 
290
- #: includes/admin/admin.php:900
291
  msgid "Bug Testing"
292
  msgstr ""
293
 
294
- #: includes/admin/admin.php:909
295
  msgid "Core Contributors to bbPress 2.5"
296
  msgstr ""
297
 
298
- #: includes/admin/admin.php:966 includes/admin/admin.php:988
299
  msgid "Update Forum"
300
  msgstr ""
301
 
302
- #: includes/admin/admin.php:977 includes/admin/admin.php:1031
303
  msgid "All done!"
304
  msgstr ""
305
 
306
- #: includes/admin/admin.php:978 includes/admin/admin.php:1032
307
  msgid "Go Back"
308
  msgstr ""
309
 
310
- #: includes/admin/admin.php:987
311
  msgid ""
312
  "You can update your forum through this page. Hit the link below to update."
313
  msgstr ""
314
 
315
- #: includes/admin/admin.php:1057
316
  msgid ""
317
  "Warning! Problem updating %1$s. Your server may not be able to connect to "
318
  "sites running on it. Error message: <em>%2$s</em>"
319
  msgstr ""
320
 
321
- #: includes/admin/admin.php:1081
322
  msgid ""
323
  "If your browser doesn&#8217;t start loading the next page automatically, "
324
  "click this link:"
325
  msgstr ""
326
 
327
- #: includes/admin/admin.php:1082
328
  msgid "Next Forums"
329
  msgstr ""
330
 
331
- #: includes/admin/admin.php:1100
332
  msgid ""
333
  "You can update all the forums on your network through this page. It works by "
334
  "calling the update script of each site automatically. Hit the link below to "
@@ -736,7 +736,7 @@ msgstr ""
736
  #: includes/admin/forums.php:410 includes/admin/settings.php:222
737
  #: includes/admin/settings.php:243 includes/admin/topics.php:632
738
  #: includes/extend/buddypress/activity.php:354
739
- #: includes/forums/template.php:2602 includes/topics/template.php:47
740
  #: includes/topics/template.php:48
741
  #: templates/default/bbpress/content-statistics.php:27
742
  #: templates/default/bbpress/loop-forums.php:20
@@ -747,7 +747,7 @@ msgstr ""
747
  #: includes/admin/settings.php:251 includes/admin/topics.php:634
748
  #: includes/core/theme-compat.php:646
749
  #: includes/extend/buddypress/activity.php:355
750
- #: includes/forums/template.php:2666 includes/replies/template.php:47
751
  #: includes/replies/template.php:48
752
  #: templates/default/bbpress/content-statistics.php:32
753
  #: templates/default/bbpress/loop-forums.php:21
@@ -782,13 +782,13 @@ msgstr ""
782
  msgid "Forum updated. <a href=\"%s\">View forum</a>"
783
  msgstr ""
784
 
785
- #: includes/admin/forums.php:532 includes/admin/replies.php:853
786
- #: includes/admin/topics.php:923
787
  msgid "Custom field updated."
788
  msgstr ""
789
 
790
- #: includes/admin/forums.php:535 includes/admin/replies.php:856
791
- #: includes/admin/topics.php:926
792
  msgid "Custom field deleted."
793
  msgstr ""
794
 
@@ -820,8 +820,8 @@ msgid ""
820
  msgstr ""
821
 
822
  #. translators: Publish box date format, see http:php.net/date
823
- #: includes/admin/forums.php:558 includes/admin/replies.php:879
824
- #: includes/admin/topics.php:949
825
  msgid "M j, Y @ G:i"
826
  msgstr ""
827
 
@@ -846,14 +846,14 @@ msgstr[1] ""
846
 
847
  #: includes/admin/metaboxes.php:84 includes/admin/settings.php:325
848
  #: includes/replies/template.php:49 includes/replies/template.php:1621
849
- #: includes/topics/template.php:2923
850
  msgid "Reply"
851
  msgid_plural "Replies"
852
  msgstr[0] ""
853
  msgstr[1] ""
854
 
855
  #: includes/admin/metaboxes.php:103 includes/admin/settings.php:309
856
- #: includes/topics/template.php:3369
857
  msgid "Topic Tag"
858
  msgid_plural "Topic Tags"
859
  msgstr[0] ""
@@ -1197,113 +1197,113 @@ msgstr ""
1197
  msgid "Author"
1198
  msgstr ""
1199
 
1200
- #: includes/admin/replies.php:626 includes/admin/replies.php:634
1201
  msgid "No Topic"
1202
  msgstr ""
1203
 
1204
- #: includes/admin/replies.php:652 includes/admin/replies.php:667
1205
- #: includes/admin/topics.php:688
1206
  msgid "No Forum"
1207
  msgstr ""
1208
 
1209
- #: includes/admin/replies.php:658
1210
  msgid "(Mismatch)"
1211
  msgstr ""
1212
 
1213
- #: includes/admin/replies.php:726 includes/admin/topics.php:777
1214
  msgid "View &#8220;%s&#8221;"
1215
  msgstr ""
1216
 
1217
- #: includes/admin/replies.php:726 includes/admin/topics.php:777
1218
  msgid "View"
1219
  msgstr ""
1220
 
1221
- #: includes/admin/replies.php:737
1222
  msgid "Mark the reply as not spam"
1223
  msgstr ""
1224
 
1225
- #: includes/admin/replies.php:737 includes/admin/topics.php:808
1226
  msgid "Not spam"
1227
  msgstr ""
1228
 
1229
- #: includes/admin/replies.php:739
1230
  msgid "Mark this reply as spam"
1231
  msgstr ""
1232
 
1233
- #: includes/admin/replies.php:739 includes/admin/topics.php:810
1234
- #: includes/replies/template.php:2105 includes/topics/template.php:2874
1235
  msgid "Spam"
1236
  msgstr ""
1237
 
1238
- #: includes/admin/replies.php:748 includes/admin/topics.php:818
1239
- #: includes/replies/template.php:2047 includes/topics/template.php:2630
1240
  msgid "Restore this item from the Trash"
1241
  msgstr ""
1242
 
1243
- #: includes/admin/replies.php:748 includes/admin/topics.php:818
1244
- #: includes/replies/template.php:2035 includes/topics/template.php:2618
1245
  msgid "Restore"
1246
  msgstr ""
1247
 
1248
- #: includes/admin/replies.php:750 includes/admin/topics.php:820
1249
- #: includes/replies/template.php:2049 includes/topics/template.php:2632
1250
  msgid "Move this item to the Trash"
1251
  msgstr ""
1252
 
1253
- #: includes/admin/replies.php:750 includes/admin/topics.php:820
1254
- #: includes/replies/template.php:2034 includes/topics/template.php:2617
1255
  msgid "Trash"
1256
  msgstr ""
1257
 
1258
- #: includes/admin/replies.php:754 includes/admin/topics.php:824
1259
- #: includes/replies/template.php:2053 includes/topics/template.php:2636
1260
  msgid "Delete this item permanently"
1261
  msgstr ""
1262
 
1263
- #: includes/admin/replies.php:754 includes/admin/topics.php:824
1264
  msgid "Delete Permanently"
1265
  msgstr ""
1266
 
1267
- #: includes/admin/replies.php:780 includes/admin/topics.php:850
1268
  msgid "Empty Spam"
1269
  msgstr ""
1270
 
1271
- #: includes/admin/replies.php:790 includes/admin/topics.php:860
1272
  msgid "In all forums"
1273
  msgstr ""
1274
 
1275
- #: includes/admin/replies.php:850
1276
  msgid "Reply updated. <a href=\"%s\">View topic</a>"
1277
  msgstr ""
1278
 
1279
- #: includes/admin/replies.php:859
1280
  msgid "Reply updated."
1281
  msgstr ""
1282
 
1283
  #. translators: %s: date and time of the revision
1284
- #: includes/admin/replies.php:864
1285
  msgid "Reply restored to revision from %s"
1286
  msgstr ""
1287
 
1288
- #: includes/admin/replies.php:868
1289
  msgid "Reply created. <a href=\"%s\">View topic</a>"
1290
  msgstr ""
1291
 
1292
- #: includes/admin/replies.php:871
1293
  msgid "Reply saved."
1294
  msgstr ""
1295
 
1296
- #: includes/admin/replies.php:874
1297
  msgid "Reply submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
1298
  msgstr ""
1299
 
1300
- #: includes/admin/replies.php:877
1301
  msgid ""
1302
  "Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1303
  "\">Preview topic</a>"
1304
  msgstr ""
1305
 
1306
- #: includes/admin/replies.php:884
1307
  msgid "Reply draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
1308
  msgstr ""
1309
 
@@ -1382,7 +1382,7 @@ msgid "Topic tags"
1382
  msgstr ""
1383
 
1384
  #: includes/admin/settings.php:166 includes/admin/settings.php:333
1385
- #: includes/common/template.php:2314 includes/search/template.php:225
1386
  #: templates/default/bbpress/form-search.php:17
1387
  msgid "Search"
1388
  msgstr ""
@@ -2129,12 +2129,12 @@ msgstr ""
2129
  msgid "All Forums"
2130
  msgstr ""
2131
 
2132
- #: includes/admin/tools.php:1219 includes/topics/functions.php:3440
2133
  #: includes/topics/template.php:50
2134
  msgid "All Topics"
2135
  msgstr ""
2136
 
2137
- #: includes/admin/tools.php:1220 includes/replies/functions.php:1995
2138
  #: includes/replies/template.php:50
2139
  msgid "All Replies"
2140
  msgstr ""
@@ -2469,97 +2469,97 @@ msgstr ""
2469
  msgid "Voices"
2470
  msgstr ""
2471
 
2472
- #: includes/admin/topics.php:695 includes/extend/buddypress/groups.php:291
2473
  #: templates/default/bbpress/form-topic.php:117
2474
  msgid "(No Forum)"
2475
  msgstr ""
2476
 
2477
- #: includes/admin/topics.php:730 includes/topics/template.php:2064
2478
  msgid "No Replies"
2479
  msgstr ""
2480
 
2481
- #: includes/admin/topics.php:787
2482
  msgid "Close this topic"
2483
  msgstr ""
2484
 
2485
- #: includes/admin/topics.php:787
2486
  msgctxt "Close a Topic"
2487
  msgid "Close"
2488
  msgstr ""
2489
 
2490
- #: includes/admin/topics.php:789
2491
  msgid "Open this topic"
2492
  msgstr ""
2493
 
2494
- #: includes/admin/topics.php:789
2495
  msgctxt "Open a Topic"
2496
  msgid "Open"
2497
  msgstr ""
2498
 
2499
- #: includes/admin/topics.php:798
2500
  msgid "Unstick this topic"
2501
  msgstr ""
2502
 
2503
- #: includes/admin/topics.php:798 includes/topics/template.php:2748
2504
  msgid "Unstick"
2505
  msgstr ""
2506
 
2507
- #: includes/admin/topics.php:801
2508
  msgid "Stick this topic to its forum"
2509
  msgstr ""
2510
 
2511
- #: includes/admin/topics.php:801 includes/topics/template.php:2747
2512
  msgid "Stick"
2513
  msgstr ""
2514
 
2515
- #: includes/admin/topics.php:801
2516
  msgid "Stick this topic to front"
2517
  msgstr ""
2518
 
2519
- #: includes/admin/topics.php:801 includes/topics/template.php:2749
2520
  msgid "(to front)"
2521
  msgstr ""
2522
 
2523
- #: includes/admin/topics.php:808
2524
  msgid "Mark the topic as not spam"
2525
  msgstr ""
2526
 
2527
- #: includes/admin/topics.php:810
2528
  msgid "Mark this topic as spam"
2529
  msgstr ""
2530
 
2531
- #: includes/admin/topics.php:920
2532
  msgid "Topic updated. <a href=\"%s\">View topic</a>"
2533
  msgstr ""
2534
 
2535
- #: includes/admin/topics.php:929
2536
  msgid "Topic updated."
2537
  msgstr ""
2538
 
2539
  #. translators: %s: date and time of the revision
2540
- #: includes/admin/topics.php:934
2541
  msgid "Topic restored to revision from %s"
2542
  msgstr ""
2543
 
2544
- #: includes/admin/topics.php:938
2545
  msgid "Topic created. <a href=\"%s\">View topic</a>"
2546
  msgstr ""
2547
 
2548
- #: includes/admin/topics.php:941
2549
  msgid "Topic saved."
2550
  msgstr ""
2551
 
2552
- #: includes/admin/topics.php:944
2553
  msgid "Topic submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2554
  msgstr ""
2555
 
2556
- #: includes/admin/topics.php:947
2557
  msgid ""
2558
  "Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
2559
  "\">Preview topic</a>"
2560
  msgstr ""
2561
 
2562
- #: includes/admin/topics.php:954
2563
  msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2564
  msgstr ""
2565
 
@@ -2706,116 +2706,116 @@ msgid ""
2706
  "they always return false."
2707
  msgstr ""
2708
 
2709
- #: includes/common/template.php:1441
2710
  msgid "No topics available"
2711
  msgstr ""
2712
 
2713
- #: includes/common/template.php:1446
2714
  msgid "No forums available"
2715
  msgstr ""
2716
 
2717
- #: includes/common/template.php:1451
2718
  msgid "None available"
2719
  msgstr ""
2720
 
2721
- #: includes/common/template.php:2122
2722
  msgid "Home"
2723
  msgstr ""
2724
 
2725
- #: includes/common/template.php:2192
2726
  msgid "(Edit)"
2727
  msgstr ""
2728
 
2729
- #: includes/common/template.php:2196 includes/common/template.php:2310
2730
- #: includes/common/template.php:2575 includes/core/theme-compat.php:739
2731
  #: templates/default/extras/taxonomy-topic-tag-edit.php:17
2732
  #: templates/default/extras/taxonomy-topic-tag.php:17
2733
  msgid "Topic Tag: %s"
2734
  msgstr ""
2735
 
2736
- #: includes/common/template.php:2200 includes/forums/template.php:53
2737
  #: includes/replies/template.php:53 includes/replies/template.php:1910
2738
- #: includes/topics/template.php:53 includes/topics/template.php:2493
2739
  #: templates/default/bbpress/user-details.php:65
2740
  msgid "Edit"
2741
  msgstr ""
2742
 
2743
- #: includes/common/template.php:2217
2744
  msgid "&lsaquo;"
2745
  msgstr ""
2746
 
2747
- #: includes/common/template.php:2217
2748
  msgid "&rsaquo;"
2749
  msgstr ""
2750
 
2751
- #: includes/common/template.php:2485
2752
  msgid "Log Out"
2753
  msgstr ""
2754
 
2755
- #: includes/common/template.php:2539
2756
  msgid "Forum Edit: %s"
2757
  msgstr ""
2758
 
2759
- #: includes/common/template.php:2544
2760
  msgid "Topic Edit: %s"
2761
  msgstr ""
2762
 
2763
- #: includes/common/template.php:2549
2764
  msgid "Reply Edit: %s"
2765
  msgstr ""
2766
 
2767
- #: includes/common/template.php:2554
2768
  msgid "Topic Tag Edit: %s"
2769
  msgstr ""
2770
 
2771
- #: includes/common/template.php:2561
2772
  msgid "Forum: %s"
2773
  msgstr ""
2774
 
2775
- #: includes/common/template.php:2566
2776
  msgid "Topic: %s"
2777
  msgstr ""
2778
 
2779
- #: includes/common/template.php:2584
2780
  msgctxt "User viewing his/her own profile"
2781
  msgid "Your"
2782
  msgstr ""
2783
 
2784
- #: includes/common/template.php:2588
2785
  msgctxt "User viewing another users profile"
2786
  msgid "%s's"
2787
  msgstr ""
2788
 
2789
- #: includes/common/template.php:2593
2790
  msgid "%s Topics"
2791
  msgstr ""
2792
 
2793
- #: includes/common/template.php:2597
2794
  msgid "%s Replies"
2795
  msgstr ""
2796
 
2797
- #: includes/common/template.php:2601
2798
  msgid "%s Favorites"
2799
  msgstr ""
2800
 
2801
- #: includes/common/template.php:2605
2802
  msgid "%s Subscriptions"
2803
  msgstr ""
2804
 
2805
- #: includes/common/template.php:2609
2806
  msgid "%s Profile"
2807
  msgstr ""
2808
 
2809
- #: includes/common/template.php:2617
2810
  msgid "Edit Your Profile"
2811
  msgstr ""
2812
 
2813
- #: includes/common/template.php:2622
2814
  #: templates/default/bbpress/user-details.php:65
2815
  msgid "Edit %s's Profile"
2816
  msgstr ""
2817
 
2818
- #: includes/common/template.php:2630
2819
  msgid "View: %s"
2820
  msgstr ""
2821
 
@@ -3354,56 +3354,56 @@ msgstr ""
3354
  msgid "Unsubscribe"
3355
  msgstr ""
3356
 
3357
- #: includes/forums/template.php:1239 includes/forums/template.php:1977
3358
  msgid "%s topic"
3359
  msgid_plural "%s topics"
3360
  msgstr[0] ""
3361
  msgstr[1] ""
3362
 
3363
- #: includes/forums/template.php:1255 includes/topics/template.php:2120
3364
  msgid " (+ %d hidden)"
3365
  msgstr ""
3366
 
3367
- #: includes/forums/template.php:1966 includes/topics/template.php:2104
3368
  msgid "%s reply"
3369
  msgid_plural "%s replies"
3370
  msgstr[0] ""
3371
  msgstr[1] ""
3372
 
3373
- #: includes/forums/template.php:1986
3374
  msgid ""
3375
  "This category contains %1$s and %2$s, and was last updated by %3$s %4$s."
3376
  msgstr ""
3377
 
3378
- #: includes/forums/template.php:1988
3379
  msgid "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s."
3380
  msgstr ""
3381
 
3382
- #: includes/forums/template.php:1994
3383
  msgid "This category contains %1$s, and was last updated by %2$s %3$s."
3384
  msgstr ""
3385
 
3386
- #: includes/forums/template.php:1996
3387
  msgid "This forum contains %1$s, and was last updated by %2$s %3$s."
3388
  msgstr ""
3389
 
3390
- #: includes/forums/template.php:2006
3391
  msgid "This category contains %1$s and %2$s."
3392
  msgstr ""
3393
 
3394
- #: includes/forums/template.php:2008
3395
  msgid "This forum contains %1$s and %2$s."
3396
  msgstr ""
3397
 
3398
- #: includes/forums/template.php:2016
3399
  msgid "This category contains %1$s."
3400
  msgstr ""
3401
 
3402
- #: includes/forums/template.php:2018
3403
  msgid "This forum contains %1$s."
3404
  msgstr ""
3405
 
3406
- #: includes/forums/template.php:2022
3407
  msgid "This forum is empty."
3408
  msgstr ""
3409
 
@@ -3561,36 +3561,36 @@ msgid ""
3561
  "topics. The reply could not be converted into a topic."
3562
  msgstr ""
3563
 
3564
- #: includes/replies/functions.php:1531
3565
  msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
3566
  msgstr ""
3567
 
3568
- #: includes/replies/functions.php:1544
3569
  msgid ""
3570
  "<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
3571
  msgstr ""
3572
 
3573
- #: includes/replies/functions.php:1544
3574
  msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
3575
  msgstr ""
3576
 
3577
- #: includes/replies/functions.php:1563
3578
  msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
3579
  msgstr ""
3580
 
3581
- #: includes/replies/functions.php:1571
3582
  msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
3583
  msgstr ""
3584
 
3585
- #: includes/replies/functions.php:1579
3586
  msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
3587
  msgstr ""
3588
 
3589
- #: includes/replies/functions.php:1993
3590
  msgid "All Posts"
3591
  msgstr ""
3592
 
3593
- #: includes/replies/functions.php:2035 includes/topics/functions.php:3465
3594
  msgid "Replies: %s"
3595
  msgstr ""
3596
 
@@ -3654,17 +3654,17 @@ msgstr ""
3654
  msgid "Cancel"
3655
  msgstr ""
3656
 
3657
- #: includes/replies/template.php:2036 includes/topics/template.php:2619
3658
  #: templates/default/bbpress/form-topic-tag.php:88
3659
  #: templates/default/bbpress/form-topic-tag.php:101
3660
  msgid "Delete"
3661
  msgstr ""
3662
 
3663
- #: includes/replies/template.php:2053 includes/topics/template.php:2636
3664
  msgid "Are you sure you want to delete that permanently?"
3665
  msgstr ""
3666
 
3667
- #: includes/replies/template.php:2106 includes/topics/template.php:2875
3668
  msgid "Unspam"
3669
  msgstr ""
3670
 
@@ -3920,44 +3920,44 @@ msgctxt "Make topic super sticky"
3920
  msgid "Super Sticky"
3921
  msgstr ""
3922
 
3923
- #: includes/topics/functions.php:2090
3924
  msgid "<strong>ERROR:</strong> You do not have the permission to do that."
3925
  msgstr ""
3926
 
3927
- #: includes/topics/functions.php:2103
3928
  msgid "<strong>ERROR</strong>: There was a problem closing the topic."
3929
  msgstr ""
3930
 
3931
- #: includes/topics/functions.php:2103
3932
  msgid "<strong>ERROR</strong>: There was a problem opening the topic."
3933
  msgstr ""
3934
 
3935
- #: includes/topics/functions.php:2114
3936
  msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
3937
  msgstr ""
3938
 
3939
- #: includes/topics/functions.php:2114
3940
  msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
3941
  msgstr ""
3942
 
3943
- #: includes/topics/functions.php:2124
3944
  msgid ""
3945
  "<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
3946
  msgstr ""
3947
 
3948
- #: includes/topics/functions.php:2124
3949
  msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
3950
  msgstr ""
3951
 
3952
- #: includes/topics/functions.php:2143
3953
  msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
3954
  msgstr ""
3955
 
3956
- #: includes/topics/functions.php:2151
3957
  msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
3958
  msgstr ""
3959
 
3960
- #: includes/topics/functions.php:2159
3961
  msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
3962
  msgstr ""
3963
 
@@ -4005,98 +4005,98 @@ msgstr ""
4005
  msgid "Unfavorite"
4006
  msgstr ""
4007
 
4008
- #: includes/topics/template.php:2297
4009
  msgid "Tagged:"
4010
  msgstr ""
4011
 
4012
- #: includes/topics/template.php:2687
4013
  msgctxt "Topic Status"
4014
  msgid "Close"
4015
  msgstr ""
4016
 
4017
- #: includes/topics/template.php:2688
4018
  msgctxt "Topic Status"
4019
  msgid "Open"
4020
  msgstr ""
4021
 
4022
- #: includes/topics/template.php:2818
4023
  #: templates/default/bbpress/form-topic-tag.php:59
4024
  #: templates/default/bbpress/form-topic-tag.php:73
4025
  msgid "Merge"
4026
  msgstr ""
4027
 
4028
- #: includes/topics/template.php:2979
4029
  msgid "Viewing %1$s topic"
4030
  msgid_plural "Viewing %1$s topics"
4031
  msgstr[0] ""
4032
  msgstr[1] ""
4033
 
4034
- #: includes/topics/template.php:2983
4035
  msgid "Viewing topic %2$s (of %4$s total)"
4036
  msgid_plural "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
4037
  msgstr[0] ""
4038
  msgstr[1] ""
4039
 
4040
- #: includes/topics/template.php:3043
4041
  msgid "This topic is marked as spam."
4042
  msgstr ""
4043
 
4044
- #: includes/topics/template.php:3048
4045
  msgid "This topic is in the trash."
4046
  msgstr ""
4047
 
4048
- #: includes/topics/template.php:3308
4049
  msgid "%s voice"
4050
  msgid_plural "%s voices"
4051
  msgstr[0] ""
4052
  msgstr[1] ""
4053
 
4054
- #: includes/topics/template.php:3314
4055
  msgid "This topic contains %1$s, has %2$s, and was last updated by %3$s %4$s."
4056
  msgstr ""
4057
 
4058
- #: includes/topics/template.php:3318
4059
  msgid "This topic contains %1$s and has %2$s."
4060
  msgstr ""
4061
 
4062
- #: includes/topics/template.php:3322
4063
  msgid "This topic has no replies."
4064
  msgstr ""
4065
 
4066
- #: includes/topics/template.php:3368
4067
  #: templates/default/bbpress/content-statistics.php:37
4068
  msgid "Topic Tags"
4069
  msgstr ""
4070
 
4071
- #: includes/topics/template.php:3370
4072
  msgid "Search Tags"
4073
  msgstr ""
4074
 
4075
- #: includes/topics/template.php:3371
4076
  msgid "Popular Tags"
4077
  msgstr ""
4078
 
4079
- #: includes/topics/template.php:3372
4080
  msgid "All Tags"
4081
  msgstr ""
4082
 
4083
- #: includes/topics/template.php:3373
4084
  msgid "Edit Tag"
4085
  msgstr ""
4086
 
4087
- #: includes/topics/template.php:3374
4088
  msgid "Update Tag"
4089
  msgstr ""
4090
 
4091
- #: includes/topics/template.php:3375
4092
  msgid "Add New Tag"
4093
  msgstr ""
4094
 
4095
- #: includes/topics/template.php:3376
4096
  msgid "New Tag Name"
4097
  msgstr ""
4098
 
4099
- #: includes/topics/template.php:3377
4100
  msgid "View Topic Tag"
4101
  msgstr ""
4102
 
@@ -4939,9 +4939,9 @@ msgstr ""
4939
  msgid "bbPress"
4940
  msgstr ""
4941
 
4942
- #. #-#-#-#-# plugin.pot (bbPress 2.5.6) #-#-#-#-#
4943
  #. Plugin URI of the plugin/theme
4944
- #. #-#-#-#-# plugin.pot (bbPress 2.5.6) #-#-#-#-#
4945
  #. Author URI of the plugin/theme
4946
  msgid "http://bbpress.org"
4947
  msgstr ""
2
  # This file is distributed under the same license as the bbPress package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: bbPress 2.5.7\n"
6
  "Report-Msgid-Bugs-To: https://bbpress.trac.wordpress.org\n"
7
+ "POT-Creation-Date: 2015-04-20 17:00:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
134
 
135
  #: includes/admin/admin.php:282 includes/admin/admin.php:283
136
  #: includes/admin/admin.php:304 includes/admin/admin.php:305
137
+ #: includes/admin/admin.php:1012 includes/admin/admin.php:1099
138
  msgid "Update Forums"
139
  msgstr ""
140
 
150
  msgid "Right Now in Forums"
151
  msgstr ""
152
 
153
+ #: includes/admin/admin.php:547
154
  msgid "About bbPress"
155
  msgstr ""
156
 
157
+ #: includes/admin/admin.php:632
158
  msgctxt "admin color scheme"
159
  msgid "Mint"
160
  msgstr ""
161
 
162
+ #: includes/admin/admin.php:641
163
  msgctxt "admin color scheme"
164
  msgid "Evergreen"
165
  msgstr ""
166
 
167
+ #: includes/admin/admin.php:722 includes/admin/admin.php:760
168
  msgid "%s - %s"
169
  msgstr ""
170
 
171
+ #: includes/admin/admin.php:778 includes/admin/admin.php:855
172
  msgid "Welcome to bbPress %s"
173
  msgstr ""
174
 
175
+ #: includes/admin/admin.php:779
176
  msgid ""
177
  "Thank you for updating! bbPress %s is bundled up and ready to weather the "
178
  "storm of users in your community!"
179
  msgstr ""
180
 
181
+ #: includes/admin/admin.php:780 includes/admin/admin.php:857
182
  msgid "Version %s"
183
  msgstr ""
184
 
185
+ #: includes/admin/admin.php:784 includes/admin/admin.php:861
186
  msgid "What&#8217;s New"
187
  msgstr ""
188
 
189
+ #: includes/admin/admin.php:786 includes/admin/admin.php:863
190
  msgid "Credits"
191
  msgstr ""
192
 
193
+ #: includes/admin/admin.php:791
194
  msgid "Forum Subscriptions"
195
  msgstr ""
196
 
197
+ #: includes/admin/admin.php:795
198
  msgid "Subscribe to Forums"
199
  msgstr ""
200
 
201
+ #: includes/admin/admin.php:796
202
  msgid "Now your users can subscribe to new topics in specific forums."
203
  msgstr ""
204
 
205
+ #: includes/admin/admin.php:800
206
  msgid "Manage Subscriptions"
207
  msgstr ""
208
 
209
+ #: includes/admin/admin.php:801
210
  msgid ""
211
  "Your users can manage all of their subscriptions in one convenient location."
212
  msgstr ""
213
 
214
+ #: includes/admin/admin.php:807
215
  msgid "Converters"
216
  msgstr ""
217
 
218
+ #: includes/admin/admin.php:811
219
  msgid ""
220
  "We&#8217;re all abuzz about the hive of new importers, AEF, Drupal, FluxBB, "
221
  "Kunena Forums for Joomla, MyBB, Phorum, PHPFox, PHPWind, PunBB, SMF, Xenforo "
224
  "if you need to remove imported users."
225
  msgstr ""
226
 
227
+ #: includes/admin/admin.php:817
228
  msgid "Theme Compatibility"
229
  msgstr ""
230
 
231
+ #: includes/admin/admin.php:818
232
  msgid "Better handling of styles and scripts in the template stack."
233
  msgstr ""
234
 
235
+ #: includes/admin/admin.php:822
236
  msgid "Polyglot support"
237
  msgstr ""
238
 
239
+ #: includes/admin/admin.php:823
240
  msgid "bbPress fully supports automatic translation updates."
241
  msgstr ""
242
 
243
+ #: includes/admin/admin.php:827
244
  msgid "User capabilities"
245
  msgstr ""
246
 
247
+ #: includes/admin/admin.php:828
248
  msgid ""
249
  "Roles and capabilities have been swept through, cleaned up, and simplified."
250
  msgstr ""
251
 
252
+ #: includes/admin/admin.php:834 includes/admin/admin.php:938
253
  msgid "Go to Forum Settings"
254
  msgstr ""
255
 
256
+ #: includes/admin/admin.php:856
257
  msgid ""
258
  "Thank you for updating! bbPress %s is waxed, polished, and ready for you to "
259
  "take it for a lap or two around the block!"
260
  msgstr ""
261
 
262
+ #: includes/admin/admin.php:867
263
  msgid "bbPress is created by a worldwide swarm of busy, busy bees."
264
  msgstr ""
265
 
266
+ #: includes/admin/admin.php:869
267
  msgid "Project Leaders"
268
  msgstr ""
269
 
270
+ #: includes/admin/admin.php:874
271
  msgid "Founding Developer"
272
  msgstr ""
273
 
274
+ #: includes/admin/admin.php:879
275
  msgid "Lead Developer"
276
  msgstr ""
277
 
278
+ #: includes/admin/admin.php:884 includes/admin/admin.php:903
279
  msgid "Feature Developer"
280
  msgstr ""
281
 
282
+ #: includes/admin/admin.php:889
283
  msgid "Converter Specialist"
284
  msgstr ""
285
 
286
+ #: includes/admin/admin.php:893
287
  msgid "Contributing Developers"
288
  msgstr ""
289
 
290
+ #: includes/admin/admin.php:898
291
  msgid "Bug Testing"
292
  msgstr ""
293
 
294
+ #: includes/admin/admin.php:907
295
  msgid "Core Contributors to bbPress 2.5"
296
  msgstr ""
297
 
298
+ #: includes/admin/admin.php:964 includes/admin/admin.php:986
299
  msgid "Update Forum"
300
  msgstr ""
301
 
302
+ #: includes/admin/admin.php:975 includes/admin/admin.php:1029
303
  msgid "All done!"
304
  msgstr ""
305
 
306
+ #: includes/admin/admin.php:976 includes/admin/admin.php:1030
307
  msgid "Go Back"
308
  msgstr ""
309
 
310
+ #: includes/admin/admin.php:985
311
  msgid ""
312
  "You can update your forum through this page. Hit the link below to update."
313
  msgstr ""
314
 
315
+ #: includes/admin/admin.php:1055
316
  msgid ""
317
  "Warning! Problem updating %1$s. Your server may not be able to connect to "
318
  "sites running on it. Error message: <em>%2$s</em>"
319
  msgstr ""
320
 
321
+ #: includes/admin/admin.php:1079
322
  msgid ""
323
  "If your browser doesn&#8217;t start loading the next page automatically, "
324
  "click this link:"
325
  msgstr ""
326
 
327
+ #: includes/admin/admin.php:1080
328
  msgid "Next Forums"
329
  msgstr ""
330
 
331
+ #: includes/admin/admin.php:1098
332
  msgid ""
333
  "You can update all the forums on your network through this page. It works by "
334
  "calling the update script of each site automatically. Hit the link below to "
736
  #: includes/admin/forums.php:410 includes/admin/settings.php:222
737
  #: includes/admin/settings.php:243 includes/admin/topics.php:632
738
  #: includes/extend/buddypress/activity.php:354
739
+ #: includes/forums/template.php:2601 includes/topics/template.php:47
740
  #: includes/topics/template.php:48
741
  #: templates/default/bbpress/content-statistics.php:27
742
  #: templates/default/bbpress/loop-forums.php:20
747
  #: includes/admin/settings.php:251 includes/admin/topics.php:634
748
  #: includes/core/theme-compat.php:646
749
  #: includes/extend/buddypress/activity.php:355
750
+ #: includes/forums/template.php:2665 includes/replies/template.php:47
751
  #: includes/replies/template.php:48
752
  #: templates/default/bbpress/content-statistics.php:32
753
  #: templates/default/bbpress/loop-forums.php:21
782
  msgid "Forum updated. <a href=\"%s\">View forum</a>"
783
  msgstr ""
784
 
785
+ #: includes/admin/forums.php:532 includes/admin/replies.php:852
786
+ #: includes/admin/topics.php:922
787
  msgid "Custom field updated."
788
  msgstr ""
789
 
790
+ #: includes/admin/forums.php:535 includes/admin/replies.php:855
791
+ #: includes/admin/topics.php:925
792
  msgid "Custom field deleted."
793
  msgstr ""
794
 
820
  msgstr ""
821
 
822
  #. translators: Publish box date format, see http:php.net/date
823
+ #: includes/admin/forums.php:558 includes/admin/replies.php:878
824
+ #: includes/admin/topics.php:948
825
  msgid "M j, Y @ G:i"
826
  msgstr ""
827
 
846
 
847
  #: includes/admin/metaboxes.php:84 includes/admin/settings.php:325
848
  #: includes/replies/template.php:49 includes/replies/template.php:1621
849
+ #: includes/topics/template.php:2921
850
  msgid "Reply"
851
  msgid_plural "Replies"
852
  msgstr[0] ""
853
  msgstr[1] ""
854
 
855
  #: includes/admin/metaboxes.php:103 includes/admin/settings.php:309
856
+ #: includes/topics/template.php:3367
857
  msgid "Topic Tag"
858
  msgid_plural "Topic Tags"
859
  msgstr[0] ""
1197
  msgid "Author"
1198
  msgstr ""
1199
 
1200
+ #: includes/admin/replies.php:625 includes/admin/replies.php:633
1201
  msgid "No Topic"
1202
  msgstr ""
1203
 
1204
+ #: includes/admin/replies.php:651 includes/admin/replies.php:666
1205
+ #: includes/admin/topics.php:687
1206
  msgid "No Forum"
1207
  msgstr ""
1208
 
1209
+ #: includes/admin/replies.php:657
1210
  msgid "(Mismatch)"
1211
  msgstr ""
1212
 
1213
+ #: includes/admin/replies.php:725 includes/admin/topics.php:776
1214
  msgid "View &#8220;%s&#8221;"
1215
  msgstr ""
1216
 
1217
+ #: includes/admin/replies.php:725 includes/admin/topics.php:776
1218
  msgid "View"
1219
  msgstr ""
1220
 
1221
+ #: includes/admin/replies.php:736
1222
  msgid "Mark the reply as not spam"
1223
  msgstr ""
1224
 
1225
+ #: includes/admin/replies.php:736 includes/admin/topics.php:807
1226
  msgid "Not spam"
1227
  msgstr ""
1228
 
1229
+ #: includes/admin/replies.php:738
1230
  msgid "Mark this reply as spam"
1231
  msgstr ""
1232
 
1233
+ #: includes/admin/replies.php:738 includes/admin/topics.php:809
1234
+ #: includes/replies/template.php:2105 includes/topics/template.php:2872
1235
  msgid "Spam"
1236
  msgstr ""
1237
 
1238
+ #: includes/admin/replies.php:747 includes/admin/topics.php:817
1239
+ #: includes/replies/template.php:2047 includes/topics/template.php:2628
1240
  msgid "Restore this item from the Trash"
1241
  msgstr ""
1242
 
1243
+ #: includes/admin/replies.php:747 includes/admin/topics.php:817
1244
+ #: includes/replies/template.php:2035 includes/topics/template.php:2616
1245
  msgid "Restore"
1246
  msgstr ""
1247
 
1248
+ #: includes/admin/replies.php:749 includes/admin/topics.php:819
1249
+ #: includes/replies/template.php:2049 includes/topics/template.php:2630
1250
  msgid "Move this item to the Trash"
1251
  msgstr ""
1252
 
1253
+ #: includes/admin/replies.php:749 includes/admin/topics.php:819
1254
+ #: includes/replies/template.php:2034 includes/topics/template.php:2615
1255
  msgid "Trash"
1256
  msgstr ""
1257
 
1258
+ #: includes/admin/replies.php:753 includes/admin/topics.php:823
1259
+ #: includes/replies/template.php:2053 includes/topics/template.php:2634
1260
  msgid "Delete this item permanently"
1261
  msgstr ""
1262
 
1263
+ #: includes/admin/replies.php:753 includes/admin/topics.php:823
1264
  msgid "Delete Permanently"
1265
  msgstr ""
1266
 
1267
+ #: includes/admin/replies.php:779 includes/admin/topics.php:849
1268
  msgid "Empty Spam"
1269
  msgstr ""
1270
 
1271
+ #: includes/admin/replies.php:789 includes/admin/topics.php:859
1272
  msgid "In all forums"
1273
  msgstr ""
1274
 
1275
+ #: includes/admin/replies.php:849
1276
  msgid "Reply updated. <a href=\"%s\">View topic</a>"
1277
  msgstr ""
1278
 
1279
+ #: includes/admin/replies.php:858
1280
  msgid "Reply updated."
1281
  msgstr ""
1282
 
1283
  #. translators: %s: date and time of the revision
1284
+ #: includes/admin/replies.php:863
1285
  msgid "Reply restored to revision from %s"
1286
  msgstr ""
1287
 
1288
+ #: includes/admin/replies.php:867
1289
  msgid "Reply created. <a href=\"%s\">View topic</a>"
1290
  msgstr ""
1291
 
1292
+ #: includes/admin/replies.php:870
1293
  msgid "Reply saved."
1294
  msgstr ""
1295
 
1296
+ #: includes/admin/replies.php:873
1297
  msgid "Reply submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
1298
  msgstr ""
1299
 
1300
+ #: includes/admin/replies.php:876
1301
  msgid ""
1302
  "Reply scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
1303
  "\">Preview topic</a>"
1304
  msgstr ""
1305
 
1306
+ #: includes/admin/replies.php:883
1307
  msgid "Reply draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
1308
  msgstr ""
1309
 
1382
  msgstr ""
1383
 
1384
  #: includes/admin/settings.php:166 includes/admin/settings.php:333
1385
+ #: includes/common/template.php:2330 includes/search/template.php:225
1386
  #: templates/default/bbpress/form-search.php:17
1387
  msgid "Search"
1388
  msgstr ""
2129
  msgid "All Forums"
2130
  msgstr ""
2131
 
2132
+ #: includes/admin/tools.php:1219 includes/topics/functions.php:3439
2133
  #: includes/topics/template.php:50
2134
  msgid "All Topics"
2135
  msgstr ""
2136
 
2137
+ #: includes/admin/tools.php:1220 includes/replies/functions.php:1994
2138
  #: includes/replies/template.php:50
2139
  msgid "All Replies"
2140
  msgstr ""
2469
  msgid "Voices"
2470
  msgstr ""
2471
 
2472
+ #: includes/admin/topics.php:694 includes/extend/buddypress/groups.php:291
2473
  #: templates/default/bbpress/form-topic.php:117
2474
  msgid "(No Forum)"
2475
  msgstr ""
2476
 
2477
+ #: includes/admin/topics.php:729 includes/topics/template.php:2064
2478
  msgid "No Replies"
2479
  msgstr ""
2480
 
2481
+ #: includes/admin/topics.php:786
2482
  msgid "Close this topic"
2483
  msgstr ""
2484
 
2485
+ #: includes/admin/topics.php:786
2486
  msgctxt "Close a Topic"
2487
  msgid "Close"
2488
  msgstr ""
2489
 
2490
+ #: includes/admin/topics.php:788
2491
  msgid "Open this topic"
2492
  msgstr ""
2493
 
2494
+ #: includes/admin/topics.php:788
2495
  msgctxt "Open a Topic"
2496
  msgid "Open"
2497
  msgstr ""
2498
 
2499
+ #: includes/admin/topics.php:797
2500
  msgid "Unstick this topic"
2501
  msgstr ""
2502
 
2503
+ #: includes/admin/topics.php:797 includes/topics/template.php:2746
2504
  msgid "Unstick"
2505
  msgstr ""
2506
 
2507
+ #: includes/admin/topics.php:800
2508
  msgid "Stick this topic to its forum"
2509
  msgstr ""
2510
 
2511
+ #: includes/admin/topics.php:800 includes/topics/template.php:2745
2512
  msgid "Stick"
2513
  msgstr ""
2514
 
2515
+ #: includes/admin/topics.php:800
2516
  msgid "Stick this topic to front"
2517
  msgstr ""
2518
 
2519
+ #: includes/admin/topics.php:800 includes/topics/template.php:2747
2520
  msgid "(to front)"
2521
  msgstr ""
2522
 
2523
+ #: includes/admin/topics.php:807
2524
  msgid "Mark the topic as not spam"
2525
  msgstr ""
2526
 
2527
+ #: includes/admin/topics.php:809
2528
  msgid "Mark this topic as spam"
2529
  msgstr ""
2530
 
2531
+ #: includes/admin/topics.php:919
2532
  msgid "Topic updated. <a href=\"%s\">View topic</a>"
2533
  msgstr ""
2534
 
2535
+ #: includes/admin/topics.php:928
2536
  msgid "Topic updated."
2537
  msgstr ""
2538
 
2539
  #. translators: %s: date and time of the revision
2540
+ #: includes/admin/topics.php:933
2541
  msgid "Topic restored to revision from %s"
2542
  msgstr ""
2543
 
2544
+ #: includes/admin/topics.php:937
2545
  msgid "Topic created. <a href=\"%s\">View topic</a>"
2546
  msgstr ""
2547
 
2548
+ #: includes/admin/topics.php:940
2549
  msgid "Topic saved."
2550
  msgstr ""
2551
 
2552
+ #: includes/admin/topics.php:943
2553
  msgid "Topic submitted. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2554
  msgstr ""
2555
 
2556
+ #: includes/admin/topics.php:946
2557
  msgid ""
2558
  "Topic scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s"
2559
  "\">Preview topic</a>"
2560
  msgstr ""
2561
 
2562
+ #: includes/admin/topics.php:953
2563
  msgid "Topic draft updated. <a target=\"_blank\" href=\"%s\">Preview topic</a>"
2564
  msgstr ""
2565
 
2706
  "they always return false."
2707
  msgstr ""
2708
 
2709
+ #: includes/common/template.php:1457
2710
  msgid "No topics available"
2711
  msgstr ""
2712
 
2713
+ #: includes/common/template.php:1462
2714
  msgid "No forums available"
2715
  msgstr ""
2716
 
2717
+ #: includes/common/template.php:1467
2718
  msgid "None available"
2719
  msgstr ""
2720
 
2721
+ #: includes/common/template.php:2138
2722
  msgid "Home"
2723
  msgstr ""
2724
 
2725
+ #: includes/common/template.php:2208
2726
  msgid "(Edit)"
2727
  msgstr ""
2728
 
2729
+ #: includes/common/template.php:2212 includes/common/template.php:2326
2730
+ #: includes/common/template.php:2591 includes/core/theme-compat.php:739
2731
  #: templates/default/extras/taxonomy-topic-tag-edit.php:17
2732
  #: templates/default/extras/taxonomy-topic-tag.php:17
2733
  msgid "Topic Tag: %s"
2734
  msgstr ""
2735
 
2736
+ #: includes/common/template.php:2216 includes/forums/template.php:53
2737
  #: includes/replies/template.php:53 includes/replies/template.php:1910
2738
+ #: includes/topics/template.php:53 includes/topics/template.php:2491
2739
  #: templates/default/bbpress/user-details.php:65
2740
  msgid "Edit"
2741
  msgstr ""
2742
 
2743
+ #: includes/common/template.php:2233
2744
  msgid "&lsaquo;"
2745
  msgstr ""
2746
 
2747
+ #: includes/common/template.php:2233
2748
  msgid "&rsaquo;"
2749
  msgstr ""
2750
 
2751
+ #: includes/common/template.php:2501
2752
  msgid "Log Out"
2753
  msgstr ""
2754
 
2755
+ #: includes/common/template.php:2555
2756
  msgid "Forum Edit: %s"
2757
  msgstr ""
2758
 
2759
+ #: includes/common/template.php:2560
2760
  msgid "Topic Edit: %s"
2761
  msgstr ""
2762
 
2763
+ #: includes/common/template.php:2565
2764
  msgid "Reply Edit: %s"
2765
  msgstr ""
2766
 
2767
+ #: includes/common/template.php:2570
2768
  msgid "Topic Tag Edit: %s"
2769
  msgstr ""
2770
 
2771
+ #: includes/common/template.php:2577
2772
  msgid "Forum: %s"
2773
  msgstr ""
2774
 
2775
+ #: includes/common/template.php:2582
2776
  msgid "Topic: %s"
2777
  msgstr ""
2778
 
2779
+ #: includes/common/template.php:2600
2780
  msgctxt "User viewing his/her own profile"
2781
  msgid "Your"
2782
  msgstr ""
2783
 
2784
+ #: includes/common/template.php:2604
2785
  msgctxt "User viewing another users profile"
2786
  msgid "%s's"
2787
  msgstr ""
2788
 
2789
+ #: includes/common/template.php:2609
2790
  msgid "%s Topics"
2791
  msgstr ""
2792
 
2793
+ #: includes/common/template.php:2613
2794
  msgid "%s Replies"
2795
  msgstr ""
2796
 
2797
+ #: includes/common/template.php:2617
2798
  msgid "%s Favorites"
2799
  msgstr ""
2800
 
2801
+ #: includes/common/template.php:2621
2802
  msgid "%s Subscriptions"
2803
  msgstr ""
2804
 
2805
+ #: includes/common/template.php:2625
2806
  msgid "%s Profile"
2807
  msgstr ""
2808
 
2809
+ #: includes/common/template.php:2633
2810
  msgid "Edit Your Profile"
2811
  msgstr ""
2812
 
2813
+ #: includes/common/template.php:2638
2814
  #: templates/default/bbpress/user-details.php:65
2815
  msgid "Edit %s's Profile"
2816
  msgstr ""
2817
 
2818
+ #: includes/common/template.php:2646
2819
  msgid "View: %s"
2820
  msgstr ""
2821
 
3354
  msgid "Unsubscribe"
3355
  msgstr ""
3356
 
3357
+ #: includes/forums/template.php:1238 includes/forums/template.php:1976
3358
  msgid "%s topic"
3359
  msgid_plural "%s topics"
3360
  msgstr[0] ""
3361
  msgstr[1] ""
3362
 
3363
+ #: includes/forums/template.php:1254 includes/topics/template.php:2118
3364
  msgid " (+ %d hidden)"
3365
  msgstr ""
3366
 
3367
+ #: includes/forums/template.php:1965 includes/topics/template.php:2102
3368
  msgid "%s reply"
3369
  msgid_plural "%s replies"
3370
  msgstr[0] ""
3371
  msgstr[1] ""
3372
 
3373
+ #: includes/forums/template.php:1985
3374
  msgid ""
3375
  "This category contains %1$s and %2$s, and was last updated by %3$s %4$s."
3376
  msgstr ""
3377
 
3378
+ #: includes/forums/template.php:1987
3379
  msgid "This forum contains %1$s and %2$s, and was last updated by %3$s %4$s."
3380
  msgstr ""
3381
 
3382
+ #: includes/forums/template.php:1993
3383
  msgid "This category contains %1$s, and was last updated by %2$s %3$s."
3384
  msgstr ""
3385
 
3386
+ #: includes/forums/template.php:1995
3387
  msgid "This forum contains %1$s, and was last updated by %2$s %3$s."
3388
  msgstr ""
3389
 
3390
+ #: includes/forums/template.php:2005
3391
  msgid "This category contains %1$s and %2$s."
3392
  msgstr ""
3393
 
3394
+ #: includes/forums/template.php:2007
3395
  msgid "This forum contains %1$s and %2$s."
3396
  msgstr ""
3397
 
3398
+ #: includes/forums/template.php:2015
3399
  msgid "This category contains %1$s."
3400
  msgstr ""
3401
 
3402
+ #: includes/forums/template.php:2017
3403
  msgid "This forum contains %1$s."
3404
  msgstr ""
3405
 
3406
+ #: includes/forums/template.php:2021
3407
  msgid "This forum is empty."
3408
  msgstr ""
3409
 
3561
  "topics. The reply could not be converted into a topic."
3562
  msgstr ""
3563
 
3564
+ #: includes/replies/functions.php:1530
3565
  msgid "<strong>ERROR:</strong> You do not have the permission to do that!"
3566
  msgstr ""
3567
 
3568
+ #: includes/replies/functions.php:1543
3569
  msgid ""
3570
  "<strong>ERROR</strong>: There was a problem unmarking the reply as spam!"
3571
  msgstr ""
3572
 
3573
+ #: includes/replies/functions.php:1543
3574
  msgid "<strong>ERROR</strong>: There was a problem marking the reply as spam!"
3575
  msgstr ""
3576
 
3577
+ #: includes/replies/functions.php:1562
3578
  msgid "<strong>ERROR</strong>: There was a problem trashing the reply!"
3579
  msgstr ""
3580
 
3581
+ #: includes/replies/functions.php:1570
3582
  msgid "<strong>ERROR</strong>: There was a problem untrashing the reply!"
3583
  msgstr ""
3584
 
3585
+ #: includes/replies/functions.php:1578
3586
  msgid "<strong>ERROR</strong>: There was a problem deleting the reply!"
3587
  msgstr ""
3588
 
3589
+ #: includes/replies/functions.php:1992
3590
  msgid "All Posts"
3591
  msgstr ""
3592
 
3593
+ #: includes/replies/functions.php:2034 includes/topics/functions.php:3464
3594
  msgid "Replies: %s"
3595
  msgstr ""
3596
 
3654
  msgid "Cancel"
3655
  msgstr ""
3656
 
3657
+ #: includes/replies/template.php:2036 includes/topics/template.php:2617
3658
  #: templates/default/bbpress/form-topic-tag.php:88
3659
  #: templates/default/bbpress/form-topic-tag.php:101
3660
  msgid "Delete"
3661
  msgstr ""
3662
 
3663
+ #: includes/replies/template.php:2053 includes/topics/template.php:2634
3664
  msgid "Are you sure you want to delete that permanently?"
3665
  msgstr ""
3666
 
3667
+ #: includes/replies/template.php:2106 includes/topics/template.php:2873
3668
  msgid "Unspam"
3669
  msgstr ""
3670
 
3920
  msgid "Super Sticky"
3921
  msgstr ""
3922
 
3923
+ #: includes/topics/functions.php:2089
3924
  msgid "<strong>ERROR:</strong> You do not have the permission to do that."
3925
  msgstr ""
3926
 
3927
+ #: includes/topics/functions.php:2102
3928
  msgid "<strong>ERROR</strong>: There was a problem closing the topic."
3929
  msgstr ""
3930
 
3931
+ #: includes/topics/functions.php:2102
3932
  msgid "<strong>ERROR</strong>: There was a problem opening the topic."
3933
  msgstr ""
3934
 
3935
+ #: includes/topics/functions.php:2113
3936
  msgid "<strong>ERROR</strong>: There was a problem unsticking the topic."
3937
  msgstr ""
3938
 
3939
+ #: includes/topics/functions.php:2113
3940
  msgid "<strong>ERROR</strong>: There was a problem sticking the topic."
3941
  msgstr ""
3942
 
3943
+ #: includes/topics/functions.php:2123
3944
  msgid ""
3945
  "<strong>ERROR</strong>: There was a problem unmarking the topic as spam."
3946
  msgstr ""
3947
 
3948
+ #: includes/topics/functions.php:2123
3949
  msgid "<strong>ERROR</strong>: There was a problem marking the topic as spam."
3950
  msgstr ""
3951
 
3952
+ #: includes/topics/functions.php:2142
3953
  msgid "<strong>ERROR</strong>: There was a problem trashing the topic."
3954
  msgstr ""
3955
 
3956
+ #: includes/topics/functions.php:2150
3957
  msgid "<strong>ERROR</strong>: There was a problem untrashing the topic."
3958
  msgstr ""
3959
 
3960
+ #: includes/topics/functions.php:2158
3961
  msgid "<strong>ERROR</strong>: There was a problem deleting the topic."
3962
  msgstr ""
3963
 
4005
  msgid "Unfavorite"
4006
  msgstr ""
4007
 
4008
+ #: includes/topics/template.php:2295
4009
  msgid "Tagged:"
4010
  msgstr ""
4011
 
4012
+ #: includes/topics/template.php:2685
4013
  msgctxt "Topic Status"
4014
  msgid "Close"
4015
  msgstr ""
4016
 
4017
+ #: includes/topics/template.php:2686
4018
  msgctxt "Topic Status"
4019
  msgid "Open"
4020
  msgstr ""
4021
 
4022
+ #: includes/topics/template.php:2816
4023
  #: templates/default/bbpress/form-topic-tag.php:59
4024
  #: templates/default/bbpress/form-topic-tag.php:73
4025
  msgid "Merge"
4026
  msgstr ""
4027
 
4028
+ #: includes/topics/template.php:2977
4029
  msgid "Viewing %1$s topic"
4030
  msgid_plural "Viewing %1$s topics"
4031
  msgstr[0] ""
4032
  msgstr[1] ""
4033
 
4034
+ #: includes/topics/template.php:2981
4035
  msgid "Viewing topic %2$s (of %4$s total)"
4036
  msgid_plural "Viewing %1$s topics - %2$s through %3$s (of %4$s total)"
4037
  msgstr[0] ""
4038
  msgstr[1] ""
4039
 
4040
+ #: includes/topics/template.php:3041
4041
  msgid "This topic is marked as spam."
4042
  msgstr ""
4043
 
4044
+ #: includes/topics/template.php:3046
4045
  msgid "This topic is in the trash."
4046
  msgstr ""
4047
 
4048
+ #: includes/topics/template.php:3306
4049
  msgid "%s voice"
4050
  msgid_plural "%s voices"
4051
  msgstr[0] ""
4052
  msgstr[1] ""
4053
 
4054
+ #: includes/topics/template.php:3312
4055
  msgid "This topic contains %1$s, has %2$s, and was last updated by %3$s %4$s."
4056
  msgstr ""
4057
 
4058
+ #: includes/topics/template.php:3316
4059
  msgid "This topic contains %1$s and has %2$s."
4060
  msgstr ""
4061
 
4062
+ #: includes/topics/template.php:3320
4063
  msgid "This topic has no replies."
4064
  msgstr ""
4065
 
4066
+ #: includes/topics/template.php:3366
4067
  #: templates/default/bbpress/content-statistics.php:37
4068
  msgid "Topic Tags"
4069
  msgstr ""
4070
 
4071
+ #: includes/topics/template.php:3368
4072
  msgid "Search Tags"
4073
  msgstr ""
4074
 
4075
+ #: includes/topics/template.php:3369
4076
  msgid "Popular Tags"
4077
  msgstr ""
4078
 
4079
+ #: includes/topics/template.php:3370
4080
  msgid "All Tags"
4081
  msgstr ""
4082
 
4083
+ #: includes/topics/template.php:3371
4084
  msgid "Edit Tag"
4085
  msgstr ""
4086
 
4087
+ #: includes/topics/template.php:3372
4088
  msgid "Update Tag"
4089
  msgstr ""
4090
 
4091
+ #: includes/topics/template.php:3373
4092
  msgid "Add New Tag"
4093
  msgstr ""
4094
 
4095
+ #: includes/topics/template.php:3374
4096
  msgid "New Tag Name"
4097
  msgstr ""
4098
 
4099
+ #: includes/topics/template.php:3375
4100
  msgid "View Topic Tag"
4101
  msgstr ""
4102
 
4939
  msgid "bbPress"
4940
  msgstr ""
4941
 
4942
+ #. #-#-#-#-# plugin.pot (bbPress 2.5.7) #-#-#-#-#
4943
  #. Plugin URI of the plugin/theme
4944
+ #. #-#-#-#-# plugin.pot (bbPress 2.5.7) #-#-#-#-#
4945
  #. Author URI of the plugin/theme
4946
  msgid "http://bbpress.org"
4947
  msgstr ""
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: matt, johnjamesjacoby, jmdodd, netweb
3
  Tags: forums, discussion, support, theme, akismet, multisite
4
  Requires at least: 3.6
5
- Tested up to: 4.1
6
- Stable tag: 2.5.6
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -42,6 +42,9 @@ We're keeping things as small and light as possible while still allowing for gre
42
 
43
  == Changelog ==
44
 
 
 
 
45
  = 2.5.6 =
46
  * Improved notification & subscription email sending
47
 
2
  Contributors: matt, johnjamesjacoby, jmdodd, netweb
3
  Tags: forums, discussion, support, theme, akismet, multisite
4
  Requires at least: 3.6
5
+ Tested up to: 4.2
6
+ Stable tag: 2.5.7
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
42
 
43
  == Changelog ==
44
 
45
+ = 2.5.7 =
46
+ * Improved output of certain URLs
47
+
48
  = 2.5.6 =
49
  * Improved notification & subscription email sending
50
 
templates/default/js/topic.min.js DELETED
@@ -1 +0,0 @@
1
- jQuery(document).ready(function(b){function a(g,d,f,c){var e={action:g,id:d,nonce:f};b.post(bbpTopicJS.bbp_ajaxurl,e,function(h){if(h.success){b(c).html(h.content)}else{if(!h.content){h.content=bbpTopicJS.generic_ajax_error}alert(h.content)}})}b("#favorite-toggle").on("click","span a.favorite-toggle",function(c){c.preventDefault();a("favorite",b(this).attr("data-topic"),bbpTopicJS.fav_nonce,"#favorite-toggle")});b("#subscription-toggle").on("click","span a.subscription-toggle",function(c){c.preventDefault();a("subscription",b(this).attr("data-topic"),bbpTopicJS.subs_nonce,"#subscription-toggle")})});