wpForo Forum - Version 1.7.4

Version Description

Download this release

Release Info

Developer Tomdever
Plugin Icon 128x128 wpForo Forum
Version 1.7.4
Comparing to
See all releases

Code changes from version 1.7.3 to 1.7.4

readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: gVectors Team
3
  Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
4
  Requires at least: 4.1
5
  Tested up to: 5.4
6
- Stable tag: 1.7.3
7
  Requires PHP: 5.6 and higher
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -165,10 +165,22 @@ Find wpForo forum plugin addons on [gVectors Team website...](https://gvectors.c
165
 
166
  == Changelog ==
167
 
168
- = wpForo Forum 1.7.3 | 20.04.2020 =
169
-
170
- [wpForo Forum v1.7.3 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-7-3-is-released/)
171
-
 
 
 
 
 
 
 
 
 
 
 
 
172
  * Updated: Login button on Register page
173
  * Updated: Human readable Views and Post numbers on Threaded Layout topics list
174
  * Updated: Lighter and smaller threaded layout editor for replies.
3
  Tags: forum, forums, forum plugin, WordPress forum plugin, community, discussion
4
  Requires at least: 4.1
5
  Tested up to: 5.4
6
+ Stable tag: 1.7.4
7
  Requires PHP: 5.6 and higher
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
165
 
166
  == Changelog ==
167
 
168
+ = wpForo Forum 1.7.3 / 1.7.4 | 23.04.2020 =
169
+
170
+ [wpForo Forum v1.7.3 / v1.7.4 Release Summary](https://wpforo.com/community/wpforo-announcements/wpforo-1-7-3-is-released/)
171
+
172
+ * wpForo Forum v1.7.4
173
+ * Fixed Bug: Issue with user registration email formatting
174
+ * Fixed Bug: Prevent 3rd party affection of user registration email type
175
+ * Fixed Bug: Admin front-end control panel dark style
176
+ * Fixed Bug: Required fields validation issue in topic editor for quests
177
+ * Fixed Bug: Prevent executing 3rd party heavy SQLs through WP hooks in wpForo
178
+ * Fixed Bug: Only display active users in forum members page
179
+ * Fixed Bug: Only count active users in forum statistic
180
+ * New Hook: If you want to remove the "only active users" restriction for members list and members count in statistic you should use the new hook with this parameter: `add_filter('wpforo_display_members_status', function ( $status ){ return array('active', 'inactive', 'banned'); });`
181
+ * once you put this hook in your active WordPress theme `functions.php`, you should navigate to Dashboard > Forums > Dashboard and click the [Delete All Caches] button. If you have a WordPress child theme, you should only put this code in the child theme `functions.php` file.
182
+ * -------------------------
183
+ * wpForo Forum v1.7.3
184
  * Updated: Login button on Register page
185
  * Updated: Human readable Views and Post numbers on Threaded Layout topics list
186
  * Updated: Lighter and smaller threaded layout editor for replies.
wpf-includes/class-actions.php CHANGED
@@ -1255,23 +1255,30 @@ class wpForoAction {
1255
 
1256
  if( $options = wpfval($_POST, 'wpforo_email_options') ){
1257
  if( !wpfkey( $_POST, 'reset' ) ){
1258
- $options['from_name'] = sanitize_text_field( $options['from_name'] );
1259
- $options['from_email'] = sanitize_text_field( $options['from_email'] );
1260
- $options['admin_emails'] = sanitize_text_field( $options['admin_emails'] );
1261
- $options['new_topic_notify'] = intval( $options['new_topic_notify'] );
1262
- $options['new_reply_notify'] = intval( $options['new_reply_notify'] );
1263
- $options['confirmation_email_subject'] = sanitize_text_field( $options['confirmation_email_subject'] );
1264
- $options['confirmation_email_message'] = wpforo_kses( $options['confirmation_email_message'], 'email' );
1265
- $options['new_topic_notification_email_subject'] = sanitize_text_field( $options['new_topic_notification_email_subject'] );
1266
- $options['new_topic_notification_email_message'] = wpforo_kses( $options['new_topic_notification_email_message'], 'email' );
1267
- $options['new_post_notification_email_subject'] = sanitize_text_field( $options['new_post_notification_email_subject'] );
1268
- $options['new_post_notification_email_message'] = wpforo_kses( $options['new_post_notification_email_message'], 'email' );
1269
- $options['report_email_subject'] = sanitize_text_field( $options['report_email_subject'] );
1270
- $options['report_email_message'] = wpforo_kses( $options['report_email_message'], 'email' );
1271
- $options['reset_password_email_message'] = wpforo_kses( $options['reset_password_email_message'], 'email' );
1272
- $options['user_mention_notify'] = intval( $options['user_mention_notify'] );
1273
- $options['user_mention_email_subject'] = sanitize_text_field( $options['user_mention_email_subject'] );
1274
- $options['user_mention_email_message'] = wpforo_kses( $options['user_mention_email_message'], 'email' );
 
 
 
 
 
 
 
1275
  if ( update_option( 'wpforo_subscribe_options', $options ) ) {
1276
  WPF()->notice->add( 'Email options successfully updated', 'success' );
1277
  } else {
1255
 
1256
  if( $options = wpfval($_POST, 'wpforo_email_options') ){
1257
  if( !wpfkey( $_POST, 'reset' ) ){
1258
+ $options['from_name'] = sanitize_text_field( $options['from_name'] );
1259
+ $options['from_email'] = sanitize_text_field( $options['from_email'] );
1260
+ $options['admin_emails'] = sanitize_text_field( $options['admin_emails'] );
1261
+ $options['new_topic_notify'] = intval( $options['new_topic_notify'] );
1262
+ $options['new_reply_notify'] = intval( $options['new_reply_notify'] );
1263
+ $options['confirmation_email_subject'] = sanitize_text_field( $options['confirmation_email_subject'] );
1264
+ $options['confirmation_email_message'] = wpforo_kses( $options['confirmation_email_message'], 'email' );
1265
+ $options['new_topic_notification_email_subject'] = sanitize_text_field( $options['new_topic_notification_email_subject'] );
1266
+ $options['new_topic_notification_email_message'] = wpforo_kses( $options['new_topic_notification_email_message'], 'email' );
1267
+ $options['new_post_notification_email_subject'] = sanitize_text_field( $options['new_post_notification_email_subject'] );
1268
+ $options['new_post_notification_email_message'] = wpforo_kses( $options['new_post_notification_email_message'], 'email' );
1269
+ $options['report_email_subject'] = sanitize_text_field( $options['report_email_subject'] );
1270
+ $options['report_email_message'] = wpforo_kses( $options['report_email_message'], 'email' );
1271
+ $options['overwrite_new_user_notification_admin'] = intval( $options['overwrite_new_user_notification_admin'] );
1272
+ $options['wp_new_user_notification_email_admin_subject'] = sanitize_text_field( $options['wp_new_user_notification_email_admin_subject'] );
1273
+ $options['wp_new_user_notification_email_admin_message'] = wpforo_kses( $options['wp_new_user_notification_email_admin_message'], 'email' );
1274
+ $options['overwrite_new_user_notification'] = intval( $options['overwrite_new_user_notification'] );
1275
+ $options['wp_new_user_notification_email_subject'] = sanitize_text_field( $options['wp_new_user_notification_email_subject'] );
1276
+ $options['wp_new_user_notification_email_message'] = wpforo_kses( $options['wp_new_user_notification_email_message'], 'email' );
1277
+ $options['overwrite_reset_password_email_message'] = intval( $options['overwrite_reset_password_email_message'] );
1278
+ $options['reset_password_email_message'] = wpforo_kses( $options['reset_password_email_message'], 'email' );
1279
+ $options['user_mention_notify'] = intval( $options['user_mention_notify'] );
1280
+ $options['user_mention_email_subject'] = sanitize_text_field( $options['user_mention_email_subject'] );
1281
+ $options['user_mention_email_message'] = wpforo_kses( $options['user_mention_email_message'], 'email' );
1282
  if ( update_option( 'wpforo_subscribe_options', $options ) ) {
1283
  WPF()->notice->add( 'Email options successfully updated', 'success' );
1284
  } else {
wpf-includes/class-subscribes.php CHANGED
@@ -43,8 +43,6 @@ class wpForoSubscribe{
43
  'wp_new_user_notification_email_message' => __( "Username: [user_login]\n\nTo set your password, visit the following address:\n\n[set_password_url]\n\n", 'wpforo' ),
44
  'overwrite_reset_password_email_message' => 1,
45
  'reset_password_email_message' => __( "Hello! \n\n You asked us to reset your password for your account using the email address [user_login]. \n\n If this was a mistake, or you didn't ask for a password reset, just ignore this email and nothing will happen. \n\n To reset your password, visit the following address: \n\n [reset_password_url] \n\n Thanks!", 'wpforo' ),
46
- //'spam_notification_email_subject' => 'New Banned User',
47
- //'spam_notification_email_message' => "Hello [member_name]!<br>\n Please check this user's topics/posts and consider to Delete or Unban.<br>\n User Activity: [profile_activity_url]",
48
  'user_mention_notify' => 1,
49
  'user_mention_email_subject' => __( "You have been mentioned in forum post", 'wpforo' ),
50
  'user_mention_email_message' => __( "Hi [mentioned-user-name]! <br>\n\n You have been mentioned in a post on \"[topic-title]\" by [author-user-name].<br/><br/>\n\n Post URL: [post-url]", 'wpforo' )
43
  'wp_new_user_notification_email_message' => __( "Username: [user_login]\n\nTo set your password, visit the following address:\n\n[set_password_url]\n\n", 'wpforo' ),
44
  'overwrite_reset_password_email_message' => 1,
45
  'reset_password_email_message' => __( "Hello! \n\n You asked us to reset your password for your account using the email address [user_login]. \n\n If this was a mistake, or you didn't ask for a password reset, just ignore this email and nothing will happen. \n\n To reset your password, visit the following address: \n\n [reset_password_url] \n\n Thanks!", 'wpforo' ),
 
 
46
  'user_mention_notify' => 1,
47
  'user_mention_email_subject' => __( "You have been mentioned in forum post", 'wpforo' ),
48
  'user_mention_email_message' => __( "Hi [mentioned-user-name]! <br>\n\n You have been mentioned in a post on \"[topic-title]\" by [author-user-name].<br/><br/>\n\n Post URL: [post-url]", 'wpforo' )
wpf-includes/class-template.php CHANGED
@@ -211,11 +211,11 @@ class wpForoTemplate{
211
  <div class="wpf-topic-guest-fields">
212
  <div class="wpf-topic-guest-name">
213
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Name') ?> * </label>
214
- <input id="wpf_user_name" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="topic[name]" value="<?php echo esc_attr($guest['name']) ?>" />
215
  </div>
216
  <div class="wpf-topic-guest-email">
217
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Email') ?> * </label>
218
- <input id="wpf_user_email" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="topic[email]" value="<?php echo esc_attr($guest['email']) ?>" />
219
  </div>
220
  <div class="wpf-clear"></div>
221
  </div>
@@ -283,11 +283,11 @@ class wpForoTemplate{
283
  <div class="wpf-topic-guest-fields">
284
  <div class="wpf-topic-guest-name">
285
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Name') ?> * </label>
286
- <input id="wpf_user_name" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="topic[name]" value="<?php echo esc_attr($guest['name']) ?>" />
287
  </div>
288
  <div class="wpf-topic-guest-email">
289
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Email') ?> * </label>
290
- <input id="wpf_user_email" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="topic[email]" value="<?php echo esc_attr($guest['email']) ?>" />
291
  </div>
292
  <div class="wpf-clear"></div>
293
  </div>
@@ -381,11 +381,11 @@ class wpForoTemplate{
381
  <div class="wpf-post-guest-fields">
382
  <div class="wpf-post-guest-name">
383
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Name') ?> * </label>
384
- <input id="wpf_user_name" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="post[name]" value="<?php echo esc_attr($guest['name']) ?>" required />
385
  </div>
386
  <div class="wpf-post-guest-email">
387
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Email') ?> * </label>
388
- <input id="wpf_user_email" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="post[email]" value="<?php echo esc_attr($guest['email']) ?>" required />
389
  </div>
390
  <div class="wpf-clear"></div>
391
  </div>
@@ -459,11 +459,11 @@ class wpForoTemplate{
459
  <div class="wpf-post-guest-fields" style="display: table;">
460
  <div class="wpf-post-guest-name" style="display: table-row;">
461
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Name') ?> * </label>
462
- <input class="wpf_user_name" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="post[name]" value="<?php echo esc_attr($guest['name']) ?>" required />
463
  </div>
464
  <div class="wpf-post-guest-email" style="display: table-row;">
465
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Email') ?> * </label>
466
- <input class="wpf_user_email" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="post[email]" value="<?php echo esc_attr($guest['email']) ?>" required />
467
  </div>
468
  <div class="wpf-clear"></div>
469
  </div>
@@ -513,11 +513,11 @@ class wpForoTemplate{
513
  <div class="wpf-post-guest-fields" style="display: table;">
514
  <div class="wpf-post-guest-name" style="display: table-row;">
515
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Name') ?> * </label>
516
- <input class="wpf_user_name" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="post[name]" value="<?php echo esc_attr($guest['name']) ?>" required />
517
  </div>
518
  <div class="wpf-post-guest-email" style="display: table-row;">
519
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Email') ?> * </label>
520
- <input class="wpf_user_email" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="post[email]" value="<?php echo esc_attr($guest['email']) ?>" required />
521
  </div>
522
  <div class="wpf-clear"></div>
523
  </div>
211
  <div class="wpf-topic-guest-fields">
212
  <div class="wpf-topic-guest-name">
213
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Name') ?> * </label>
214
+ <input id="wpf_user_name" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="topic[name]" value="<?php echo esc_attr($guest['name']) ?>" required>
215
  </div>
216
  <div class="wpf-topic-guest-email">
217
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Email') ?> * </label>
218
+ <input id="wpf_user_email" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="topic[email]" value="<?php echo esc_attr($guest['email']) ?>" required>
219
  </div>
220
  <div class="wpf-clear"></div>
221
  </div>
283
  <div class="wpf-topic-guest-fields">
284
  <div class="wpf-topic-guest-name">
285
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Name') ?> * </label>
286
+ <input id="wpf_user_name" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="topic[name]" value="<?php echo esc_attr($guest['name']) ?>" required>
287
  </div>
288
  <div class="wpf-topic-guest-email">
289
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Email') ?> * </label>
290
+ <input id="wpf_user_email" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="topic[email]" value="<?php echo esc_attr($guest['email']) ?>" required>
291
  </div>
292
  <div class="wpf-clear"></div>
293
  </div>
381
  <div class="wpf-post-guest-fields">
382
  <div class="wpf-post-guest-name">
383
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Name') ?> * </label>
384
+ <input id="wpf_user_name" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="post[name]" value="<?php echo esc_attr($guest['name']) ?>" required>
385
  </div>
386
  <div class="wpf-post-guest-email">
387
  <label style="padding-left:8px;"> <?php wpforo_phrase('Author Email') ?> * </label>
388
+ <input id="wpf_user_email" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="post[email]" value="<?php echo esc_attr($guest['email']) ?>" required>
389
  </div>
390
  <div class="wpf-clear"></div>
391
  </div>
459
  <div class="wpf-post-guest-fields" style="display: table;">
460
  <div class="wpf-post-guest-name" style="display: table-row;">
461
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Name') ?> * </label>
462
+ <input class="wpf_user_name" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="post[name]" value="<?php echo esc_attr($guest['name']) ?>" required>
463
  </div>
464
  <div class="wpf-post-guest-email" style="display: table-row;">
465
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Email') ?> * </label>
466
+ <input class="wpf_user_email" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="post[email]" value="<?php echo esc_attr($guest['email']) ?>" required>
467
  </div>
468
  <div class="wpf-clear"></div>
469
  </div>
513
  <div class="wpf-post-guest-fields" style="display: table;">
514
  <div class="wpf-post-guest-name" style="display: table-row;">
515
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Name') ?> * </label>
516
+ <input class="wpf_user_name" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your name') ) ?>" name="post[name]" value="<?php echo esc_attr($guest['name']) ?>" required>
517
  </div>
518
  <div class="wpf-post-guest-email" style="display: table-row;">
519
  <label style="padding-left:8px; display: table-cell;"> <?php wpforo_phrase('Author Email') ?> * </label>
520
+ <input class="wpf_user_email" style="display: table-cell;" type="text" placeholder="<?php esc_attr( wpforo_phrase('Your email') ) ?>" name="post[email]" value="<?php echo esc_attr($guest['email']) ?>" required>
521
  </div>
522
  <div class="wpf-clear"></div>
523
  </div>
wpf-includes/functions.php CHANGED
@@ -142,20 +142,20 @@ function is_wpforo_shortcode_page($url = ''){
142
  $key = 'is_wpforo_shortcode_page_' . $url;
143
  if( WPF()->sql_cache->is_exist($key) ) return WPF()->sql_cache->get($key);
144
 
145
- $result = !(is_wpforo_url($url) && !WPF()->use_home_url) && has_shortcode( wpforo_get_wp_post_content($url), 'wpforo' );
146
 
147
  WPF()->sql_cache->set($key, $result);
148
  return $result;
149
  }
150
 
151
  function wpforo_get_wp_post_content($url = ''){
152
- $key = 'wpforo_get_wp_post_content_' . $url;
153
- if( WPF()->sql_cache->is_exist($key) ) return WPF()->sql_cache->get($key);
 
154
 
155
- $post_content = '';
156
  if( !wpforo_is_admin() ){
157
- if(!$url) $url = wpforo_get_request_uri();
158
- if( $postid = url_to_postid($url) ){
159
  $post_content = get_post_field('post_content', $postid );
160
  }elseif( $url === wpforo_get_request_uri() ){
161
  global $post;
@@ -1554,13 +1554,16 @@ function wpforo_kses( $string = '', $key = 'post' ){
1554
  if(!$string || !$key) return $string;
1555
  if( $key === 'email' ){
1556
  if( !preg_match('#<p[^<>]*?>#iu', $string) ) $string = wpautop($string);
1557
- $allowed_html = array( 'a' => array( 'href' => array(), 'title' => array()),
1558
- 'blockquote' => array(),
1559
- 'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
 
1560
  'hr' => array(),
1561
  'br' => array(),
1562
- 'p' => array(),
1563
- 'strong' => array(),
 
 
1564
  'style' => array());
1565
  $allowed_html = apply_filters('wpforo_kses_allowed_html_email', $allowed_html);
1566
  }
@@ -1784,7 +1787,7 @@ function wpforo_hook( $name, $args = array() ){
1784
  function wpforo_clean_cache( $template = 'all', $id = 0, $item = array() ){
1785
  do_action( 'wpforo_clean_cache_start', $id, $template );
1786
 
1787
- if( !$pageid = WPF()->pageid ) $pageid = url_to_postid( $_SERVER['REQUEST_URI'] );
1788
  if( intval($pageid) ) clean_post_cache( $pageid );
1789
 
1790
  WPF()->statistic('update', $template);
@@ -2559,4 +2562,186 @@ function wpforo_get_callbacks_for_action( $hook = '' ) {
2559
  global $wp_filter;
2560
  if( empty( $hook ) || !isset( $wp_filter[$hook] ) ) return array();
2561
  return $wp_filter[$hook]->callbacks;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2562
  }
142
  $key = 'is_wpforo_shortcode_page_' . $url;
143
  if( WPF()->sql_cache->is_exist($key) ) return WPF()->sql_cache->get($key);
144
 
145
+ $result = !wpforo_is_admin() && !(is_wpforo_url($url) && !WPF()->use_home_url) && has_shortcode( wpforo_get_wp_post_content($url), 'wpforo' );
146
 
147
  WPF()->sql_cache->set($key, $result);
148
  return $result;
149
  }
150
 
151
  function wpforo_get_wp_post_content($url = ''){
152
+ if(!$url) $url = wpforo_get_request_uri();
153
+ $key = 'wpforo_get_wp_post_content_' . $url;
154
+ if( WPF()->sql_cache->is_exist($key) ) return WPF()->sql_cache->get($key);
155
 
156
+ $post_content = '';
157
  if( !wpforo_is_admin() ){
158
+ if( $postid = wpforo_wp_url_to_postid($url) ){
 
159
  $post_content = get_post_field('post_content', $postid );
160
  }elseif( $url === wpforo_get_request_uri() ){
161
  global $post;
1554
  if(!$string || !$key) return $string;
1555
  if( $key === 'email' ){
1556
  if( !preg_match('#<p[^<>]*?>#iu', $string) ) $string = wpautop($string);
1557
+ $allowed_html = array( 'a' => array( 'href' => array(), 'title' => array(), 'style' => array()),
1558
+ 'img' => array( 'src' => array(), 'width' => array(), 'height' => array(), 'align' => array(), 'alt' => array(), 'style' => array() ),
1559
+ 'blockquote' => array('style' => array()),
1560
+ 'h1' => array('style' => array()), 'h2' => array('style' => array()), 'h3' => array('style' => array()), 'h4' => array('style' => array()), 'h5' => array('style' => array()), 'h6' => array('style' => array()),
1561
  'hr' => array(),
1562
  'br' => array(),
1563
+ 'p' => array('style' => array()),
1564
+ 'strong' => array('style' => array()),
1565
+ 'em' => array('style' => array()),
1566
+ 'del' => array('style' => array()),
1567
  'style' => array());
1568
  $allowed_html = apply_filters('wpforo_kses_allowed_html_email', $allowed_html);
1569
  }
1787
  function wpforo_clean_cache( $template = 'all', $id = 0, $item = array() ){
1788
  do_action( 'wpforo_clean_cache_start', $id, $template );
1789
 
1790
+ if( !$pageid = WPF()->pageid ) $pageid = wpforo_wp_url_to_postid( $_SERVER['REQUEST_URI'] );
1791
  if( intval($pageid) ) clean_post_cache( $pageid );
1792
 
1793
  WPF()->statistic('update', $template);
2562
  global $wp_filter;
2563
  if( empty( $hook ) || !isset( $wp_filter[$hook] ) ) return array();
2564
  return $wp_filter[$hook]->callbacks;
2565
+ }
2566
+
2567
+ /**
2568
+ * The optimized version of wordpress url_to_postid($url) function
2569
+ *
2570
+ * Examine a URL and try to determine the post ID it represents.
2571
+ *
2572
+ * Checks are supposedly from the hosted site blog.
2573
+ *
2574
+ * @since 1.7.4
2575
+ *
2576
+ * @global WP_Rewrite $wp_rewrite WordPress rewrite component.
2577
+ * @global WP $wp Current WordPress environment instance.
2578
+ *
2579
+ * @param string $url Permalink to check.
2580
+ * @return int Post ID, or 0 on failure.
2581
+ */
2582
+ function wpforo_wp_url_to_postid($url) {
2583
+ $key = 'wpforo_wp_url_to_postid_' . $url;
2584
+ if( WPF()->sql_cache->is_exist($key) ) return WPF()->sql_cache->get($key);
2585
+
2586
+ if( strpos($url, admin_url()) !== false ){
2587
+ WPF()->sql_cache->set($key, 0);
2588
+ return 0;
2589
+ }
2590
+
2591
+ global $wp_rewrite;
2592
+
2593
+ $url_host = str_replace( 'www.', '', parse_url( $url, PHP_URL_HOST ) );
2594
+ $home_url_host = str_replace( 'www.', '', parse_url( home_url(), PHP_URL_HOST ) );
2595
+
2596
+ // Bail early if the URL does not belong to this site.
2597
+ if ( $url_host && $url_host !== $home_url_host ) {
2598
+ WPF()->sql_cache->set($key, 0);
2599
+ return 0;
2600
+ }
2601
+
2602
+ // First, check to see if there is a 'p=N' or 'page_id=N' to match against.
2603
+ if ( preg_match( '#[?&](p|page_id|attachment_id)=(\d+)#', $url, $values ) ) {
2604
+ $id = absint( $values[2] );
2605
+ if ( $id ) {
2606
+ WPF()->sql_cache->set($key, $id);
2607
+ return $id;
2608
+ }
2609
+ }
2610
+
2611
+ // Get rid of the #anchor.
2612
+ $url_split = explode( '#', $url );
2613
+ $url = $url_split[0];
2614
+
2615
+ // Get rid of URL ?query=string.
2616
+ $url_split = explode( '?', $url );
2617
+ $url = $url_split[0];
2618
+
2619
+ // Set the correct URL scheme.
2620
+ $scheme = parse_url( home_url(), PHP_URL_SCHEME );
2621
+ $url = set_url_scheme( $url, $scheme );
2622
+
2623
+ // Add 'www.' if it is absent and should be there.
2624
+ if ( false !== strpos( home_url(), '://www.' ) && false === strpos( $url, '://www.' ) ) {
2625
+ $url = str_replace( '://', '://www.', $url );
2626
+ }
2627
+
2628
+ // Strip 'www.' if it is present and shouldn't be.
2629
+ if ( false === strpos( home_url(), '://www.' ) ) {
2630
+ $url = str_replace( '://www.', '://', $url );
2631
+ }
2632
+
2633
+ if ( trim( $url, '/' ) === home_url() && 'page' == get_option( 'show_on_front' ) ) {
2634
+ $page_on_front = get_option( 'page_on_front' );
2635
+
2636
+ if ( $page_on_front && get_post( $page_on_front ) instanceof WP_Post ) {
2637
+ WPF()->sql_cache->set($key, (int) $page_on_front);
2638
+ return (int) $page_on_front;
2639
+ }
2640
+ }
2641
+
2642
+ // Check to see if we are using rewrite rules.
2643
+ $rewrite = $wp_rewrite->wp_rewrite_rules();
2644
+
2645
+ // Not using rewrite rules, and 'p=N' and 'page_id=N' methods failed, so we're out of options.
2646
+ if ( empty( $rewrite ) ) {
2647
+ WPF()->sql_cache->set($key, 0);
2648
+ return 0;
2649
+ }
2650
+
2651
+ // Strip 'index.php/' if we're not using path info permalinks.
2652
+ if ( ! $wp_rewrite->using_index_permalinks() ) {
2653
+ $url = str_replace( $wp_rewrite->index . '/', '', $url );
2654
+ }
2655
+
2656
+ if ( false !== strpos( trailingslashit( $url ), home_url( '/' ) ) ) {
2657
+ // Chop off http://domain.com/[path].
2658
+ $url = str_replace( home_url(), '', $url );
2659
+ } else {
2660
+ // Chop off /path/to/blog.
2661
+ $home_path = parse_url( home_url( '/' ) );
2662
+ $home_path = isset( $home_path['path'] ) ? $home_path['path'] : '';
2663
+ $url = preg_replace( sprintf( '#^%s#', preg_quote( $home_path ) ), '', trailingslashit( $url ) );
2664
+ }
2665
+
2666
+ // Trim leading and lagging slashes.
2667
+ $url = trim( $url, '/' );
2668
+
2669
+ $request = $url;
2670
+ $post_type_query_vars = array();
2671
+
2672
+ foreach ( get_post_types( array(), 'objects' ) as $post_type => $t ) {
2673
+ if ( ! empty( $t->query_var ) ) {
2674
+ $post_type_query_vars[ $t->query_var ] = $post_type;
2675
+ }
2676
+ }
2677
+
2678
+ // Look for matches.
2679
+ $request_match = $request;
2680
+ foreach ( (array) $rewrite as $match => $query ) {
2681
+
2682
+ // If the requesting file is the anchor of the match,
2683
+ // prepend it to the path info.
2684
+ if ( ! empty( $url ) && ( $url != $request ) && ( strpos( $match, $url ) === 0 ) ) {
2685
+ $request_match = $url . '/' . $request;
2686
+ }
2687
+
2688
+ if ( preg_match( "#^$match#", $request_match, $matches ) ) {
2689
+
2690
+ if ( $wp_rewrite->use_verbose_page_rules && preg_match( '/pagename=\$matches\[([0-9]+)\]/', $query, $varmatch ) ) {
2691
+ // This is a verbose page match, let's check to be sure about it.
2692
+ $page = get_page_by_path( $matches[ $varmatch[1] ] );
2693
+ if ( ! $page ) {
2694
+ continue;
2695
+ }
2696
+
2697
+ $post_status_obj = get_post_status_object( $page->post_status );
2698
+ if ( ! $post_status_obj->public && ! $post_status_obj->protected
2699
+ && ! $post_status_obj->private && $post_status_obj->exclude_from_search ) {
2700
+ continue;
2701
+ }
2702
+ }
2703
+
2704
+ // Got a match.
2705
+ // Trim the query of everything up to the '?'.
2706
+ $query = preg_replace( '!^.+\?!', '', $query );
2707
+
2708
+ // Substitute the substring matches into the query.
2709
+ $query = addslashes( WP_MatchesMapRegex::apply( $query, $matches ) );
2710
+
2711
+ // Filter out non-public query vars.
2712
+ global $wp;
2713
+ parse_str( $query, $query_vars );
2714
+ $query = array();
2715
+ foreach ( (array) $query_vars as $key => $value ) {
2716
+ if ( in_array( $key, $wp->public_query_vars ) ) {
2717
+ $query[ $key ] = $value;
2718
+ if ( isset( $post_type_query_vars[ $key ] ) ) {
2719
+ $query['post_type'] = $post_type_query_vars[ $key ];
2720
+ $query['name'] = $value;
2721
+ }
2722
+ }
2723
+ }
2724
+
2725
+ // Resolve conflicts between posts with numeric slugs and date archive queries.
2726
+ $query = wp_resolve_numeric_slug_conflicts( $query );
2727
+
2728
+ // Do the query.
2729
+ if( wpfval($query, 'pagename') || wpfval($query, 'name') || wpfval($query, 'p') || wpfval($query, 'page_id') ){
2730
+ $query = new WP_Query( $query );
2731
+ if ( ! empty( $query->posts ) && $query->is_singular ) {
2732
+ WPF()->sql_cache->set($key, $query->post->ID);
2733
+ return $query->post->ID;
2734
+ } else {
2735
+ WPF()->sql_cache->set($key, 0);
2736
+ return 0;
2737
+ }
2738
+ }else{
2739
+ WPF()->sql_cache->set($key, 0);
2740
+ return 0;
2741
+ }
2742
+
2743
+ }
2744
+ }
2745
+ WPF()->sql_cache->set($key, 0);
2746
+ return 0;
2747
  }
wpf-includes/integration/legal.php CHANGED
@@ -103,7 +103,7 @@ function wpforo_legal_checkbox_terms_privacy(){
103
 
104
  if(wpfval($set, 'page_terms')){
105
  $term_url = $set['page_terms'];
106
- $term_pageid = url_to_postid( $term_url );
107
  $str_terms = wpforo_phrase('Terms', false);
108
  $term_title = ($term_pageid) ? get_the_title( $term_pageid ) : $str_terms;
109
  $str_terms = ' <a href="' . esc_url( $term_url ) . '" title="' . esc_attr( $term_title ) . '">' . $str_terms . ' </a>';
@@ -111,7 +111,7 @@ function wpforo_legal_checkbox_terms_privacy(){
111
 
112
  if(wpfval($set, 'page_privacy')){
113
  $privacy_url = $set['page_privacy'];
114
- $privacy_pageid = url_to_postid( $privacy_url );
115
  $str_privacy = wpforo_phrase('Privacy Policy', false);
116
  $privacy_title = ($privacy_pageid) ? get_the_title( $privacy_pageid ) : $str_privacy;
117
  $str_privacy = ' <a href="' . esc_url( $privacy_url ) . '" title="' . esc_attr( $privacy_title ) . '">' . $str_privacy . ' </a>';
103
 
104
  if(wpfval($set, 'page_terms')){
105
  $term_url = $set['page_terms'];
106
+ $term_pageid = wpforo_wp_url_to_postid( $term_url );
107
  $str_terms = wpforo_phrase('Terms', false);
108
  $term_title = ($term_pageid) ? get_the_title( $term_pageid ) : $str_terms;
109
  $str_terms = ' <a href="' . esc_url( $term_url ) . '" title="' . esc_attr( $term_title ) . '">' . $str_terms . ' </a>';
111
 
112
  if(wpfval($set, 'page_privacy')){
113
  $privacy_url = $set['page_privacy'];
114
+ $privacy_pageid = wpforo_wp_url_to_postid( $privacy_url );
115
  $str_privacy = wpforo_phrase('Privacy Policy', false);
116
  $privacy_title = ($privacy_pageid) ? get_the_title( $privacy_pageid ) : $str_privacy;
117
  $str_privacy = ' <a href="' . esc_url( $privacy_url ) . '" title="' . esc_attr( $privacy_title ) . '">' . $str_privacy . ' </a>';
wpf-includes/wpf-hooks.php CHANGED
@@ -198,7 +198,7 @@ function wpforo_init_template(){
198
 
199
  add_shortcode( 'wpforo', 'wpforo_load' );
200
  function wpforo_load( $atts ){
201
- if(wpforo_is_admin()) return '';
202
  if( apply_filters('on_wpforo_load_remove_the_content_all_filters', false) ) remove_all_filters('the_content');
203
  if(wpforo_feature('output-buffer') && function_exists('ob_start')){
204
  if( wpforo_feature('html_cashe') ){
@@ -740,7 +740,7 @@ function wpf_report(){
740
  $admin_email = (isset($admin_emails[0]) && $admin_emails[0]) ? $admin_emails[0] : $admin_email;
741
  $headers = wpforo_admin_mail_headers();
742
 
743
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
744
  if( wp_mail( $admin_email, $subject, $message, $headers ) ){
745
  remove_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
746
  }else{
@@ -985,7 +985,7 @@ function wpf_subscribe(){
985
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
986
  $message = wpforo_kses($message, 'email');
987
 
988
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
989
  $headers = wpforo_mail_headers();
990
 
991
  if( wp_mail( WPF()->current_user_email , sanitize_text_field($subject), $message, $headers ) ){
@@ -1155,6 +1155,10 @@ function wpforo_set_html_content_type(){
1155
  return apply_filters('wpforo_emails_content_type', 'text/html');
1156
  }
1157
 
 
 
 
 
1158
  function wpforo_wp_mail_from_name($name){
1159
  if(isset(WPF()->sbscrb->options['from_name']) && WPF()->sbscrb->options['from_name']){
1160
  return WPF()->sbscrb->options['from_name'];
@@ -1747,7 +1751,7 @@ function wpforo_send_mail_to_mentioned_users($item){
1747
  $_subject = str_replace($_from_tags, $_to_words, $_subject);
1748
  $_message = str_replace($_from_tags, $_to_words, $_message);
1749
 
1750
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
1751
  $headers = wpforo_mail_headers();
1752
 
1753
  foreach ( $matches as $match ){
@@ -1869,7 +1873,7 @@ function wpforo_topic_auto_subscribe($item){
1869
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
1870
  $message = wpforo_kses($message, 'email');
1871
 
1872
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
1873
  $headers = wpforo_mail_headers();
1874
 
1875
  if( wp_mail( WPF()->current_user_email, sanitize_text_field($subject), $message, $headers ) ){
@@ -1977,7 +1981,7 @@ function wpforo_forum_subscribers_mail_sender( $topic ){
1977
  $subject = stripslashes(strip_tags(str_replace($from_tags, $to_words, $subject)));
1978
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
1979
 
1980
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
1981
  $headers = wpforo_mail_headers();
1982
  $subject = $subject_prefix . $subject;
1983
  $message = $message . $mod_text;
@@ -2076,7 +2080,7 @@ function wpforo_topic_subscribers_mail_sender( $post ){
2076
  $subject = stripslashes(strip_tags(str_replace($from_tags, $to_words, $subject)));
2077
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
2078
 
2079
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
2080
  $headers = wpforo_mail_headers();
2081
  $subject = $subject_prefix . $subject;
2082
  $message = $message . $mod_text;
@@ -2371,12 +2375,12 @@ function wpforo_replace_retrieve_password_message( $message, $key, $user_login =
2371
  array($user_login, $reset_password_url),
2372
  WPF()->sbscrb->options['reset_password_email_message']
2373
  );
2374
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
2375
  }
2376
 
2377
  return $message;
2378
  }
2379
- add_filter( 'retrieve_password_message', 'wpforo_replace_retrieve_password_message', 10, 4 );
2380
 
2381
  function wpforo_user_field_shortcode_to_value($shortcode, $userid = NULL){
2382
  $value = NULL;
@@ -2393,7 +2397,7 @@ function wpforo_new_user_notification_email_admin($wp_new_user_notification_emai
2393
  if( WPF()->sbscrb->options['overwrite_new_user_notification_admin'] ){
2394
  $wp_new_user_notification_email_admin['subject'] = str_replace('[blogname]', '['.$blogname.']', WPF()->sbscrb->options['wp_new_user_notification_email_admin_subject']);
2395
  $wp_new_user_notification_email_admin['message'] = str_replace('[blogname]', $blogname, WPF()->sbscrb->options['wp_new_user_notification_email_admin_message'] );
2396
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
2397
  }
2398
  $userid = $user->ID;
2399
  $wp_new_user_notification_email_admin['message'] = preg_replace_callback(
@@ -2408,7 +2412,7 @@ function wpforo_new_user_notification_email_admin($wp_new_user_notification_emai
2408
 
2409
  return $wp_new_user_notification_email_admin;
2410
  }
2411
- add_filter('wp_new_user_notification_email_admin', 'wpforo_new_user_notification_email_admin', 10, 3);
2412
 
2413
  function wpforo_new_user_notification_email($wp_new_user_notification_email, $user, $blogname){
2414
  $set_password_url = '';
@@ -2428,12 +2432,12 @@ function wpforo_new_user_notification_email($wp_new_user_notification_email, $us
2428
  array($user->user_login, $set_password_url),
2429
  WPF()->sbscrb->options['wp_new_user_notification_email_message']
2430
  );
2431
- add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
2432
  }
2433
 
2434
  return $wp_new_user_notification_email;
2435
  }
2436
- add_filter('wp_new_user_notification_email', 'wpforo_new_user_notification_email', 10, 3);
2437
 
2438
  function wpforo_get_wprp_url_pattern(){
2439
  return '#(?:<\s*)?https?://\S+?wp-login\.php\?action=rp&key=(?<key>[^?&=\s]+)\S+(?:\s*>)?#isu';
198
 
199
  add_shortcode( 'wpforo', 'wpforo_load' );
200
  function wpforo_load( $atts ){
201
+ if(!is_wpforo_page()) return '<b>' . wpforo_phrase('This is out of wpForo forum environment.', false, 'lower') . '</b>';
202
  if( apply_filters('on_wpforo_load_remove_the_content_all_filters', false) ) remove_all_filters('the_content');
203
  if(wpforo_feature('output-buffer') && function_exists('ob_start')){
204
  if( wpforo_feature('html_cashe') ){
740
  $admin_email = (isset($admin_emails[0]) && $admin_emails[0]) ? $admin_emails[0] : $admin_email;
741
  $headers = wpforo_admin_mail_headers();
742
 
743
+ add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type', 999 );
744
  if( wp_mail( $admin_email, $subject, $message, $headers ) ){
745
  remove_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type' );
746
  }else{
985
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
986
  $message = wpforo_kses($message, 'email');
987
 
988
+ add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type', 999 );
989
  $headers = wpforo_mail_headers();
990
 
991
  if( wp_mail( WPF()->current_user_email , sanitize_text_field($subject), $message, $headers ) ){
1155
  return apply_filters('wpforo_emails_content_type', 'text/html');
1156
  }
1157
 
1158
+ function __wpforo_set_html_content_type(){
1159
+ return 'text/html';
1160
+ }
1161
+
1162
  function wpforo_wp_mail_from_name($name){
1163
  if(isset(WPF()->sbscrb->options['from_name']) && WPF()->sbscrb->options['from_name']){
1164
  return WPF()->sbscrb->options['from_name'];
1751
  $_subject = str_replace($_from_tags, $_to_words, $_subject);
1752
  $_message = str_replace($_from_tags, $_to_words, $_message);
1753
 
1754
+ add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type', 999 );
1755
  $headers = wpforo_mail_headers();
1756
 
1757
  foreach ( $matches as $match ){
1873
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
1874
  $message = wpforo_kses($message, 'email');
1875
 
1876
+ add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type', 999 );
1877
  $headers = wpforo_mail_headers();
1878
 
1879
  if( wp_mail( WPF()->current_user_email, sanitize_text_field($subject), $message, $headers ) ){
1981
  $subject = stripslashes(strip_tags(str_replace($from_tags, $to_words, $subject)));
1982
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
1983
 
1984
+ add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type', 999 );
1985
  $headers = wpforo_mail_headers();
1986
  $subject = $subject_prefix . $subject;
1987
  $message = $message . $mod_text;
2080
  $subject = stripslashes(strip_tags(str_replace($from_tags, $to_words, $subject)));
2081
  $message = stripslashes(str_replace($from_tags, $to_words, $message));
2082
 
2083
+ add_filter( 'wp_mail_content_type', 'wpforo_set_html_content_type', 999 );
2084
  $headers = wpforo_mail_headers();
2085
  $subject = $subject_prefix . $subject;
2086
  $message = $message . $mod_text;
2375
  array($user_login, $reset_password_url),
2376
  WPF()->sbscrb->options['reset_password_email_message']
2377
  );
2378
+ add_filter( 'wp_mail_content_type', '__wpforo_set_html_content_type', 999 );
2379
  }
2380
 
2381
  return $message;
2382
  }
2383
+ add_filter( 'retrieve_password_message', 'wpforo_replace_retrieve_password_message', 999, 4 );
2384
 
2385
  function wpforo_user_field_shortcode_to_value($shortcode, $userid = NULL){
2386
  $value = NULL;
2397
  if( WPF()->sbscrb->options['overwrite_new_user_notification_admin'] ){
2398
  $wp_new_user_notification_email_admin['subject'] = str_replace('[blogname]', '['.$blogname.']', WPF()->sbscrb->options['wp_new_user_notification_email_admin_subject']);
2399
  $wp_new_user_notification_email_admin['message'] = str_replace('[blogname]', $blogname, WPF()->sbscrb->options['wp_new_user_notification_email_admin_message'] );
2400
+ add_filter( 'wp_mail_content_type', '__wpforo_set_html_content_type', 999 );
2401
  }
2402
  $userid = $user->ID;
2403
  $wp_new_user_notification_email_admin['message'] = preg_replace_callback(
2412
 
2413
  return $wp_new_user_notification_email_admin;
2414
  }
2415
+ add_filter('wp_new_user_notification_email_admin', 'wpforo_new_user_notification_email_admin', 999, 3);
2416
 
2417
  function wpforo_new_user_notification_email($wp_new_user_notification_email, $user, $blogname){
2418
  $set_password_url = '';
2432
  array($user->user_login, $set_password_url),
2433
  WPF()->sbscrb->options['wp_new_user_notification_email_message']
2434
  );
2435
+ add_filter( 'wp_mail_content_type', '__wpforo_set_html_content_type', 999 );
2436
  }
2437
 
2438
  return $wp_new_user_notification_email;
2439
  }
2440
+ add_filter('wp_new_user_notification_email', 'wpforo_new_user_notification_email', 999, 3);
2441
 
2442
  function wpforo_get_wprp_url_pattern(){
2443
  return '#(?:<\s*)?https?://\S+?wp-login\.php\?action=rp&key=(?<key>[^?&=\s]+)\S+(?:\s*>)?#isu';
wpf-languages/wpforo-it_IT.mo CHANGED
Binary file
wpf-languages/wpforo-it_IT.po CHANGED
@@ -3,8 +3,9 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Forum - wpForo\n"
6
- "POT-Creation-Date: 2020-03-28 22:31+0400\n"
7
- "PO-Revision-Date: 2020-03-29 23:18+0000\n"
 
8
  "Last-Translator: Simone <sygy@pilloledolanda.it>\n"
9
  "Language-Team: Italiano\n"
10
  "Language: it_IT\n"
@@ -12,17 +13,16 @@ msgstr ""
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
- "X-Generator: Loco https://localise.biz/\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-WPHeader: wpforo.php\n"
18
  "X-Poedit-SourceCharset: UTF-8\n"
19
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
20
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
21
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
 
22
  "X-Poedit-SearchPath-0: .\n"
23
  "X-Poedit-SearchPathExcluded-0: *.js\n"
24
- "Report-Msgid-Bugs-To: \n"
25
- "X-Loco-Version: 2.3.1; wp-5.3.2"
26
 
27
  #: wpf-admin/addons.php:14 wpf-admin/addons.php:22
28
  msgid "wpForo Addons"
@@ -88,49 +88,49 @@ msgstr "Dashboard"
88
  #: wpf-admin/options.php:15 wpf-admin/tools-tabs/misc.php:93
89
  #: wpf-includes/integration/buddypress.php:11
90
  #: wpf-includes/integration/buddypress.php:57
91
- #: wpf-includes/integration/buddypress.php:129 wpf-includes/wpf-hooks.php:2567
92
  #: wpf-includes/wpf-phrases.php:309
93
  msgid "Forums"
94
  msgstr "Forum"
95
 
96
  #: wpf-admin/admin.php:43 wpf-includes/wpf-hooks.php:22
97
- #: wpf-includes/wpf-hooks.php:2573
98
  msgid "Settings"
99
  msgstr "Configurazione"
100
 
101
- #: wpf-admin/admin.php:46 wpf-includes/wpf-hooks.php:2577
102
  #: wpf-includes/wpf-phrases.php:914
103
  msgid "Tools"
104
  msgstr "Strumenti"
105
 
106
- #: wpf-admin/admin.php:49 wpf-includes/wpf-hooks.php:2581
107
  msgid "Moderation"
108
  msgstr "Moderazione"
109
 
110
  #: wpf-admin/admin.php:52 wpf-admin/dashboard.php:149 wpf-admin/member.php:10
111
  #: wpf-admin/options.php:18 wpf-admin/tools-tabs/misc.php:113
112
- #: wpf-admin/usergroup.php:36 wpf-includes/wpf-hooks.php:2585
113
  #: wpf-includes/wpf-phrases.php:364
114
  msgid "Members"
115
  msgstr "Utenti"
116
 
117
  #: wpf-admin/admin.php:55 wpf-admin/usergroup.php:11
118
- #: wpf-admin/usergroup.php:155 wpf-includes/wpf-hooks.php:2589
119
  msgid "Usergroups"
120
  msgstr "Gruppi utenti"
121
 
122
- #: wpf-admin/admin.php:58 wpf-includes/wpf-hooks.php:2595
123
  #: wpf-includes/wpf-phrases.php:789
124
  msgid "Phrases"
125
  msgstr "Traduzioni"
126
 
127
- #: wpf-admin/admin.php:61 wpf-includes/wpf-hooks.php:2601
128
  #: wpf-includes/wpf-phrases.php:790
129
  msgid "Themes"
130
  msgstr "Temi"
131
 
132
  #: wpf-admin/admin.php:64 wpf-admin/options.php:24
133
- #: wpf-includes/wpf-hooks.php:2605 wpf-includes/wpf-phrases.php:211
134
  msgid "Addons"
135
  msgstr "Componenti Aggiuntivi"
136
 
@@ -412,7 +412,7 @@ msgstr "Fornisci un nome o un URL del plug-in"
412
  msgid "Other"
413
  msgstr "Altro"
414
 
415
- #: wpf-admin/deactivation-dialog.php:142 wpf-includes/wpf-hooks.php:1345
416
  msgid "Please provide more information"
417
  msgstr "Per favore fornisci più informazioni"
418
 
@@ -495,8 +495,8 @@ msgstr "Aggiungi nuovo"
495
  #: wpf-themes/classic/functions.php:65 wpf-themes/classic/functions.php:72
496
  #: wpf-themes/classic/functions.php:82 wpf-themes/classic/functions.php:91
497
  #: wpf-themes/classic/functions.php:100 wpf-themes/classic/functions.php:109
498
- #: wpf-themes/classic/functions.php:116 wpf-themes/classic/functions.php:132
499
- #: wpf-themes/classic/functions.php:142
500
  msgid "Read the documentation"
501
  msgstr "Leggi la documentazione"
502
 
@@ -526,11 +526,11 @@ msgid ""
526
  "want. Child forums' layout depends on the top category (blue panels) layout. "
527
  "They cannot have a different layout."
528
  msgstr ""
529
- "I forum possono essere visualizzati con diversi layout (esteso, semplificato,"
530
- " domande e risposte, discussione), basta modificare la categoria superiore "
531
- "(pannelli blu) e impostare il layout desiderato. Il layout dei forum "
532
- "secondari dipende dal layout della categoria superiore (pannelli blu). Non "
533
- "possono avere un layout diverso."
534
 
535
  #: wpf-admin/forum.php:77 wpf-includes/wpf-phrases.php:458
536
  msgid "Save forums order and hierarchy"
@@ -587,7 +587,7 @@ msgstr "Sei sicuro di voler eliminare questo forum?"
587
  #: wpf-admin/includes/moderation-listtable.php:92
588
  #: wpf-admin/includes/moderation-listtable.php:193 wpf-admin/themes.php:68
589
  #: wpf-admin/tools-tabs/antispam.php:313 wpf-admin/usergroup.php:75
590
- #: wpf-admin/usergroup.php:276 wpf-includes/wpf-hooks.php:1338
591
  #: wpf-includes/wpf-phrases.php:252
592
  msgid "Delete"
593
  msgstr "Cancella"
@@ -632,10 +632,10 @@ msgid ""
632
  "cannot have a different layout, therefore the layout dropdown option becomes "
633
  "disabled if this forum is not a Category."
634
  msgstr ""
635
- "I forum possono essere visualizzati con diversi layout (esteso, semplificato,"
636
- " domande e risposte, thread). Utilizzare il menu a discesa \"Layout "
637
- "categoria\" situato nella sezione in alto a destra per impostare il layout "
638
- "desiderato. Questa opzione è disponibile solo per le categorie (forum "
639
  "principali). Altri forum e forum secondari lo ereditano. Non possono avere "
640
  "un layout diverso, pertanto l'opzione a discesa del layout viene "
641
  "disabilitata se questo forum non è una categoria."
@@ -692,8 +692,8 @@ msgstr ""
692
 
693
  #: wpf-admin/forum.php:360 wpf-includes/wpf-phrases.php:323
694
  msgid ""
695
- "If you want to delete this forum and keep its sub-forums, topics and replies,"
696
- " please select a new target forum in dropdown below"
697
  msgstr ""
698
  "Se si desidera eliminare questo forum e conservare i relativi forum "
699
  "secondari, discussioni e risposte, selezionare un nuovo forum di "
@@ -1195,13 +1195,13 @@ msgstr ""
1195
 
1196
  #: wpf-admin/options-tabs/api.php:200 wpf-includes/wpf-phrases.php:241
1197
  #: wpf-themes/classic/functions.php:30 wpf-themes/classic/functions.php:60
1198
- #: wpf-themes/classic/functions.php:86 wpf-themes/classic/functions.php:136
1199
  msgid "Collapsed"
1200
  msgstr "Comprimi"
1201
 
1202
  #: wpf-admin/options-tabs/api.php:201 wpf-includes/wpf-phrases.php:275
1203
  #: wpf-themes/classic/functions.php:29 wpf-themes/classic/functions.php:59
1204
- #: wpf-themes/classic/functions.php:85 wpf-themes/classic/functions.php:135
1205
  msgid "Expanded"
1206
  msgstr "Espandi"
1207
 
@@ -1232,7 +1232,7 @@ msgstr ""
1232
  "generali possono essere visualizzati in entrambe le posizioni (superiore e "
1233
  "inferiore)"
1234
 
1235
- #: wpf-admin/options-tabs/api.php:250 wpf-admin/options-tabs/emails.php:283
1236
  #: wpf-admin/options-tabs/features.php:98 wpf-admin/options-tabs/forums.php:29
1237
  #: wpf-admin/options-tabs/general.php:106
1238
  #: wpf-admin/options-tabs/members.php:195 wpf-admin/options-tabs/posts.php:257
@@ -1242,7 +1242,7 @@ msgstr ""
1242
  msgid "Update Options"
1243
  msgstr "Aggiorna impostazioni"
1244
 
1245
- #: wpf-admin/options-tabs/api.php:251 wpf-admin/options-tabs/emails.php:284
1246
  #: wpf-admin/options-tabs/features.php:99 wpf-admin/options-tabs/forums.php:30
1247
  #: wpf-admin/options-tabs/general.php:107
1248
  #: wpf-admin/options-tabs/members.php:196 wpf-admin/options-tabs/posts.php:258
@@ -1286,35 +1286,37 @@ msgstr ""
1286
 
1287
  #: wpf-admin/options-tabs/emails.php:43 wpf-admin/options-tabs/emails.php:55
1288
  #: wpf-admin/options-tabs/emails.php:165 wpf-admin/options-tabs/emails.php:202
1289
- #: wpf-admin/options-tabs/emails.php:256 wpf-admin/options-tabs/features.php:86
1290
- #: wpf-admin/tools-tabs/antispam.php:32 wpf-admin/tools-tabs/antispam.php:41
1291
- #: wpf-admin/tools-tabs/antispam.php:50 wpf-admin/tools-tabs/antispam.php:90
1292
- #: wpf-admin/tools-tabs/antispam.php:161 wpf-admin/tools-tabs/antispam.php:170
1293
- #: wpf-admin/tools-tabs/antispam.php:180 wpf-admin/tools-tabs/antispam.php:189
1294
- #: wpf-admin/tools-tabs/antispam.php:198 wpf-admin/tools-tabs/antispam.php:207
1295
- #: wpf-admin/tools-tabs/antispam.php:216 wpf-admin/tools-tabs/antispam.php:225
1296
- #: wpf-admin/tools-tabs/antispam.php:273 wpf-admin/tools-tabs/cleanup.php:40
1297
- #: wpf-includes/functions-template.php:1018 wpf-includes/wpf-phrases.php:552
1298
- #: wpf-themes/classic/functions.php:94 wpf-themes/classic/functions.php:103
1299
- #: wpf-themes/classic/functions.php:173 wpf-themes/classic/functions.php:201
1300
- #: wpf-themes/classic/functions.php:256 wpf-themes/classic/functions.php:274
 
1301
  msgid "Yes"
1302
  msgstr "Sì"
1303
 
1304
  #: wpf-admin/options-tabs/emails.php:44 wpf-admin/options-tabs/emails.php:56
1305
  #: wpf-admin/options-tabs/emails.php:166 wpf-admin/options-tabs/emails.php:203
1306
- #: wpf-admin/options-tabs/emails.php:257 wpf-admin/options-tabs/features.php:88
1307
- #: wpf-admin/tools-tabs/antispam.php:33 wpf-admin/tools-tabs/antispam.php:42
1308
- #: wpf-admin/tools-tabs/antispam.php:51 wpf-admin/tools-tabs/antispam.php:91
1309
- #: wpf-admin/tools-tabs/antispam.php:162 wpf-admin/tools-tabs/antispam.php:171
1310
- #: wpf-admin/tools-tabs/antispam.php:181 wpf-admin/tools-tabs/antispam.php:190
1311
- #: wpf-admin/tools-tabs/antispam.php:199 wpf-admin/tools-tabs/antispam.php:208
1312
- #: wpf-admin/tools-tabs/antispam.php:217 wpf-admin/tools-tabs/antispam.php:226
1313
- #: wpf-admin/tools-tabs/antispam.php:274 wpf-admin/tools-tabs/cleanup.php:41
1314
- #: wpf-includes/functions-template.php:1019 wpf-includes/wpf-phrases.php:382
1315
- #: wpf-themes/classic/functions.php:95 wpf-themes/classic/functions.php:104
1316
- #: wpf-themes/classic/functions.php:174 wpf-themes/classic/functions.php:202
1317
- #: wpf-themes/classic/functions.php:257 wpf-themes/classic/functions.php:275
 
1318
  msgid "No"
1319
  msgstr "No"
1320
 
@@ -1464,7 +1466,7 @@ msgid "Website name"
1464
  msgstr "Nome sito"
1465
 
1466
  #: wpf-admin/options-tabs/emails.php:181 wpf-admin/options-tabs/emails.php:217
1467
- #: wpf-admin/options-tabs/emails.php:236
1468
  msgid "Registered user login"
1469
  msgstr "Accesso utente registrato"
1470
 
@@ -1482,7 +1484,7 @@ msgstr ""
1482
  "Sovrascrivi l'email di registrazione di nuovi utenti di WordPress per gli "
1483
  "utenti"
1484
 
1485
- #: wpf-admin/options-tabs/emails.php:218 wpf-admin/options-tabs/emails.php:237
1486
  msgid "Link to open password reset form"
1487
  msgstr "Link per apertura modulo reset password"
1488
 
@@ -1495,38 +1497,42 @@ msgid "This message comes from Reset Password form."
1495
  msgstr "Questo messaggio proviene dal modulo Reimposta password."
1496
 
1497
  #: wpf-admin/options-tabs/emails.php:234
 
 
 
 
1498
  msgid "Reset Password message body"
1499
  msgstr "Reimposta corpo del messaggio password"
1500
 
1501
- #: wpf-admin/options-tabs/emails.php:247
1502
  msgid "User Mentioning Email"
1503
  msgstr "Email menzionata dall'utente"
1504
 
1505
- #: wpf-admin/options-tabs/emails.php:252
1506
  msgid "Enable Email Notification"
1507
  msgstr "Abilita notifiche Email"
1508
 
1509
- #: wpf-admin/options-tabs/emails.php:262
1510
  msgid "User Mention message subject"
1511
  msgstr "Oggetto del messaggio menzione utente"
1512
 
1513
- #: wpf-admin/options-tabs/emails.php:267
1514
  msgid "User Mention message body"
1515
  msgstr "Corpo del messaggio menzione utente"
1516
 
1517
- #: wpf-admin/options-tabs/emails.php:269
1518
  msgid "Mentioned user display name"
1519
  msgstr "Mostra nome utente menzionato"
1520
 
1521
- #: wpf-admin/options-tabs/emails.php:270
1522
  msgid "Post author display name"
1523
  msgstr "Mostra autore post"
1524
 
1525
- #: wpf-admin/options-tabs/emails.php:271 wpf-includes/wpf-phrases.php:523
1526
  msgid "Topic title"
1527
  msgstr "Titolo discussione"
1528
 
1529
- #: wpf-admin/options-tabs/emails.php:272
1530
  msgid "Link to the post"
1531
  msgstr "Link al post"
1532
 
@@ -1622,10 +1628,10 @@ msgid ""
1622
  "Dashboard > Settings > General admin page. If this option is enabled new "
1623
  "users will always be able to register."
1624
  msgstr ""
1625
- "Questa opzione non è sincronizzata con l'opzione \"Chiunque può "
1626
- "registrarsi\" di WordPress in Dashboard > Impostazioni > Pagina di "
1627
- "amministrazione generale. Se questa opzione è abilitata, i nuovi utenti "
1628
- "saranno sempre in grado di registrarsi."
1629
 
1630
  #: wpf-admin/options-tabs/features.php:24
1631
  msgid "Enable User Registration email confirmation"
@@ -1880,8 +1886,8 @@ msgstr ""
1880
  #: wpf-admin/options-tabs/features.php:59
1881
  msgid "Topic subscription option on post editor - checked/enabled"
1882
  msgstr ""
1883
- "Opzione di abbonamento alle discussioni sull'editor dei post - "
1884
- "selezionata/abilitata"
1885
 
1886
  #: wpf-admin/options-tabs/features.php:59
1887
  msgid ""
@@ -1898,13 +1904,14 @@ msgstr "Sincronizzazione ruoli gruppo utenti"
1898
 
1899
  #: wpf-admin/options-tabs/features.php:60
1900
  msgid ""
1901
- "Keep enabled this option to synch WordPress User Roles with Forum Usergroups."
1902
- " This connection allows to automatically change Usergroup of a user when "
1903
- "his/her User Role is changed by administrators or by membership plugins. In "
1904
- "other words this option allows to manage Usergroups based on Users Roles, "
1905
- "thus you can directly control users forum accesses based on Users Roles. If "
1906
- "this option is turned off, User Roles don't have any affection to users "
1907
- "forum accesses, they are only controlled by forum Usergroups."
 
1908
  msgstr ""
1909
  "Mantieni abilitata questa opzione per sincronizzare i ruoli utente di "
1910
  "WordPress con i gruppi utenti del forum. Questa connessione consente di "
@@ -1922,8 +1929,8 @@ msgstr "Inserisci gli allegati del forum nella libreria multimediale"
1922
 
1923
  #: wpf-admin/options-tabs/features.php:61 wpf-includes/wpf-phrases.php:827
1924
  msgid ""
1925
- "Enable this option to be able manage forum attachments in Dashboard > Media >"
1926
- " Library admin page."
1927
  msgstr ""
1928
  "Abilita questa opzione per poter gestire gli allegati del forum in Dashboard "
1929
  "> Media > Pagina di amministrazione della libreria."
@@ -1958,17 +1965,17 @@ msgid ""
1958
  "of forum solution you use."
1959
  msgstr ""
1960
  "Abilita questa opzione per aiutare wpForo ad avere più popolarità come "
1961
- "ringraziamento per il duro lavoro che facciamo per te completamente gratuito."
1962
- " Questa opzione aggiunge un'icona molto piccola nel piè di pagina del forum, "
1963
- "che consentirà ai visitatori del tuo sito di riconoscere il nome della "
1964
- "soluzione del forum che usi."
1965
 
1966
  #: wpf-admin/options-tabs/features.php:83
1967
  msgid "Sitewide"
1968
  msgstr "In tutto il sito"
1969
 
1970
  #: wpf-admin/options-tabs/features.php:84 wpf-includes/class-subscribes.php:25
1971
- #: wpf-includes/wpf-phrases.php:287 wpforo.php:376
1972
  msgid "Forum"
1973
  msgstr "Forum"
1974
 
@@ -2036,7 +2043,7 @@ msgstr "Escludi URL pagine"
2036
  msgid "one URL per line"
2037
  msgstr "Un URL per linea"
2038
 
2039
- #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2555
2040
  msgid "Visit Forum"
2041
  msgstr "Visita forum"
2042
 
@@ -2068,9 +2075,9 @@ msgid ""
2068
  "can change it to /user/ or so..."
2069
  msgstr ""
2070
  "Qui puoi impostare percorsi di base personalizzati per le pagine del forum. "
2071
- "Ad esempio, il percorso di base dell'URL del profilo predefinito è / profile "
2072
- "/, se questo è in conflitto con altri plugin, puoi cambiarlo in / utente / o "
2073
- "così ..."
2074
 
2075
  #: wpf-admin/options-tabs/general.php:81 wpf-includes/wpf-phrases.php:250
2076
  msgid "Dashboard Menu Position"
@@ -2215,7 +2222,7 @@ msgstr "Titoli personalizzati dei membri"
2215
  msgid "Member Custom Title by default"
2216
  msgstr "Titolo personalizzato membro per impostazione predefinita"
2217
 
2218
- #: wpf-admin/options-tabs/members.php:111 wpf-includes/wpf-hooks.php:1523
2219
  #: wpf-includes/wpf-phrases.php:433
2220
  msgid "Rating Level"
2221
  msgstr "Livello rating"
@@ -2248,7 +2255,7 @@ msgstr "Icona rating"
2248
  msgid "More"
2249
  msgstr "Di più"
2250
 
2251
- #: wpf-admin/options-tabs/members.php:122 wpf-includes/wpf-hooks.php:1531
2252
  #: wpf-includes/wpf-phrases.php:344
2253
  msgid "Level"
2254
  msgstr "Livello"
@@ -2309,20 +2316,20 @@ msgid ""
2309
  "this forum board. However this is a very large and hard project so we also "
2310
  "develop paid addons (extensions), which will financially help us to keep "
2311
  "improving and adding new features to the free wpForo plugin. Forum addons "
2312
- "will also be actively developed. The first addons \"Advanced Media "
2313
- "Uploader\", \"Polls\", \"Private Messages\" and \"Ad Manager\" will be "
2314
- "available very soon. Once you got some addon and activated that, you will "
2315
- "find settings in vertical subTabs here."
2316
  msgstr ""
2317
  "Grazie per aver usato wpForo. wpForo è un plugin per forum premium che sarà "
2318
  "sempre disponibile gratuitamente. Non ci saranno mai versioni a pagamento e "
2319
- "pro di questo forum. Tuttavia, questo è un progetto molto grande e difficile,"
2320
- " quindi sviluppiamo anche componenti aggiuntivi (estensioni) a pagamento, "
2321
- "che ci aiuteranno finanziariamente a continuare a migliorare e ad aggiungere "
2322
- "nuove funzionalità al plug-in wpForo gratuito. Anche i componenti aggiuntivi "
2323
- "del forum saranno sviluppati attivamente. I primi componenti aggiuntivi "
2324
- "\"Advanced Media Uploader\", \"Sondaggi\", \"Messaggi privati\" e \"Ad "
2325
- "Manager\" saranno presto disponibili. Una volta ottenuto un componente "
2326
  "aggiuntivo e attivato, troverai le impostazioni nei sottotab verticali qui."
2327
 
2328
  #: wpf-admin/options-tabs/posts.php:16
@@ -2334,7 +2341,7 @@ msgid "Topic content maximum length"
2334
  msgstr "Lunghezza massima del contenuto della discussione"
2335
 
2336
  #: wpf-admin/options-tabs/posts.php:23 wpf-admin/options-tabs/posts.php:36
2337
- #: wpf-admin/options-tabs/posts.php:177 wpf-themes/classic/functions.php:215
2338
  msgid "Set this option value 0 if you want to remove this limit."
2339
  msgstr ""
2340
  "Impostare questo valore di opzione 0 se si desidera rimuovere questo limite."
@@ -2820,7 +2827,7 @@ msgstr "Numero minimo di post per poter postare link"
2820
  msgid "Do not allow to attach files with following extensions:"
2821
  msgstr "Non consentire di allegare file con le seguenti estensioni:"
2822
 
2823
- #: wpf-admin/tools-tabs/antispam.php:118 wpf-includes/wpf-hooks.php:2706
2824
  msgid "Google reCAPTCHA"
2825
  msgstr "Google reCAPTCHA"
2826
 
@@ -2924,9 +2931,9 @@ msgid ""
2924
  msgstr ""
2925
  "Per impostazione predefinita, wpForo consente tutti i tag HTML sicuri nel "
2926
  "contenuto dei post. L'autorizzazione di un nuovo tag HTML può influire sulla "
2927
- "sicurezza del forum. Ad esempio, i tag HTML &lt;iframe&gt; and &lt;script&gt;"
2928
- " possono essere utilizzati da spammer e hacker per caricare annunci e virus "
2929
- "di terze parti nel forum."
2930
 
2931
  #: wpf-admin/tools-tabs/antispam.php:247
2932
  msgid "Example of adding a new HTML tags: "
@@ -3154,8 +3161,8 @@ msgid ""
3154
  "message with the SQL command."
3155
  msgstr ""
3156
  "Se il pulsante %s non risolve i problemi. Si prega di utilizzare i comandi "
3157
- "SQl di seguito nel servizio di hosting cPanel > phpMyAdmin Database Manager >"
3158
- " Database WordPress > Scheda SQL. Nel caso in cui non si abbia familiarità "
3159
  "con gli strumenti del servizio di hosting, si prega di contattare il team di "
3160
  "supporto del servizio di hosting e inoltrare questo messaggio con il comando "
3161
  "SQL."
@@ -3302,8 +3309,8 @@ msgstr "La funzione di invio e-mail di WordPress wp_mail () non funziona!"
3302
  msgid ""
3303
  "In most cases this is a server issue. We recommend you contact to your "
3304
  "hosting service support team or open a support topic in wordpress.org "
3305
- "support forum. Also there are many good articles regarding this issue in web."
3306
- " For example "
3307
  msgstr ""
3308
  "Nella maggior parte dei casi si tratta di un problema del server. Ti "
3309
  "consigliamo di contattare il team di supporto del servizio di hosting o di "
@@ -3500,8 +3507,8 @@ msgstr "Informativa sulla privacy del forum con modello conforme al GDPR"
3500
  msgid ""
3501
  "This is an example of forum Privacy Policy with GDPR compliant. It adapted "
3502
  "to wpForo plugin functions and features. <u>In case you enable this privacy "
3503
- "policy template you become responsible for the content of this template.</u> "
3504
- " Please read this text carefully and make sure it suits your community "
3505
  "Privacy Policy. If it doesn't, you should edit this text and adapt it to "
3506
  "your community rules. This template includes shortcodes [forum-name] and "
3507
  "[forum-url]. They are automatically replaced on registration page with "
@@ -3636,9 +3643,9 @@ msgstr "URL pagine forum Noindex"
3636
 
3637
  #: wpf-admin/tools-tabs/misc.php:28
3638
  msgid ""
3639
- "The noIndex code tells Google and other search engines to NOT index the page,"
3640
- " so that it cannot be found in search results. Please insert page URLs you "
3641
- "do not want to be indexed one per line in the textarea bellow."
3642
  msgstr ""
3643
  "Il codice noIndex indica a Google e ad altri motori di ricerca di NON "
3644
  "indicizzare la pagina, in modo che non possa essere trovata nei risultati di "
@@ -3732,7 +3739,7 @@ msgstr "Ruolo dell'utente"
3732
  msgid "Usergroup"
3733
  msgstr "Gruppo utente"
3734
 
3735
- #: wpf-admin/usergroup.php:37 wpf-includes/wpf-hooks.php:1332
3736
  msgid "Default"
3737
  msgstr "Default"
3738
 
@@ -3808,8 +3815,8 @@ msgid ""
3808
  "Usergroup, all users with \"Contributor\" Role will get \"Registered\" "
3809
  "Usergroup in forum. The synchronization process may take a few seconds or "
3810
  "dozens of minutes, it depends on the number of users. Please be patient, "
3811
- "don't close this page and wait until the progress counter says 100% "
3812
- "completed."
3813
  msgstr ""
3814
  "Il pulsante [Sincronizza] modifica tutti i gruppi utenti in base ai ruoli "
3815
  "degli utenti. Ad esempio, se si seleziona Ruolo \"Collaboratore\" per il "
@@ -3817,8 +3824,8 @@ msgstr ""
3817
  "riceveranno il Gruppo utenti \"Registrato\" nel forum. Il processo di "
3818
  "sincronizzazione può richiedere alcuni secondi o dozzine di minuti, dipende "
3819
  "dal numero di utenti. Ti preghiamo di pazientare, non chiudere questa pagina "
3820
- "e attendere fino a quando il contatore di avanzamento indica il 100% "
3821
- "completato."
3822
 
3823
  #: wpf-admin/usergroup.php:146
3824
  msgid "User Roles"
@@ -4169,23 +4176,23 @@ msgstr ""
4169
  "<strong>ERRORE</strong>: questo indirizzo email è già registrato, per favore "
4170
  "scegline un altro"
4171
 
4172
- #: wpf-includes/class-members.php:1897
4173
  msgid "What should be done with wpForo content owned by this user?"
4174
  msgstr ""
4175
  "Cosa si dovrebbe fare con i contenuti di wpForo di proprietà di questo "
4176
  "utente?"
4177
 
4178
- #: wpf-includes/class-members.php:1899
4179
  msgid "What should be done with wpForo content owned by these users?"
4180
  msgstr ""
4181
  "Cosa si dovrebbe fare con i contenuti di wpForo di proprietà di questi "
4182
  "utenti?"
4183
 
4184
- #: wpf-includes/class-members.php:1903
4185
  msgid "Delete all wpForo content."
4186
  msgstr "Elimina tutto il contenuto di wpForo."
4187
 
4188
- #: wpf-includes/class-members.php:1905
4189
  msgid "Attribute all content to:"
4190
  msgstr "Attribuire tutto il contenuto a:"
4191
 
@@ -4356,52 +4363,34 @@ msgid ""
4356
  "[set_password_url]\n"
4357
  "\n"
4358
  msgstr ""
4359
- "Nome utente: [user_login]\n"
4360
- "\n"
4361
- "Per impostare la password, visitare il seguente indirizzo:\n"
4362
- "\n"
4363
- "[set_password_url]"
4364
 
4365
- #: wpf-includes/class-subscribes.php:44
4366
  msgid ""
4367
- "Hello! <br>\n"
4368
  "\n"
4369
  " You asked us to reset your password for your account using the email "
4370
- "address [user_login]. <br>\n"
4371
  "\n"
4372
  " If this was a mistake, or you didn't ask for a password reset, just ignore "
4373
- "this email and nothing will happen. <br>\n"
4374
  "\n"
4375
- " To reset your password, visit the following address: <br>\n"
4376
  "\n"
4377
- " [reset_password_url] <br>\n"
4378
  "\n"
4379
  " Thanks!"
4380
  msgstr ""
4381
- "Ciao! <br>\n"
4382
- "\n"
4383
- " Ci hai chiesto di reimpostare la password per il tuo account utilizzando "
4384
- "l'indirizzo e-mail [user_login]. <br>\n"
4385
- "\n"
4386
- " Se questo è stato un errore o non hai richiesto la reimpostazione della "
4387
- "password, ignora questa e-mail e non accadrà nulla. <br>\n"
4388
- "\n"
4389
- " Per reimpostare la password, visitare il seguente indirizzo: <br>\n"
4390
- "\n"
4391
- " [reset_password_url] <br>\n"
4392
- "\n"
4393
- " Grazie!"
4394
 
4395
- #: wpf-includes/class-subscribes.php:48
4396
  msgid "You have been mentioned in forum post"
4397
  msgstr "Sei stato menzionato nel post del forum"
4398
 
4399
- #: wpf-includes/class-subscribes.php:49
4400
  msgid ""
4401
  "Hi [mentioned-user-name]! <br>\n"
4402
  "\n"
4403
- " You have been mentioned in a post on \"[topic-title]\" by [author-user-name]"
4404
- ".<br/><br/>\n"
4405
  "\n"
4406
  " Post URL: [post-url]"
4407
  msgstr ""
@@ -4955,23 +4944,23 @@ msgstr ""
4955
  msgid "Uninstall"
4956
  msgstr "Disinstalla"
4957
 
4958
- #: wpf-includes/wpf-hooks.php:1332
4959
  msgid "Clear"
4960
  msgstr "Cancella"
4961
 
4962
- #: wpf-includes/wpf-hooks.php:1332
4963
  msgid "Select Color"
4964
  msgstr "Seleziona colore"
4965
 
4966
- #: wpf-includes/wpf-hooks.php:1337 wpf-includes/wpf-phrases.php:183
4967
  msgid "Move"
4968
  msgstr "Sposta"
4969
 
4970
- #: wpf-includes/wpf-hooks.php:1344
4971
  msgid "Please choose one reasons before sending a feedback!"
4972
  msgstr "Scegli uno dei motivi prima di inviare un feedback!"
4973
 
4974
- #: wpf-includes/wpf-hooks.php:1346
4975
  msgid ""
4976
  "With the email address, please check the \"I agree to receive email\" "
4977
  "checkbox to proceed."
@@ -4979,15 +4968,15 @@ msgstr ""
4979
  "Con l'indirizzo e-mail, selezionare la casella di controllo \"Accetto di "
4980
  "ricevere e-mail\" per procedere."
4981
 
4982
- #: wpf-includes/wpf-hooks.php:1347
4983
  msgid "Please fill your email address for feedback"
4984
  msgstr "Si prega di inserire il proprio indirizzo e-mail per il feedback"
4985
 
4986
- #: wpf-includes/wpf-hooks.php:1348
4987
  msgid "Your email address is not valid"
4988
  msgstr "La tua email non è valida"
4989
 
4990
- #: wpf-includes/wpf-hooks.php:1406
4991
  msgid ""
4992
  "IMPORTANT: wpForo can't work with default permalink, please change permalink "
4993
  "structure"
@@ -4995,15 +4984,15 @@ msgstr ""
4995
  "IMPORTANTE: wpForo non può funzionare con il permalink predefinito, si prega "
4996
  "di cambiare la struttura del permalink"
4997
 
4998
- #: wpf-includes/wpf-hooks.php:1442
4999
  msgid "Forum Profile Fields - wpForo"
5000
  msgstr "Campi del profilo del forum - wpForo"
5001
 
5002
- #: wpf-includes/wpf-hooks.php:1450
5003
  msgid "Forum - Usergroup"
5004
  msgstr "Forum - Gruppi utenti"
5005
 
5006
- #: wpf-includes/wpf-hooks.php:1455
5007
  #, php-format
5008
  msgid ""
5009
  "Forum Usergroups are synched with User Roles based on the %s. When you "
@@ -5014,15 +5003,15 @@ msgstr ""
5014
  "%s. Quando si modifica questo ruolo utente, il gruppo utenti viene "
5015
  "automaticamente modificato in base a tale tabella."
5016
 
5017
- #: wpf-includes/wpf-hooks.php:1462
5018
  msgid "Synced with user role"
5019
  msgstr "Sincronizzato con il ruolo dell'utente"
5020
 
5021
- #: wpf-includes/wpf-hooks.php:1466
5022
  msgid "Role-Usergroup Synchronization is Turned ON!"
5023
  msgstr "La sincronizzazione dei ruoli gruppo utenti è attivata!"
5024
 
5025
- #: wpf-includes/wpf-hooks.php:1467
5026
  msgid ""
5027
  "This user Usergroup is automatically changed according to current Role. If "
5028
  "you want to disable Role-Usergroup synchronization and manage Usergroups and "
@@ -5036,24 +5025,24 @@ msgstr ""
5036
  "alla pagina di amministrazione <b> Forum> Impostazioni> Funzionalità </b> e "
5037
  "disabilitare l'opzione \"Sincronizzazione gruppo ruoli-utente\"."
5038
 
5039
- #: wpf-includes/wpf-hooks.php:1478
5040
  msgid "Forum - Secondary Usergroups"
5041
  msgstr "Forum - Gruppi utenti secondari"
5042
 
5043
- #: wpf-includes/wpf-hooks.php:1500
5044
  msgid "Forum - User Timezone"
5045
  msgstr "Fuso Orario Forum"
5046
 
5047
- #: wpf-includes/wpf-hooks.php:1511
5048
  msgid "User Reputation"
5049
  msgstr "Reputazione dell'utente"
5050
 
5051
- #: wpf-includes/wpf-hooks.php:1512
5052
  msgid ""
5053
- "By default all members get rating badges and titles based on number of posts."
5054
- " However, using this option you can grant lower or higher rating to certain "
5055
- "user (this user). The default member reputation badges, titles and points "
5056
- "can be managed in Forums > Settings > Members Tab."
5057
  msgstr ""
5058
  "Per impostazione predefinita, tutti i membri ottengono badge e titoli in "
5059
  "base al numero di post. Tuttavia, utilizzando questa opzione è possibile "
@@ -5061,27 +5050,27 @@ msgstr ""
5061
  "(questo utente). I badge, i titoli e i punti predefiniti della reputazione "
5062
  "dei membri possono essere gestiti in Forum > Impostazioni > Scheda Membri."
5063
 
5064
- #: wpf-includes/wpf-hooks.php:1516
5065
  msgid "Default Rating"
5066
  msgstr "Valutazione di default"
5067
 
5068
- #: wpf-includes/wpf-hooks.php:1517
5069
  msgid "Custom Rating"
5070
  msgstr "Valutazione personalizzata"
5071
 
5072
- #: wpf-includes/wpf-hooks.php:1524 wpf-includes/wpf-phrases.php:863
5073
  msgid "Rating Title"
5074
  msgstr "Nome rating"
5075
 
5076
- #: wpf-includes/wpf-hooks.php:1525 wpf-includes/wpf-phrases.php:430
5077
  msgid "Rating Badge"
5078
  msgstr "Badge valutazione"
5079
 
5080
- #: wpf-includes/wpf-hooks.php:1934 wpf-includes/wpf-hooks.php:2034
5081
  msgid "Please Moderate: "
5082
  msgstr "Si prega di moderare:"
5083
 
5084
- #: wpf-includes/wpf-hooks.php:1935
5085
  msgid ""
5086
  "This topic is currently unapproved. You can approve topics in Dashboard "
5087
  "&raquo; Forums &raquo; Moderation admin page."
@@ -5089,35 +5078,35 @@ msgstr ""
5089
  "Questa discussione non è attualmente approvata. Puoi approvare discussioni "
5090
  "nella pagina Dashboard &raquo; Forums &raquo; Moderazione."
5091
 
5092
- #: wpf-includes/wpf-hooks.php:2035
5093
  msgid ""
5094
- "This post is currently unapproved. You can approve posts in Dashboard &raquo;"
5095
- " Forums &raquo; Moderation admin page."
5096
  msgstr ""
5097
  "Questo post non è attualmente approvato. Puoi approvare i post nella pagina "
5098
  "Dashboard &raquo; Forums &raquo; Moderazione."
5099
 
5100
- #: wpf-includes/wpf-hooks.php:2547 wpf-includes/wpf-hooks.php:2569
5101
  msgid "New Forum"
5102
  msgstr "Nuovo Forum"
5103
 
5104
- #: wpf-includes/wpf-hooks.php:2549
5105
  msgid "New User Group"
5106
  msgstr "Nuovo gruppo"
5107
 
5108
- #: wpf-includes/wpf-hooks.php:2551 wpf-includes/wpf-hooks.php:2597
5109
  msgid "New Phrase"
5110
  msgstr "Nuova traduzione"
5111
 
5112
- #: wpf-includes/wpf-hooks.php:2563
5113
  msgid "Forum Dashboard"
5114
  msgstr "Dashboard Forum"
5115
 
5116
- #: wpf-includes/wpf-hooks.php:2591
5117
  msgid "New Usergroup"
5118
  msgstr "Nuovo Gruppo Utenti"
5119
 
5120
- #: wpf-includes/wpf-hooks.php:2705 wpf-includes/wpf-phrases.php:1084
5121
  #, php-format
5122
  msgid ""
5123
  "IMPORTANT! The forum registration form is probably under risk of spam "
@@ -6540,12 +6529,12 @@ msgid ""
6540
  msgstr ""
6541
  "Grazie per aver usato wpForo. wpForo è un plugin per forum premium che sarà "
6542
  "sempre disponibile gratuitamente. Non ci saranno mai versioni a pagamento e "
6543
- "pro di questo forum. Tuttavia, questo è un progetto molto grande e difficile,"
6544
- " quindi sviluppiamo anche componenti aggiuntivi (estensioni) a pagamento, "
6545
- "che ci aiuteranno finanziariamente a continuare a migliorare e ad aggiungere "
6546
- "nuove funzionalità al plug-in wpForo gratuito. Anche i componenti aggiuntivi "
6547
- "del forum saranno sviluppati attivamente. I primi componenti aggiuntivi "
6548
- "\"Advanced Media Uploader"
6549
 
6550
  #: wpf-includes/wpf-phrases.php:510
6551
  msgid ""
@@ -8380,26 +8369,26 @@ msgstr "Layout Threaded - Numero di discussioni recenti"
8380
  msgid "Threaded Layout - Recent topic length"
8381
  msgstr "Layout Threaded - Lunghezza discussione recente"
8382
 
8383
- #: wpf-themes/classic/functions.php:132
8384
  msgid "Extended Layout - Recent posts"
8385
  msgstr "Layout esteso - post recenti"
8386
 
8387
- #: wpf-themes/classic/functions.php:142
8388
  msgid "Extended Layout - Number of Recent posts"
8389
  msgstr "Layout esteso - numero di post recenti"
8390
 
8391
- #: wpf-themes/classic/functions.php:143
8392
  msgid ""
8393
  "Set this option value 0 if you want to show all posts in recent posts area."
8394
  msgstr ""
8395
  "Impostare questa opzione sul valore 0 se si desidera mostrare tutti i post "
8396
  "nell'area dei post recenti."
8397
 
8398
- #: wpf-themes/classic/functions.php:151
8399
  msgid "Extended Layout - Recent post length"
8400
  msgstr "Layout esteso - Lunghezza post recente"
8401
 
8402
- #: wpf-themes/classic/functions.php:152
8403
  msgid ""
8404
  "Set this option value 0 if you want to show the whole post content in recent "
8405
  "post area."
@@ -8407,72 +8396,72 @@ msgstr ""
8407
  "Impostare questa opzione sul valore 0 se si desidera mostrare l'intero "
8408
  "contenuto dei post nell'area dei post recenti."
8409
 
8410
- #: wpf-themes/classic/functions.php:161
8411
  msgid "Q&A Layout - Comment Form Type"
8412
  msgstr "Layout Q&A - Tipo di form commenti"
8413
 
8414
- #: wpf-themes/classic/functions.php:164 wpf-themes/classic/functions.php:225
8415
  msgid "Visual Editor"
8416
  msgstr "Editor visuale"
8417
 
8418
- #: wpf-themes/classic/functions.php:165 wpf-themes/classic/functions.php:226
8419
  msgid "Text Editor"
8420
  msgstr "Editor testo"
8421
 
8422
- #: wpf-themes/classic/functions.php:170
8423
  msgid "Q&A Layout - Display Answer Editor"
8424
  msgstr "Layout Q&A - Visualizza l'editor delle risposte"
8425
 
8426
- #: wpf-themes/classic/functions.php:180
8427
  msgid "Q&A Layout - Number of Answers per Page"
8428
  msgstr "Layout Q&A - Numero di risposte per pagina"
8429
 
8430
- #: wpf-themes/classic/functions.php:188
8431
  msgid "Q&A Layout - Number of Comments per item in page load"
8432
  msgstr ""
8433
  "Layout Q&A - Numero di commenti per articolo nel caricamento della pagina"
8434
 
8435
- #: wpf-themes/classic/functions.php:189
8436
  msgid "Set this option value 0 if you want to show all comments"
8437
  msgstr ""
8438
  "Impostare questa opzione sul valore 0 se si desidera mostrare tutti i "
8439
  "commenti"
8440
 
8441
- #: wpf-themes/classic/functions.php:197
8442
  msgid "Q&A Layout - First Post Reply Button"
8443
  msgstr "Layout Q&A - Pulsante Rispondi al primo post"
8444
 
8445
- #: wpf-themes/classic/functions.php:208
8446
  msgid "Comment content minimum length"
8447
  msgstr "Lunghezza minima del contenuto del commento"
8448
 
8449
- #: wpf-themes/classic/functions.php:214
8450
  msgid "Comment content maximum length"
8451
  msgstr "Lunghezza massima del contenuto del commento"
8452
 
8453
- #: wpf-themes/classic/functions.php:222
8454
  msgid "Threaded Layout - Reply Form Type"
8455
  msgstr "Layout Threaded - Tipo di modulo di risposta"
8456
 
8457
- #: wpf-themes/classic/functions.php:232
8458
  msgid "Threaded Layout - Number of Parent Posts per Page"
8459
  msgstr "Layout Threaded - Numero di post principali per pagina"
8460
 
8461
- #: wpf-themes/classic/functions.php:240
8462
  msgid "Threaded Layout - Replies Nesting Levels Deep"
8463
  msgstr "Layout Threaded - Risposte Livelli di nidificazione in profondità"
8464
 
8465
- #: wpf-themes/classic/functions.php:252
8466
  msgid "Threaded Layout - First Post Reply Button"
8467
  msgstr "Layout Threaded - Pulsante Rispondi al primo post"
8468
 
8469
- #: wpf-themes/classic/functions.php:265
8470
  msgid "Stick Topic's First Post on Top for Certain Forum Layout"
8471
  msgstr ""
8472
  "Mantieni in primo piano il primo topic della discussione per determinati "
8473
  "layout forum"
8474
 
8475
- #: wpf-themes/classic/functions.php:266
8476
  msgid ""
8477
  "This option keeps the first topic post on top when you navigate through "
8478
  "pages of that topic. You can manage this option by forum layouts."
@@ -8481,11 +8470,11 @@ msgstr ""
8481
  "si naviga tra le pagine di quella discussione. È possibile gestire questa "
8482
  "opzione in base ai layout del forum."
8483
 
8484
- #: wpforo.php:377
8485
  msgid "Discussion Board"
8486
  msgstr "Board discussione"
8487
 
8488
- #: wpforo.php:1051
8489
  msgid ""
8490
  "Allows to embed hundreds of video, social network, audio and photo content "
8491
  "providers in forum topics and posts."
@@ -8493,7 +8482,7 @@ msgstr ""
8493
  "Consente di incorporare centinaia di fornitori di contenuti video, social "
8494
  "network, audio e foto nelle discussioni e nei post del forum."
8495
 
8496
- #: wpforo.php:1052
8497
  msgid ""
8498
  "wpForo Polls is a complete addon to help forum members create, vote and "
8499
  "manage polls effectively. Comes with poll specific permissions and settings."
@@ -8502,7 +8491,7 @@ msgstr ""
8502
  "forum a creare, votare e gestire i sondaggi in modo efficace. Viene fornito "
8503
  "con autorizzazioni e impostazioni specifiche del sondaggio."
8504
 
8505
- #: wpforo.php:1053
8506
  msgid ""
8507
  "Awards myCRED points for forum activity. Integrates myCRED Badges and Ranks. "
8508
  "Converts wpForo topic and posts, likes to myCRED points."
@@ -8510,7 +8499,7 @@ msgstr ""
8510
  "Assegna punti myCRED per l'attività del forum. Integra badge e gradi myCRED. "
8511
  "Converte discussioni e post su wpForo, mi piace in punti myCRED."
8512
 
8513
- #: wpforo.php:1054
8514
  msgid ""
8515
  "Advanced user profile builder system. Allows to add new fields and manage "
8516
  "profile page. Creates custom Registration, Account, Member Search forms."
@@ -8519,7 +8508,7 @@ msgstr ""
8519
  "nuovi campi e gestire la pagina del profilo. Crea moduli di registrazione, "
8520
  "account, ricerca membri personalizzati."
8521
 
8522
- #: wpforo.php:1055
8523
  msgid ""
8524
  "Adds an advanced file attachment system to forum topics and posts. AJAX "
8525
  "powered media uploading and displaying system with user specific library."
@@ -8528,7 +8517,7 @@ msgstr ""
8528
  "forum. Sistema di caricamento e visualizzazione di file multimediali basati "
8529
  "su AJAX con libreria specifica dell'utente."
8530
 
8531
- #: wpforo.php:1056
8532
  msgid ""
8533
  "Provides a safe way to communicate directly with other members. Messages are "
8534
  "private and can only be viewed by conversation participants."
@@ -8537,7 +8526,7 @@ msgstr ""
8537
  "messaggi sono privati e possono essere visualizzati solo dai partecipanti "
8538
  "alla conversazione."
8539
 
8540
- #: wpforo.php:1057
8541
  msgid ""
8542
  "Blog to Forum and Forum to Blog content synchronization. Blog posts with "
8543
  "Forum topics and Blog comments with Forum replies."
@@ -8545,7 +8534,7 @@ msgstr ""
8545
  "Sincronizzazione dei contenuti da Blog a Forum e Forum a Blog. Post di blog "
8546
  "con discussioni del forum e commenti di blog con risposte al forum."
8547
 
8548
- #: wpforo.php:1058
8549
  msgid ""
8550
  "Ads Manager is a powerful yet simple advertisement management system, that "
8551
  "allows you to add adverting banners between forums, topics and posts."
@@ -8553,7 +8542,7 @@ msgstr ""
8553
  "Ads Manager è un sistema di gestione della pubblicità semplice ma potente, "
8554
  "che consente di aggiungere banner pubblicitari tra forum, discussioni e post."
8555
 
8556
- #: wpforo.php:1059
8557
  msgid ""
8558
  "Adds awesome Sticker and Emoticons packs to editor. Allows to create new "
8559
  "custom emoticons packs."
@@ -8584,3 +8573,32 @@ msgstr "gVectors Team (A. Chakhoyan, R. Hovhannisyan)"
8584
  #. Author URI of the plugin/theme
8585
  msgid "https://gvectors.com/"
8586
  msgstr "https://gvectors.com/"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Forum - wpForo\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: 2020-04-23 19:19+0400\n"
8
+ "PO-Revision-Date: 2020-04-23 19:20+0400\n"
9
  "Last-Translator: Simone <sygy@pilloledolanda.it>\n"
10
  "Language-Team: Italiano\n"
11
  "Language: it_IT\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+ "X-Generator: Poedit 1.8.6\n"
17
  "X-Poedit-Basepath: ..\n"
18
  "X-Poedit-WPHeader: wpforo.php\n"
19
  "X-Poedit-SourceCharset: UTF-8\n"
20
  "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
21
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
22
  "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
23
+ "X-Loco-Version: 2.3.1; wp-5.3.2\n"
24
  "X-Poedit-SearchPath-0: .\n"
25
  "X-Poedit-SearchPathExcluded-0: *.js\n"
 
 
26
 
27
  #: wpf-admin/addons.php:14 wpf-admin/addons.php:22
28
  msgid "wpForo Addons"
88
  #: wpf-admin/options.php:15 wpf-admin/tools-tabs/misc.php:93
89
  #: wpf-includes/integration/buddypress.php:11
90
  #: wpf-includes/integration/buddypress.php:57
91
+ #: wpf-includes/integration/buddypress.php:129 wpf-includes/wpf-hooks.php:2605
92
  #: wpf-includes/wpf-phrases.php:309
93
  msgid "Forums"
94
  msgstr "Forum"
95
 
96
  #: wpf-admin/admin.php:43 wpf-includes/wpf-hooks.php:22
97
+ #: wpf-includes/wpf-hooks.php:2611
98
  msgid "Settings"
99
  msgstr "Configurazione"
100
 
101
+ #: wpf-admin/admin.php:46 wpf-includes/wpf-hooks.php:2615
102
  #: wpf-includes/wpf-phrases.php:914
103
  msgid "Tools"
104
  msgstr "Strumenti"
105
 
106
+ #: wpf-admin/admin.php:49 wpf-includes/wpf-hooks.php:2619
107
  msgid "Moderation"
108
  msgstr "Moderazione"
109
 
110
  #: wpf-admin/admin.php:52 wpf-admin/dashboard.php:149 wpf-admin/member.php:10
111
  #: wpf-admin/options.php:18 wpf-admin/tools-tabs/misc.php:113
112
+ #: wpf-admin/usergroup.php:36 wpf-includes/wpf-hooks.php:2623
113
  #: wpf-includes/wpf-phrases.php:364
114
  msgid "Members"
115
  msgstr "Utenti"
116
 
117
  #: wpf-admin/admin.php:55 wpf-admin/usergroup.php:11
118
+ #: wpf-admin/usergroup.php:155 wpf-includes/wpf-hooks.php:2627
119
  msgid "Usergroups"
120
  msgstr "Gruppi utenti"
121
 
122
+ #: wpf-admin/admin.php:58 wpf-includes/wpf-hooks.php:2633
123
  #: wpf-includes/wpf-phrases.php:789
124
  msgid "Phrases"
125
  msgstr "Traduzioni"
126
 
127
+ #: wpf-admin/admin.php:61 wpf-includes/wpf-hooks.php:2639
128
  #: wpf-includes/wpf-phrases.php:790
129
  msgid "Themes"
130
  msgstr "Temi"
131
 
132
  #: wpf-admin/admin.php:64 wpf-admin/options.php:24
133
+ #: wpf-includes/wpf-hooks.php:2643 wpf-includes/wpf-phrases.php:211
134
  msgid "Addons"
135
  msgstr "Componenti Aggiuntivi"
136
 
412
  msgid "Other"
413
  msgstr "Altro"
414
 
415
+ #: wpf-admin/deactivation-dialog.php:142 wpf-includes/wpf-hooks.php:1366
416
  msgid "Please provide more information"
417
  msgstr "Per favore fornisci più informazioni"
418
 
495
  #: wpf-themes/classic/functions.php:65 wpf-themes/classic/functions.php:72
496
  #: wpf-themes/classic/functions.php:82 wpf-themes/classic/functions.php:91
497
  #: wpf-themes/classic/functions.php:100 wpf-themes/classic/functions.php:109
498
+ #: wpf-themes/classic/functions.php:116 wpf-themes/classic/functions.php:130
499
+ #: wpf-themes/classic/functions.php:140
500
  msgid "Read the documentation"
501
  msgstr "Leggi la documentazione"
502
 
526
  "want. Child forums' layout depends on the top category (blue panels) layout. "
527
  "They cannot have a different layout."
528
  msgstr ""
529
+ "I forum possono essere visualizzati con diversi layout (esteso, "
530
+ "semplificato, domande e risposte, discussione), basta modificare la "
531
+ "categoria superiore (pannelli blu) e impostare il layout desiderato. Il "
532
+ "layout dei forum secondari dipende dal layout della categoria superiore "
533
+ "(pannelli blu). Non possono avere un layout diverso."
534
 
535
  #: wpf-admin/forum.php:77 wpf-includes/wpf-phrases.php:458
536
  msgid "Save forums order and hierarchy"
587
  #: wpf-admin/includes/moderation-listtable.php:92
588
  #: wpf-admin/includes/moderation-listtable.php:193 wpf-admin/themes.php:68
589
  #: wpf-admin/tools-tabs/antispam.php:313 wpf-admin/usergroup.php:75
590
+ #: wpf-admin/usergroup.php:276 wpf-includes/wpf-hooks.php:1359
591
  #: wpf-includes/wpf-phrases.php:252
592
  msgid "Delete"
593
  msgstr "Cancella"
632
  "cannot have a different layout, therefore the layout dropdown option becomes "
633
  "disabled if this forum is not a Category."
634
  msgstr ""
635
+ "I forum possono essere visualizzati con diversi layout (esteso, "
636
+ "semplificato, domande e risposte, thread). Utilizzare il menu a discesa "
637
+ "\"Layout categoria\" situato nella sezione in alto a destra per impostare il "
638
+ "layout desiderato. Questa opzione è disponibile solo per le categorie (forum "
639
  "principali). Altri forum e forum secondari lo ereditano. Non possono avere "
640
  "un layout diverso, pertanto l'opzione a discesa del layout viene "
641
  "disabilitata se questo forum non è una categoria."
692
 
693
  #: wpf-admin/forum.php:360 wpf-includes/wpf-phrases.php:323
694
  msgid ""
695
+ "If you want to delete this forum and keep its sub-forums, topics and "
696
+ "replies, please select a new target forum in dropdown below"
697
  msgstr ""
698
  "Se si desidera eliminare questo forum e conservare i relativi forum "
699
  "secondari, discussioni e risposte, selezionare un nuovo forum di "
1195
 
1196
  #: wpf-admin/options-tabs/api.php:200 wpf-includes/wpf-phrases.php:241
1197
  #: wpf-themes/classic/functions.php:30 wpf-themes/classic/functions.php:60
1198
+ #: wpf-themes/classic/functions.php:86 wpf-themes/classic/functions.php:134
1199
  msgid "Collapsed"
1200
  msgstr "Comprimi"
1201
 
1202
  #: wpf-admin/options-tabs/api.php:201 wpf-includes/wpf-phrases.php:275
1203
  #: wpf-themes/classic/functions.php:29 wpf-themes/classic/functions.php:59
1204
+ #: wpf-themes/classic/functions.php:85 wpf-themes/classic/functions.php:133
1205
  msgid "Expanded"
1206
  msgstr "Espandi"
1207
 
1232
  "generali possono essere visualizzati in entrambe le posizioni (superiore e "
1233
  "inferiore)"
1234
 
1235
+ #: wpf-admin/options-tabs/api.php:250 wpf-admin/options-tabs/emails.php:294
1236
  #: wpf-admin/options-tabs/features.php:98 wpf-admin/options-tabs/forums.php:29
1237
  #: wpf-admin/options-tabs/general.php:106
1238
  #: wpf-admin/options-tabs/members.php:195 wpf-admin/options-tabs/posts.php:257
1242
  msgid "Update Options"
1243
  msgstr "Aggiorna impostazioni"
1244
 
1245
+ #: wpf-admin/options-tabs/api.php:251 wpf-admin/options-tabs/emails.php:295
1246
  #: wpf-admin/options-tabs/features.php:99 wpf-admin/options-tabs/forums.php:30
1247
  #: wpf-admin/options-tabs/general.php:107
1248
  #: wpf-admin/options-tabs/members.php:196 wpf-admin/options-tabs/posts.php:258
1286
 
1287
  #: wpf-admin/options-tabs/emails.php:43 wpf-admin/options-tabs/emails.php:55
1288
  #: wpf-admin/options-tabs/emails.php:165 wpf-admin/options-tabs/emails.php:202
1289
+ #: wpf-admin/options-tabs/emails.php:238 wpf-admin/options-tabs/emails.php:267
1290
+ #: wpf-admin/options-tabs/features.php:86 wpf-admin/tools-tabs/antispam.php:32
1291
+ #: wpf-admin/tools-tabs/antispam.php:41 wpf-admin/tools-tabs/antispam.php:50
1292
+ #: wpf-admin/tools-tabs/antispam.php:90 wpf-admin/tools-tabs/antispam.php:161
1293
+ #: wpf-admin/tools-tabs/antispam.php:170 wpf-admin/tools-tabs/antispam.php:180
1294
+ #: wpf-admin/tools-tabs/antispam.php:189 wpf-admin/tools-tabs/antispam.php:198
1295
+ #: wpf-admin/tools-tabs/antispam.php:207 wpf-admin/tools-tabs/antispam.php:216
1296
+ #: wpf-admin/tools-tabs/antispam.php:225 wpf-admin/tools-tabs/antispam.php:273
1297
+ #: wpf-admin/tools-tabs/cleanup.php:40 wpf-includes/functions-template.php:1018
1298
+ #: wpf-includes/wpf-phrases.php:552 wpf-themes/classic/functions.php:94
1299
+ #: wpf-themes/classic/functions.php:103 wpf-themes/classic/functions.php:171
1300
+ #: wpf-themes/classic/functions.php:199 wpf-themes/classic/functions.php:254
1301
+ #: wpf-themes/classic/functions.php:272
1302
  msgid "Yes"
1303
  msgstr "Sì"
1304
 
1305
  #: wpf-admin/options-tabs/emails.php:44 wpf-admin/options-tabs/emails.php:56
1306
  #: wpf-admin/options-tabs/emails.php:166 wpf-admin/options-tabs/emails.php:203
1307
+ #: wpf-admin/options-tabs/emails.php:239 wpf-admin/options-tabs/emails.php:268
1308
+ #: wpf-admin/options-tabs/features.php:88 wpf-admin/tools-tabs/antispam.php:33
1309
+ #: wpf-admin/tools-tabs/antispam.php:42 wpf-admin/tools-tabs/antispam.php:51
1310
+ #: wpf-admin/tools-tabs/antispam.php:91 wpf-admin/tools-tabs/antispam.php:162
1311
+ #: wpf-admin/tools-tabs/antispam.php:171 wpf-admin/tools-tabs/antispam.php:181
1312
+ #: wpf-admin/tools-tabs/antispam.php:190 wpf-admin/tools-tabs/antispam.php:199
1313
+ #: wpf-admin/tools-tabs/antispam.php:208 wpf-admin/tools-tabs/antispam.php:217
1314
+ #: wpf-admin/tools-tabs/antispam.php:226 wpf-admin/tools-tabs/antispam.php:274
1315
+ #: wpf-admin/tools-tabs/cleanup.php:41 wpf-includes/functions-template.php:1019
1316
+ #: wpf-includes/wpf-phrases.php:382 wpf-themes/classic/functions.php:95
1317
+ #: wpf-themes/classic/functions.php:104 wpf-themes/classic/functions.php:172
1318
+ #: wpf-themes/classic/functions.php:200 wpf-themes/classic/functions.php:255
1319
+ #: wpf-themes/classic/functions.php:273
1320
  msgid "No"
1321
  msgstr "No"
1322
 
1466
  msgstr "Nome sito"
1467
 
1468
  #: wpf-admin/options-tabs/emails.php:181 wpf-admin/options-tabs/emails.php:217
1469
+ #: wpf-admin/options-tabs/emails.php:247
1470
  msgid "Registered user login"
1471
  msgstr "Accesso utente registrato"
1472
 
1484
  "Sovrascrivi l'email di registrazione di nuovi utenti di WordPress per gli "
1485
  "utenti"
1486
 
1487
+ #: wpf-admin/options-tabs/emails.php:218 wpf-admin/options-tabs/emails.php:248
1488
  msgid "Link to open password reset form"
1489
  msgstr "Link per apertura modulo reset password"
1490
 
1497
  msgstr "Questo messaggio proviene dal modulo Reimposta password."
1498
 
1499
  #: wpf-admin/options-tabs/emails.php:234
1500
+ msgid "Overwrite WordPress Reset Password Emails"
1501
+ msgstr ""
1502
+
1503
+ #: wpf-admin/options-tabs/emails.php:245
1504
  msgid "Reset Password message body"
1505
  msgstr "Reimposta corpo del messaggio password"
1506
 
1507
+ #: wpf-admin/options-tabs/emails.php:258
1508
  msgid "User Mentioning Email"
1509
  msgstr "Email menzionata dall'utente"
1510
 
1511
+ #: wpf-admin/options-tabs/emails.php:263
1512
  msgid "Enable Email Notification"
1513
  msgstr "Abilita notifiche Email"
1514
 
1515
+ #: wpf-admin/options-tabs/emails.php:273
1516
  msgid "User Mention message subject"
1517
  msgstr "Oggetto del messaggio menzione utente"
1518
 
1519
+ #: wpf-admin/options-tabs/emails.php:278
1520
  msgid "User Mention message body"
1521
  msgstr "Corpo del messaggio menzione utente"
1522
 
1523
+ #: wpf-admin/options-tabs/emails.php:280
1524
  msgid "Mentioned user display name"
1525
  msgstr "Mostra nome utente menzionato"
1526
 
1527
+ #: wpf-admin/options-tabs/emails.php:281
1528
  msgid "Post author display name"
1529
  msgstr "Mostra autore post"
1530
 
1531
+ #: wpf-admin/options-tabs/emails.php:282 wpf-includes/wpf-phrases.php:523
1532
  msgid "Topic title"
1533
  msgstr "Titolo discussione"
1534
 
1535
+ #: wpf-admin/options-tabs/emails.php:283
1536
  msgid "Link to the post"
1537
  msgstr "Link al post"
1538
 
1628
  "Dashboard > Settings > General admin page. If this option is enabled new "
1629
  "users will always be able to register."
1630
  msgstr ""
1631
+ "Questa opzione non è sincronizzata con l'opzione \"Chiunque può registrarsi"
1632
+ "\" di WordPress in Dashboard > Impostazioni > Pagina di amministrazione "
1633
+ "generale. Se questa opzione è abilitata, i nuovi utenti saranno sempre in "
1634
+ "grado di registrarsi."
1635
 
1636
  #: wpf-admin/options-tabs/features.php:24
1637
  msgid "Enable User Registration email confirmation"
1886
  #: wpf-admin/options-tabs/features.php:59
1887
  msgid "Topic subscription option on post editor - checked/enabled"
1888
  msgstr ""
1889
+ "Opzione di abbonamento alle discussioni sull'editor dei post - selezionata/"
1890
+ "abilitata"
1891
 
1892
  #: wpf-admin/options-tabs/features.php:59
1893
  msgid ""
1904
 
1905
  #: wpf-admin/options-tabs/features.php:60
1906
  msgid ""
1907
+ "Keep enabled this option to synch WordPress User Roles with Forum "
1908
+ "Usergroups. This connection allows to automatically change Usergroup of a "
1909
+ "user when his/her User Role is changed by administrators or by membership "
1910
+ "plugins. In other words this option allows to manage Usergroups based on "
1911
+ "Users Roles, thus you can directly control users forum accesses based on "
1912
+ "Users Roles. If this option is turned off, User Roles don't have any "
1913
+ "affection to users forum accesses, they are only controlled by forum "
1914
+ "Usergroups."
1915
  msgstr ""
1916
  "Mantieni abilitata questa opzione per sincronizzare i ruoli utente di "
1917
  "WordPress con i gruppi utenti del forum. Questa connessione consente di "
1929
 
1930
  #: wpf-admin/options-tabs/features.php:61 wpf-includes/wpf-phrases.php:827
1931
  msgid ""
1932
+ "Enable this option to be able manage forum attachments in Dashboard > Media "
1933
+ "> Library admin page."
1934
  msgstr ""
1935
  "Abilita questa opzione per poter gestire gli allegati del forum in Dashboard "
1936
  "> Media > Pagina di amministrazione della libreria."
1965
  "of forum solution you use."
1966
  msgstr ""
1967
  "Abilita questa opzione per aiutare wpForo ad avere più popolarità come "
1968
+ "ringraziamento per il duro lavoro che facciamo per te completamente "
1969
+ "gratuito. Questa opzione aggiunge un'icona molto piccola nel piè di pagina "
1970
+ "del forum, che consentirà ai visitatori del tuo sito di riconoscere il nome "
1971
+ "della soluzione del forum che usi."
1972
 
1973
  #: wpf-admin/options-tabs/features.php:83
1974
  msgid "Sitewide"
1975
  msgstr "In tutto il sito"
1976
 
1977
  #: wpf-admin/options-tabs/features.php:84 wpf-includes/class-subscribes.php:25
1978
+ #: wpf-includes/wpf-phrases.php:287 wpforo.php:377
1979
  msgid "Forum"
1980
  msgstr "Forum"
1981
 
2043
  msgid "one URL per line"
2044
  msgstr "Un URL per linea"
2045
 
2046
+ #: wpf-admin/options-tabs/general.php:48 wpf-includes/wpf-hooks.php:2593
2047
  msgid "Visit Forum"
2048
  msgstr "Visita forum"
2049
 
2075
  "can change it to /user/ or so..."
2076
  msgstr ""
2077
  "Qui puoi impostare percorsi di base personalizzati per le pagine del forum. "
2078
+ "Ad esempio, il percorso di base dell'URL del profilo predefinito è / "
2079
+ "profile /, se questo è in conflitto con altri plugin, puoi cambiarlo in / "
2080
+ "utente / o così ..."
2081
 
2082
  #: wpf-admin/options-tabs/general.php:81 wpf-includes/wpf-phrases.php:250
2083
  msgid "Dashboard Menu Position"
2222
  msgid "Member Custom Title by default"
2223
  msgstr "Titolo personalizzato membro per impostazione predefinita"
2224
 
2225
+ #: wpf-admin/options-tabs/members.php:111 wpf-includes/wpf-hooks.php:1544
2226
  #: wpf-includes/wpf-phrases.php:433
2227
  msgid "Rating Level"
2228
  msgstr "Livello rating"
2255
  msgid "More"
2256
  msgstr "Di più"
2257
 
2258
+ #: wpf-admin/options-tabs/members.php:122 wpf-includes/wpf-hooks.php:1552
2259
  #: wpf-includes/wpf-phrases.php:344
2260
  msgid "Level"
2261
  msgstr "Livello"
2316
  "this forum board. However this is a very large and hard project so we also "
2317
  "develop paid addons (extensions), which will financially help us to keep "
2318
  "improving and adding new features to the free wpForo plugin. Forum addons "
2319
+ "will also be actively developed. The first addons \"Advanced Media Uploader"
2320
+ "\", \"Polls\", \"Private Messages\" and \"Ad Manager\" will be available "
2321
+ "very soon. Once you got some addon and activated that, you will find "
2322
+ "settings in vertical subTabs here."
2323
  msgstr ""
2324
  "Grazie per aver usato wpForo. wpForo è un plugin per forum premium che sarà "
2325
  "sempre disponibile gratuitamente. Non ci saranno mai versioni a pagamento e "
2326
+ "pro di questo forum. Tuttavia, questo è un progetto molto grande e "
2327
+ "difficile, quindi sviluppiamo anche componenti aggiuntivi (estensioni) a "
2328
+ "pagamento, che ci aiuteranno finanziariamente a continuare a migliorare e ad "
2329
+ "aggiungere nuove funzionalità al plug-in wpForo gratuito. Anche i componenti "
2330
+ "aggiuntivi del forum saranno sviluppati attivamente. I primi componenti "
2331
+ "aggiuntivi \"Advanced Media Uploader\", \"Sondaggi\", \"Messaggi privati\" e "
2332
+ "\"Ad Manager\" saranno presto disponibili. Una volta ottenuto un componente "
2333
  "aggiuntivo e attivato, troverai le impostazioni nei sottotab verticali qui."
2334
 
2335
  #: wpf-admin/options-tabs/posts.php:16
2341
  msgstr "Lunghezza massima del contenuto della discussione"
2342
 
2343
  #: wpf-admin/options-tabs/posts.php:23 wpf-admin/options-tabs/posts.php:36
2344
+ #: wpf-admin/options-tabs/posts.php:177 wpf-themes/classic/functions.php:213
2345
  msgid "Set this option value 0 if you want to remove this limit."
2346
  msgstr ""
2347
  "Impostare questo valore di opzione 0 se si desidera rimuovere questo limite."
2827
  msgid "Do not allow to attach files with following extensions:"
2828
  msgstr "Non consentire di allegare file con le seguenti estensioni:"
2829
 
2830
+ #: wpf-admin/tools-tabs/antispam.php:118 wpf-includes/wpf-hooks.php:2744
2831
  msgid "Google reCAPTCHA"
2832
  msgstr "Google reCAPTCHA"
2833
 
2931
  msgstr ""
2932
  "Per impostazione predefinita, wpForo consente tutti i tag HTML sicuri nel "
2933
  "contenuto dei post. L'autorizzazione di un nuovo tag HTML può influire sulla "
2934
+ "sicurezza del forum. Ad esempio, i tag HTML &lt;iframe&gt; and &lt;"
2935
+ "script&gt; possono essere utilizzati da spammer e hacker per caricare "
2936
+ "annunci e virus di terze parti nel forum."
2937
 
2938
  #: wpf-admin/tools-tabs/antispam.php:247
2939
  msgid "Example of adding a new HTML tags: "
3161
  "message with the SQL command."
3162
  msgstr ""
3163
  "Se il pulsante %s non risolve i problemi. Si prega di utilizzare i comandi "
3164
+ "SQl di seguito nel servizio di hosting cPanel > phpMyAdmin Database Manager "
3165
+ "> Database WordPress > Scheda SQL. Nel caso in cui non si abbia familiarità "
3166
  "con gli strumenti del servizio di hosting, si prega di contattare il team di "
3167
  "supporto del servizio di hosting e inoltrare questo messaggio con il comando "
3168
  "SQL."
3309
  msgid ""
3310
  "In most cases this is a server issue. We recommend you contact to your "
3311
  "hosting service support team or open a support topic in wordpress.org "
3312
+ "support forum. Also there are many good articles regarding this issue in "
3313
+ "web. For example "
3314
  msgstr ""
3315
  "Nella maggior parte dei casi si tratta di un problema del server. Ti "
3316
  "consigliamo di contattare il team di supporto del servizio di hosting o di "
3507
  msgid ""
3508
  "This is an example of forum Privacy Policy with GDPR compliant. It adapted "
3509
  "to wpForo plugin functions and features. <u>In case you enable this privacy "
3510
+ "policy template you become responsible for the content of this template.</"
3511
+ "u> Please read this text carefully and make sure it suits your community "
3512
  "Privacy Policy. If it doesn't, you should edit this text and adapt it to "
3513
  "your community rules. This template includes shortcodes [forum-name] and "
3514
  "[forum-url]. They are automatically replaced on registration page with "
3643
 
3644
  #: wpf-admin/tools-tabs/misc.php:28
3645
  msgid ""
3646
+ "The noIndex code tells Google and other search engines to NOT index the "
3647
+ "page, so that it cannot be found in search results. Please insert page URLs "
3648
+ "you do not want to be indexed one per line in the textarea bellow."
3649
  msgstr ""
3650
  "Il codice noIndex indica a Google e ad altri motori di ricerca di NON "
3651
  "indicizzare la pagina, in modo che non possa essere trovata nei risultati di "
3739
  msgid "Usergroup"
3740
  msgstr "Gruppo utente"
3741
 
3742
+ #: wpf-admin/usergroup.php:37 wpf-includes/wpf-hooks.php:1353
3743
  msgid "Default"
3744
  msgstr "Default"
3745
 
3815
  "Usergroup, all users with \"Contributor\" Role will get \"Registered\" "
3816
  "Usergroup in forum. The synchronization process may take a few seconds or "
3817
  "dozens of minutes, it depends on the number of users. Please be patient, "
3818
+ "don't close this page and wait until the progress counter says "
3819
+ "100% completed."
3820
  msgstr ""
3821
  "Il pulsante [Sincronizza] modifica tutti i gruppi utenti in base ai ruoli "
3822
  "degli utenti. Ad esempio, se si seleziona Ruolo \"Collaboratore\" per il "
3824
  "riceveranno il Gruppo utenti \"Registrato\" nel forum. Il processo di "
3825
  "sincronizzazione può richiedere alcuni secondi o dozzine di minuti, dipende "
3826
  "dal numero di utenti. Ti preghiamo di pazientare, non chiudere questa pagina "
3827
+ "e attendere fino a quando il contatore di avanzamento indica il "
3828
+ "100% completato."
3829
 
3830
  #: wpf-admin/usergroup.php:146
3831
  msgid "User Roles"
4176
  "<strong>ERRORE</strong>: questo indirizzo email è già registrato, per favore "
4177
  "scegline un altro"
4178
 
4179
+ #: wpf-includes/class-members.php:1902
4180
  msgid "What should be done with wpForo content owned by this user?"
4181
  msgstr ""
4182
  "Cosa si dovrebbe fare con i contenuti di wpForo di proprietà di questo "
4183
  "utente?"
4184
 
4185
+ #: wpf-includes/class-members.php:1904
4186
  msgid "What should be done with wpForo content owned by these users?"
4187
  msgstr ""
4188
  "Cosa si dovrebbe fare con i contenuti di wpForo di proprietà di questi "
4189
  "utenti?"
4190
 
4191
+ #: wpf-includes/class-members.php:1908
4192
  msgid "Delete all wpForo content."
4193
  msgstr "Elimina tutto il contenuto di wpForo."
4194
 
4195
+ #: wpf-includes/class-members.php:1910
4196
  msgid "Attribute all content to:"
4197
  msgstr "Attribuire tutto il contenuto a:"
4198
 
4363
  "[set_password_url]\n"
4364
  "\n"
4365
  msgstr ""
 
 
 
 
 
4366
 
4367
+ #: wpf-includes/class-subscribes.php:45
4368
  msgid ""
4369
+ "Hello! \n"
4370
  "\n"
4371
  " You asked us to reset your password for your account using the email "
4372
+ "address [user_login]. \n"
4373
  "\n"
4374
  " If this was a mistake, or you didn't ask for a password reset, just ignore "
4375
+ "this email and nothing will happen. \n"
4376
  "\n"
4377
+ " To reset your password, visit the following address: \n"
4378
  "\n"
4379
+ " [reset_password_url] \n"
4380
  "\n"
4381
  " Thanks!"
4382
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
4383
 
4384
+ #: wpf-includes/class-subscribes.php:49
4385
  msgid "You have been mentioned in forum post"
4386
  msgstr "Sei stato menzionato nel post del forum"
4387
 
4388
+ #: wpf-includes/class-subscribes.php:50
4389
  msgid ""
4390
  "Hi [mentioned-user-name]! <br>\n"
4391
  "\n"
4392
+ " You have been mentioned in a post on \"[topic-title]\" by [author-user-"
4393
+ "name].<br/><br/>\n"
4394
  "\n"
4395
  " Post URL: [post-url]"
4396
  msgstr ""
4944
  msgid "Uninstall"
4945
  msgstr "Disinstalla"
4946
 
4947
+ #: wpf-includes/wpf-hooks.php:1353
4948
  msgid "Clear"
4949
  msgstr "Cancella"
4950
 
4951
+ #: wpf-includes/wpf-hooks.php:1353
4952
  msgid "Select Color"
4953
  msgstr "Seleziona colore"
4954
 
4955
+ #: wpf-includes/wpf-hooks.php:1358 wpf-includes/wpf-phrases.php:183
4956
  msgid "Move"
4957
  msgstr "Sposta"
4958
 
4959
+ #: wpf-includes/wpf-hooks.php:1365
4960
  msgid "Please choose one reasons before sending a feedback!"
4961
  msgstr "Scegli uno dei motivi prima di inviare un feedback!"
4962
 
4963
+ #: wpf-includes/wpf-hooks.php:1367
4964
  msgid ""
4965
  "With the email address, please check the \"I agree to receive email\" "
4966
  "checkbox to proceed."
4968
  "Con l'indirizzo e-mail, selezionare la casella di controllo \"Accetto di "
4969
  "ricevere e-mail\" per procedere."
4970
 
4971
+ #: wpf-includes/wpf-hooks.php:1368
4972
  msgid "Please fill your email address for feedback"
4973
  msgstr "Si prega di inserire il proprio indirizzo e-mail per il feedback"
4974
 
4975
+ #: wpf-includes/wpf-hooks.php:1369
4976
  msgid "Your email address is not valid"
4977
  msgstr "La tua email non è valida"
4978
 
4979
+ #: wpf-includes/wpf-hooks.php:1427
4980
  msgid ""
4981
  "IMPORTANT: wpForo can't work with default permalink, please change permalink "
4982
  "structure"
4984
  "IMPORTANTE: wpForo non può funzionare con il permalink predefinito, si prega "
4985
  "di cambiare la struttura del permalink"
4986
 
4987
+ #: wpf-includes/wpf-hooks.php:1463
4988
  msgid "Forum Profile Fields - wpForo"
4989
  msgstr "Campi del profilo del forum - wpForo"
4990
 
4991
+ #: wpf-includes/wpf-hooks.php:1471
4992
  msgid "Forum - Usergroup"
4993
  msgstr "Forum - Gruppi utenti"
4994
 
4995
+ #: wpf-includes/wpf-hooks.php:1476
4996
  #, php-format
4997
  msgid ""
4998
  "Forum Usergroups are synched with User Roles based on the %s. When you "
5003
  "%s. Quando si modifica questo ruolo utente, il gruppo utenti viene "
5004
  "automaticamente modificato in base a tale tabella."
5005
 
5006
+ #: wpf-includes/wpf-hooks.php:1483
5007
  msgid "Synced with user role"
5008
  msgstr "Sincronizzato con il ruolo dell'utente"
5009
 
5010
+ #: wpf-includes/wpf-hooks.php:1487
5011
  msgid "Role-Usergroup Synchronization is Turned ON!"
5012
  msgstr "La sincronizzazione dei ruoli gruppo utenti è attivata!"
5013
 
5014
+ #: wpf-includes/wpf-hooks.php:1488
5015
  msgid ""
5016
  "This user Usergroup is automatically changed according to current Role. If "
5017
  "you want to disable Role-Usergroup synchronization and manage Usergroups and "
5025
  "alla pagina di amministrazione <b> Forum> Impostazioni> Funzionalità </b> e "
5026
  "disabilitare l'opzione \"Sincronizzazione gruppo ruoli-utente\"."
5027
 
5028
+ #: wpf-includes/wpf-hooks.php:1499
5029
  msgid "Forum - Secondary Usergroups"
5030
  msgstr "Forum - Gruppi utenti secondari"
5031
 
5032
+ #: wpf-includes/wpf-hooks.php:1521
5033
  msgid "Forum - User Timezone"
5034
  msgstr "Fuso Orario Forum"
5035
 
5036
+ #: wpf-includes/wpf-hooks.php:1532
5037
  msgid "User Reputation"
5038
  msgstr "Reputazione dell'utente"
5039
 
5040
+ #: wpf-includes/wpf-hooks.php:1533
5041
  msgid ""
5042
+ "By default all members get rating badges and titles based on number of "
5043
+ "posts. However, using this option you can grant lower or higher rating to "
5044
+ "certain user (this user). The default member reputation badges, titles and "
5045
+ "points can be managed in Forums > Settings > Members Tab."
5046
  msgstr ""
5047
  "Per impostazione predefinita, tutti i membri ottengono badge e titoli in "
5048
  "base al numero di post. Tuttavia, utilizzando questa opzione è possibile "
5050
  "(questo utente). I badge, i titoli e i punti predefiniti della reputazione "
5051
  "dei membri possono essere gestiti in Forum > Impostazioni > Scheda Membri."
5052
 
5053
+ #: wpf-includes/wpf-hooks.php:1537
5054
  msgid "Default Rating"
5055
  msgstr "Valutazione di default"
5056
 
5057
+ #: wpf-includes/wpf-hooks.php:1538
5058
  msgid "Custom Rating"
5059
  msgstr "Valutazione personalizzata"
5060
 
5061
+ #: wpf-includes/wpf-hooks.php:1545 wpf-includes/wpf-phrases.php:863
5062
  msgid "Rating Title"
5063
  msgstr "Nome rating"
5064
 
5065
+ #: wpf-includes/wpf-hooks.php:1546 wpf-includes/wpf-phrases.php:430
5066
  msgid "Rating Badge"
5067
  msgstr "Badge valutazione"
5068
 
5069
+ #: wpf-includes/wpf-hooks.php:1956 wpf-includes/wpf-hooks.php:2056
5070
  msgid "Please Moderate: "
5071
  msgstr "Si prega di moderare:"
5072
 
5073
+ #: wpf-includes/wpf-hooks.php:1957
5074
  msgid ""
5075
  "This topic is currently unapproved. You can approve topics in Dashboard "
5076
  "&raquo; Forums &raquo; Moderation admin page."
5078
  "Questa discussione non è attualmente approvata. Puoi approvare discussioni "
5079
  "nella pagina Dashboard &raquo; Forums &raquo; Moderazione."
5080
 
5081
+ #: wpf-includes/wpf-hooks.php:2057
5082
  msgid ""
5083
+ "This post is currently unapproved. You can approve posts in Dashboard "
5084
+ "&raquo; Forums &raquo; Moderation admin page."
5085
  msgstr ""
5086
  "Questo post non è attualmente approvato. Puoi approvare i post nella pagina "
5087
  "Dashboard &raquo; Forums &raquo; Moderazione."
5088
 
5089
+ #: wpf-includes/wpf-hooks.php:2585 wpf-includes/wpf-hooks.php:2607
5090
  msgid "New Forum"
5091
  msgstr "Nuovo Forum"
5092
 
5093
+ #: wpf-includes/wpf-hooks.php:2587
5094
  msgid "New User Group"
5095
  msgstr "Nuovo gruppo"
5096
 
5097
+ #: wpf-includes/wpf-hooks.php:2589 wpf-includes/wpf-hooks.php:2635
5098
  msgid "New Phrase"
5099
  msgstr "Nuova traduzione"
5100
 
5101
+ #: wpf-includes/wpf-hooks.php:2601
5102
  msgid "Forum Dashboard"
5103
  msgstr "Dashboard Forum"
5104
 
5105
+ #: wpf-includes/wpf-hooks.php:2629
5106
  msgid "New Usergroup"
5107
  msgstr "Nuovo Gruppo Utenti"
5108
 
5109
+ #: wpf-includes/wpf-hooks.php:2743 wpf-includes/wpf-phrases.php:1084
5110
  #, php-format
5111
  msgid ""
5112
  "IMPORTANT! The forum registration form is probably under risk of spam "
6529
  msgstr ""
6530
  "Grazie per aver usato wpForo. wpForo è un plugin per forum premium che sarà "
6531
  "sempre disponibile gratuitamente. Non ci saranno mai versioni a pagamento e "
6532
+ "pro di questo forum. Tuttavia, questo è un progetto molto grande e "
6533
+ "difficile, quindi sviluppiamo anche componenti aggiuntivi (estensioni) a "
6534
+ "pagamento, che ci aiuteranno finanziariamente a continuare a migliorare e ad "
6535
+ "aggiungere nuove funzionalità al plug-in wpForo gratuito. Anche i componenti "
6536
+ "aggiuntivi del forum saranno sviluppati attivamente. I primi componenti "
6537
+ "aggiuntivi \"Advanced Media Uploader"
6538
 
6539
  #: wpf-includes/wpf-phrases.php:510
6540
  msgid ""
8369
  msgid "Threaded Layout - Recent topic length"
8370
  msgstr "Layout Threaded - Lunghezza discussione recente"
8371
 
8372
+ #: wpf-themes/classic/functions.php:130
8373
  msgid "Extended Layout - Recent posts"
8374
  msgstr "Layout esteso - post recenti"
8375
 
8376
+ #: wpf-themes/classic/functions.php:140
8377
  msgid "Extended Layout - Number of Recent posts"
8378
  msgstr "Layout esteso - numero di post recenti"
8379
 
8380
+ #: wpf-themes/classic/functions.php:141
8381
  msgid ""
8382
  "Set this option value 0 if you want to show all posts in recent posts area."
8383
  msgstr ""
8384
  "Impostare questa opzione sul valore 0 se si desidera mostrare tutti i post "
8385
  "nell'area dei post recenti."
8386
 
8387
+ #: wpf-themes/classic/functions.php:149
8388
  msgid "Extended Layout - Recent post length"
8389
  msgstr "Layout esteso - Lunghezza post recente"
8390
 
8391
+ #: wpf-themes/classic/functions.php:150
8392
  msgid ""
8393
  "Set this option value 0 if you want to show the whole post content in recent "
8394
  "post area."
8396
  "Impostare questa opzione sul valore 0 se si desidera mostrare l'intero "
8397
  "contenuto dei post nell'area dei post recenti."
8398
 
8399
+ #: wpf-themes/classic/functions.php:159
8400
  msgid "Q&A Layout - Comment Form Type"
8401
  msgstr "Layout Q&A - Tipo di form commenti"
8402
 
8403
+ #: wpf-themes/classic/functions.php:162 wpf-themes/classic/functions.php:223
8404
  msgid "Visual Editor"
8405
  msgstr "Editor visuale"
8406
 
8407
+ #: wpf-themes/classic/functions.php:163 wpf-themes/classic/functions.php:224
8408
  msgid "Text Editor"
8409
  msgstr "Editor testo"
8410
 
8411
+ #: wpf-themes/classic/functions.php:168
8412
  msgid "Q&A Layout - Display Answer Editor"
8413
  msgstr "Layout Q&A - Visualizza l'editor delle risposte"
8414
 
8415
+ #: wpf-themes/classic/functions.php:178
8416
  msgid "Q&A Layout - Number of Answers per Page"
8417
  msgstr "Layout Q&A - Numero di risposte per pagina"
8418
 
8419
+ #: wpf-themes/classic/functions.php:186
8420
  msgid "Q&A Layout - Number of Comments per item in page load"
8421
  msgstr ""
8422
  "Layout Q&A - Numero di commenti per articolo nel caricamento della pagina"
8423
 
8424
+ #: wpf-themes/classic/functions.php:187
8425
  msgid "Set this option value 0 if you want to show all comments"
8426
  msgstr ""
8427
  "Impostare questa opzione sul valore 0 se si desidera mostrare tutti i "
8428
  "commenti"
8429
 
8430
+ #: wpf-themes/classic/functions.php:195
8431
  msgid "Q&A Layout - First Post Reply Button"
8432
  msgstr "Layout Q&A - Pulsante Rispondi al primo post"
8433
 
8434
+ #: wpf-themes/classic/functions.php:206
8435
  msgid "Comment content minimum length"
8436
  msgstr "Lunghezza minima del contenuto del commento"
8437
 
8438
+ #: wpf-themes/classic/functions.php:212
8439
  msgid "Comment content maximum length"
8440
  msgstr "Lunghezza massima del contenuto del commento"
8441
 
8442
+ #: wpf-themes/classic/functions.php:220
8443
  msgid "Threaded Layout - Reply Form Type"
8444
  msgstr "Layout Threaded - Tipo di modulo di risposta"
8445
 
8446
+ #: wpf-themes/classic/functions.php:230
8447
  msgid "Threaded Layout - Number of Parent Posts per Page"
8448
  msgstr "Layout Threaded - Numero di post principali per pagina"
8449
 
8450
+ #: wpf-themes/classic/functions.php:238
8451
  msgid "Threaded Layout - Replies Nesting Levels Deep"
8452
  msgstr "Layout Threaded - Risposte Livelli di nidificazione in profondità"
8453
 
8454
+ #: wpf-themes/classic/functions.php:250
8455
  msgid "Threaded Layout - First Post Reply Button"
8456
  msgstr "Layout Threaded - Pulsante Rispondi al primo post"
8457
 
8458
+ #: wpf-themes/classic/functions.php:263
8459
  msgid "Stick Topic's First Post on Top for Certain Forum Layout"
8460
  msgstr ""
8461
  "Mantieni in primo piano il primo topic della discussione per determinati "
8462
  "layout forum"
8463
 
8464
+ #: wpf-themes/classic/functions.php:264
8465
  msgid ""
8466
  "This option keeps the first topic post on top when you navigate through "
8467
  "pages of that topic. You can manage this option by forum layouts."
8470
  "si naviga tra le pagine di quella discussione. È possibile gestire questa "
8471
  "opzione in base ai layout del forum."
8472
 
8473
+ #: wpforo.php:378
8474
  msgid "Discussion Board"
8475
  msgstr "Board discussione"
8476
 
8477
+ #: wpforo.php:1052
8478
  msgid ""
8479
  "Allows to embed hundreds of video, social network, audio and photo content "
8480
  "providers in forum topics and posts."
8482
  "Consente di incorporare centinaia di fornitori di contenuti video, social "
8483
  "network, audio e foto nelle discussioni e nei post del forum."
8484
 
8485
+ #: wpforo.php:1053
8486
  msgid ""
8487
  "wpForo Polls is a complete addon to help forum members create, vote and "
8488
  "manage polls effectively. Comes with poll specific permissions and settings."
8491
  "forum a creare, votare e gestire i sondaggi in modo efficace. Viene fornito "
8492
  "con autorizzazioni e impostazioni specifiche del sondaggio."
8493
 
8494
+ #: wpforo.php:1054
8495
  msgid ""
8496
  "Awards myCRED points for forum activity. Integrates myCRED Badges and Ranks. "
8497
  "Converts wpForo topic and posts, likes to myCRED points."
8499
  "Assegna punti myCRED per l'attività del forum. Integra badge e gradi myCRED. "
8500
  "Converte discussioni e post su wpForo, mi piace in punti myCRED."
8501
 
8502
+ #: wpforo.php:1055
8503
  msgid ""
8504
  "Advanced user profile builder system. Allows to add new fields and manage "
8505
  "profile page. Creates custom Registration, Account, Member Search forms."
8508
  "nuovi campi e gestire la pagina del profilo. Crea moduli di registrazione, "
8509
  "account, ricerca membri personalizzati."
8510
 
8511
+ #: wpforo.php:1056
8512
  msgid ""
8513
  "Adds an advanced file attachment system to forum topics and posts. AJAX "
8514
  "powered media uploading and displaying system with user specific library."
8517
  "forum. Sistema di caricamento e visualizzazione di file multimediali basati "
8518
  "su AJAX con libreria specifica dell'utente."
8519
 
8520
+ #: wpforo.php:1057
8521
  msgid ""
8522
  "Provides a safe way to communicate directly with other members. Messages are "
8523
  "private and can only be viewed by conversation participants."
8526
  "messaggi sono privati e possono essere visualizzati solo dai partecipanti "
8527
  "alla conversazione."
8528
 
8529
+ #: wpforo.php:1058
8530
  msgid ""
8531
  "Blog to Forum and Forum to Blog content synchronization. Blog posts with "
8532
  "Forum topics and Blog comments with Forum replies."
8534
  "Sincronizzazione dei contenuti da Blog a Forum e Forum a Blog. Post di blog "
8535
  "con discussioni del forum e commenti di blog con risposte al forum."
8536
 
8537
+ #: wpforo.php:1059
8538
  msgid ""
8539
  "Ads Manager is a powerful yet simple advertisement management system, that "
8540
  "allows you to add adverting banners between forums, topics and posts."
8542
  "Ads Manager è un sistema di gestione della pubblicità semplice ma potente, "
8543
  "che consente di aggiungere banner pubblicitari tra forum, discussioni e post."
8544
 
8545
+ #: wpforo.php:1060
8546
  msgid ""
8547
  "Adds awesome Sticker and Emoticons packs to editor. Allows to create new "
8548
  "custom emoticons packs."
8573
  #. Author URI of the plugin/theme
8574
  msgid "https://gvectors.com/"
8575
  msgstr "https://gvectors.com/"
8576
+
8577
+ #~ msgid ""
8578
+ #~ "Hello! <br>\n"
8579
+ #~ "\n"
8580
+ #~ " You asked us to reset your password for your account using the email "
8581
+ #~ "address [user_login]. <br>\n"
8582
+ #~ "\n"
8583
+ #~ " If this was a mistake, or you didn't ask for a password reset, just "
8584
+ #~ "ignore this email and nothing will happen. <br>\n"
8585
+ #~ "\n"
8586
+ #~ " To reset your password, visit the following address: <br>\n"
8587
+ #~ "\n"
8588
+ #~ " [reset_password_url] <br>\n"
8589
+ #~ "\n"
8590
+ #~ " Thanks!"
8591
+ #~ msgstr ""
8592
+ #~ "Ciao! <br>\n"
8593
+ #~ "\n"
8594
+ #~ " Ci hai chiesto di reimpostare la password per il tuo account utilizzando "
8595
+ #~ "l'indirizzo e-mail [user_login]. <br>\n"
8596
+ #~ "\n"
8597
+ #~ " Se questo è stato un errore o non hai richiesto la reimpostazione della "
8598
+ #~ "password, ignora questa e-mail e non accadrà nulla. <br>\n"
8599
+ #~ "\n"
8600
+ #~ " Per reimpostare la password, visitare il seguente indirizzo: <br>\n"
8601
+ #~ "\n"
8602
+ #~ " [reset_password_url] <br>\n"
8603
+ #~ "\n"
8604
+ #~ " Grazie!"
wpf-themes/classic/colors.css CHANGED
@@ -6,538 +6,538 @@
6
 
7
  /* wpForo Dynamic CSS Document */
8
 
9
- #wpforo-wrap *::selection{color: #000000; background: #43a6df;}
10
- #wpforo-wrap *::-moz-selection{color: #000000; background: #43a6df;}
11
 
12
- #wpforo-wrap { color: #333333; background: #ffffff }
13
  #wpforo-wrap .wpforo-subforum i{ color:#999999; }
14
- #wpforo-wrap #footer { background:#e6e6e6;}
15
- #wpforo-wrap .wpf-p-error { background-color: #e6e6e6; color: #333333; }
16
- #wpforo-wrap .wpf-res-menu { color: #ffffff; }
17
- #wpforo-wrap #wpforo-menu { background-color:#555555; }
18
- #wpforo-wrap #wpforo-menu li { border-right:#777777 1px solid; }
19
- #wpforo-wrap #wpforo-menu li a { color: #ffffff; }
20
 
21
  #wpforo-wrap .wpforo-active,
22
  #wpforo-wrap #wpforo-menu li:hover,
23
  #wpforo-wrap #wpforo-menu .current-menu-ancestor,
24
  #wpforo-wrap #wpforo-menu .current-menu-parent,
25
- #wpforo-wrap #wpforo-menu .current_page_item { background-color: #43a6df!important; }
26
 
27
- #wpforo-load { color: #43a6df; }
28
- #wpforo-load i{ color: #43a6df!important; }
29
 
30
- #wpforo-wrap .wpf-search input[type="text"]{ color: #555555; background: transparent; }
31
- #wpforo-wrap .wpf-search input[type="text"]:focus{ background: #f5f5f5; }
32
- #wpforo-wrap .wpf-search i{ color: #43a6df; }
33
 
34
- #wpforo-wrap .wpf-bar-right .wpf-alerts{color: #999999; border-right: 1px solid #777777; }
35
  #wpforo-wrap .wpf-bar-right .wpf-alerts i{color:#999999;text-shadow: 0 0 5px #000000;}
36
- #wpforo-wrap .wpf-bar-right .wpf-alerts i:hover{color: #cccccc;}
37
  #wpforo-wrap .wpf-bar-right .wpf-alerts.wpf-new i{color: #ff812d;}
38
  #wpforo-wrap .wpf-bar-right .wpf-alerts.wpf-new i:hover{text-shadow: 0 0 20px #000000;}
39
  #wpforo-wrap .wpf-bar-right .wpf-alerts-count{color: #ff812d; text-shadow: 0 0 5px #000000;}
40
 
41
  #wpf-widget-profile .wpf-widget-alerts{color: #999999; border-right: none; }
42
  #wpf-widget-profile .wpf-widget-alerts i{color:#999999;}
43
- #wpf-widget-profile .wpf-widget-alerts i:hover{color: #cccccc;}
44
  #wpf-widget-profile .wpf-widget-alerts.wpf-new i{color: #ff812d;}
45
  #wpf-widget-profile .wpf-widget-alerts.wpf-new i:hover{}
46
  #wpf-widget-profile .wpf-widget-alerts .wpf-alerts-count{color: #ff812d;}
47
 
48
- #wpforo-wrap .wpf-notifications{background: #EFEFEF; border-top: 2px solid #555555; border-bottom:5px solid #555555;}
49
- #wpforo-wrap .wpf-notifications .wpf-notification-head{color: #555555; border-bottom: 2px solid #ff812d;}
50
- #wpforo-wrap .wpf-notifications .wpf-notification-content{ color: #555555;}
51
  #wpforo-wrap .wpf-notifications .wpf-notification-content li{border-bottom: 1px solid #dfdfdf;}
52
- #wpforo-wrap .wpf-notifications .wpf-notification-content li .wpf-nleft i{color: #666666; text-shadow: 0 0 3px #cccccc;}
53
  #wpforo-wrap .wpf-notifications .wpf-notification-content .wpf-ndesc{color:#666666;}
54
- #wpforo-wrap .wpf-notifications .wpf-notification-content li:hover{background: #f5f5f5;}
55
  #wpforo-wrap .wpf-notifications .wpf-notification-content li:hover .wpf-nleft i{color: #ff812d;}
56
 
57
- #wpf-widget-profile .wpf-notifications{background: #EFEFEF; border-top: 2px solid #555555; border-bottom:5px solid #555555;}
58
- #wpf-widget-profile .wpf-notifications .wpf-notification-head{color: #555555; border-bottom: 2px solid #ff812d;}
59
- #wpf-widget-profile .wpf-notifications .wpf-notification-content{ color: #555555;}
60
  #wpf-widget-profile .wpf-notifications .wpf-notification-content li{border-bottom: 1px solid #dfdfdf;}
61
- #wpf-widget-profile .wpf-notifications .wpf-notification-content li .wpf-nleft i{color: #666666; text-shadow: 0 0 3px #cccccc;}
62
  #wpf-widget-profile .wpf-notifications .wpf-notification-content .wpf-ndesc{color:#666666;}
63
- #wpf-widget-profile .wpf-notifications .wpf-notification-content li:hover{background: #f5f5f5;}
64
  #wpf-widget-profile .wpf-notifications .wpf-notification-content li:hover .wpf-nleft i{color: #ff812d;}
65
 
66
 
67
- #wpforo-wrap #wpforo-poweredby{ background-color:#555555; color: #ffffff; }
68
- #wpforo-wrap #wpforo-title{ color:#333333;}
69
- #wpforo-wrap #wpforo-description{color:#555555;border-bottom:1px solid #cccccc;}
70
 
71
- #wpforo-wrap a { color: #3f7796; }
72
- #wpforo-wrap a:visited { color: #3f7796; }
73
- #wpforo-wrap a:hover{ color: #659fbe;}
74
- #wpforo-wrap a:active { color: #659fbe; }
75
 
76
- #wpforo-wrap .wpflink { color: #3f7796; }
77
- #wpforo-wrap .wpflink:hover { color: #659fbe; }
78
 
79
- #wpforo-wrap pre { border:#e6e6e6 1px solid; background:#dff4ff; }
80
 
81
- .wpfcl-a{ color:#659fbe!important; }
82
- .wpfbg-a{ background-color:#659fbe!important; }
83
- .wpfcl-b{ color:#43a6df!important; }
84
- .wpfbg-b{ background-color:#43a6df!important; }
85
  .wpfcl-0{ color:#999999!important; }
86
  .wpfbg-0{ background-color:#999999!important; }
87
- .wpfcl-1{ color:#555555!important; }
88
- .wpfbg-1{ background-color:#555555!important; }
89
- .wpfcl-2{ color:#777777!important; }
90
- .wpfbg-2{ background-color:#777777!important; }
91
- .wpfcl-3{ color:#ffffff!important; }
92
- .wpfbg-3{ background-color:#ffffff!important; }
93
- .wpfcl-4{ color:#72ccfc!important;}
94
- .wpfbg-4{ background-color:#72ccfc!important; }
95
  .wpfcl-5{ color:#ff812d!important; }
96
  .wpfbg-5{ background-color:#ff812d!important; }
97
- .wpfcl-6{ color:#0099cc!important; }
98
- .wpfbg-6{ background-color:#0099cc!important; }
99
- .wpfcl-7{ color:#e6e6e6!important; }
100
- .wpfbg-7{ background-color:#e6e6e6!important; }
101
  .wpfcl-8{ color:#4dca5c!important; }
102
  .wpfbg-8{ background-color:#4dca5c!important; }
103
- .wpfcl-9{ color:#f5f5f5!important; }
104
- .wpfbg-9{ background-color:#f5f5f5!important; }
105
 
106
- #wpforo-wrap .author-rating { border: 1px solid #e6e6e6; background: #f5f5f5; }
107
- #wpforo-wrap .wpf-author-nicename{ color:#777777;}
108
- #wpforo-wrap .wpforo-admin-note{ border: 1px solid #e6e6e6; background: #ffffff; }
109
 
110
  #wpforo-wrap .wpf-breadcrumb .wpf-root{ border-left:1px solid #666666; }
111
  #wpforo-wrap .wpf-breadcrumb a.wpf-end { background: transparent!important; }
112
  #wpforo-wrap .wpf-breadcrumb a.wpf-end:hover{ background: transparent!important; }
113
  #wpforo-wrap .wpf-breadcrumb a { color:#666666;}
114
- #wpforo-wrap .wpf-breadcrumb div:hover{ background:#f5f5f5; }
115
- #wpforo-wrap .wpf-breadcrumb div:hover:after { background:#f5f5f5; }
116
- #wpforo-wrap .wpf-breadcrumb div.active{ background:#f5f5f5; color:#4a8eb3; }
117
- #wpforo-wrap .wpf-breadcrumb div.active:after { background:#f5f5f5; }
118
- #wpforo-wrap .wpf-breadcrumb div:after { background: #ffffff; }
119
- #wpforo-wrap .wpf-breadcrumb div.active:after { background: #f5f5f5; }
120
 
121
  #wpforo-wrap .wpforo-post .wpforo-post-content img,
122
- #wpforo-wrap .wpforo-revision-body img{ border:#e6e6e6 1px solid; background:#ffffff; }
123
  #wpforo-wrap .wpforo-post blockquote,
124
- #wpforo-wrap .wpforo-revision-body blockquote{ border:#999999 1px dotted; background:#e6e6e6; }
125
  #wpforo-wrap .wpforo-post .wpforo-post-code,
126
- #wpforo-wrap .wpforo-revision-body .wpforo-post-code{ border:#e6e6e6 1px solid; background:#e6e6e6; }
127
  #wpforo-wrap .wpforo-post code,
128
- #wpforo-wrap .wpforo-revision-body code{ border:#e6e6e6 1px solid; background:#e6e6e6; }
129
  #wpforo-wrap .wpforo-post .wpforo-post-code-title,
130
- #wpforo-wrap .wpforo-post .wpforo-post-code-title{ border-bottom:#e6e6e6 1px solid;}
131
- #wpforo-wrap .wpforo-post .wpforo-post-attachments{ border:#ffffff 1px dotted; }
132
- #wpforo-wrap .wpforo-post .wpforo-post-attachments img{border:#e6e6e6 2px solid; background:#ffffff; }
133
- #wpforo-wrap .wpforo-post .wpforo-post-signature{ border-top:#659fbe 1px dotted; color:#777777;}
134
- #wpforo-wrap .wpforo-post .wpforo-membertoggle i{ color:#3f7796;}
135
  #wpforo-wrap .wpf-mod-message{color:#ff812d}
136
 
137
- #wpforo-wrap .wpforo-topic-badges{ background-color:#f5f5f5; }
138
  #wpforo-wrap .wpf-unread-forum .wpforo-forum-icon i,
139
- #wpforo-wrap .wpforo-subforum .wpf-unread-forum i{ color:#659fbe!important;}
140
 
141
 
142
- #wpforo-wrap .wpfl-1 .wpforo-category{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
143
- #wpforo-wrap .wpfl-1 .cat-title{ color:#ffffff; }
144
- #wpforo-wrap .wpfl-1 .cat-stat-posts { color:#ffffff; }
145
- #wpforo-wrap .wpfl-1 .cat-stat-topics {color:#ffffff; }
146
- #wpforo-wrap .wpfl-1 .forum-wrap{ border-top:#cccccc 1px solid; }
147
- #wpforo-wrap .wpfl-1 .wpforo-forum{ background-color:#f5f5f5; }
148
- #wpforo-wrap .wpfl-1 .wpforo-forum-description{color:#777777; }
149
  #wpforo-wrap .wpfl-1 .wpforo-subforum{ border-top:#dadada 1px dotted; }
150
  #wpforo-wrap .wpfl-1 .wpforo-forum-footer{ color:#999999; }
151
- #wpforo-wrap .wpfl-1 .wpforo-last-topics{ background-color:#ffffff; }
152
- #wpforo-wrap .wpfl-1 .wpforo-last-topics-tab{ color:#555555; }
153
- #wpforo-wrap .wpfl-1 .wpforo-last-topics-list{ color:#555555; border-bottom:#cccccc 0 solid; }
154
-
155
- #wpforo-wrap .wpfl-1 .wpforo-topic-head{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
156
- #wpforo-wrap .wpfl-1 .head-title{ color:#ffffff; }
157
- #wpforo-wrap .wpfl-1 .head-stat-posts { color:#ffffff; }
158
- #wpforo-wrap .wpfl-1 .head-stat-views { color:#ffffff; }
159
- #wpforo-wrap .wpfl-1 .topic-wrap{ border-top:#cccccc 1px solid; }
160
- #wpforo-wrap .wpfl-1 .wpforo-topic{ background-color:#f5f5f5; }
161
- #wpforo-wrap .wpfl-1 .wpforo-topic-info{ color:#555555; }
162
- #wpforo-wrap .wpfl-1 .wpforo-topic-stat-posts{ color:#555555; }
163
- #wpforo-wrap .wpfl-1 .wpforo-topic-stat-views{ color:#555555; }
164
- #wpforo-wrap .wpfl-1 .wpforo-last-posts{ background-color:#ffffff; }
165
- #wpforo-wrap .wpfl-1 .wpforo-last-posts-tab{ color:#555555; }
166
- #wpforo-wrap .wpfl-1 .wpforo-last-posts-list{ color:#555555; border-bottom:#cccccc 0 solid; }
167
-
168
- #wpforo-wrap .wpfl-1 .post-wrap{ border-top:none; border-bottom:#e6e6e6 3px solid; }
169
- #wpforo-wrap .wpfl-1 .wpforo-post-head{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
170
- #wpforo-wrap .wpfl-1 .wpforo-post{ background-color:#f5f5f5; }
171
- #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top{ border-bottom:1px solid #e6e6e6; }
172
- #wpforo-wrap .wpfl-1 .wpforo-post .wpf-left .avatar{ background:#ffffff; border:#e6e6e6 2px solid; }
173
- #wpforo-wrap .wpfl-1 .wpforo-post .wpf-left .author-rating{ border:1px solid #e6e6e6; background:#f5f5f5; }
174
- #wpforo-wrap .wpfl-1 .wpforo-post .bottom { border-top:#e6e6e6 1px solid; }
175
  #wpforo-wrap .wpfl-1 .wpforo-post .bottom .bleft a{ color:#ff812d; }
176
 
177
- #wpforo-wrap .wpfl-2 .wpforo-category{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
178
- #wpforo-wrap .wpfl-2 .cat-title{ color:#ffffff; }
179
- #wpforo-wrap .wpfl-2 .cat-lastpostinfo{ color:#ffffff; }
180
- #wpforo-wrap .wpfl-2 .forum-wrap{ border-top:#cccccc 1px solid; }
181
- #wpforo-wrap .wpfl-2 .wpforo-forum{ background-color:#f5f5f5;}
182
- #wpforo-wrap .wpfl-2 .wpforo-forum-icon{ color:#555555; }
183
- #wpforo-wrap .wpfl-2 .wpforo-forum-info{ color:#555555; }
184
  #wpforo-wrap .wpfl-2 .wpforo-subforum{ border-top:#dadada 1px dotted;}
185
  #wpforo-wrap .wpfl-2 .wpforo-forum-stat{ color:#ff812d; }
186
- #wpforo-wrap .wpfl-2 .wpforo-last-post{ color:#555555; }
187
- #wpforo-wrap .wpfl-2 .wpforo-last-post-avatar{ color:#555555 }
188
- #wpforo-wrap .wpfl-2 .wpforo-last-post-avatar img{ background:#ffffff; border:1px solid #cccccc; }
189
-
190
- #wpforo-wrap .wpfl-2 .wpforo-topic-head{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
191
- #wpforo-wrap .wpfl-2 .head-title{ color:#ffffff;}
192
- #wpforo-wrap .wpfl-2 .head-stat-posts { color:#ffffff; }
193
- #wpforo-wrap .wpfl-2 .head-stat-views { color:#ffffff; }
194
- #wpforo-wrap .wpfl-2 .head-stat-lastpost { color:#ffffff; }
195
- #wpforo-wrap .wpfl-2 .topic-wrap{ border-top:#cccccc 1px solid; }
196
- #wpforo-wrap .wpfl-2 .wpforo-topic{ background-color:#f5f5f5; }
197
- #wpforo-wrap .wpfl-2 .wpforo-topic-avatar{color:#555555; }
198
- #wpforo-wrap .wpfl-2 .wpforo-topic-avatar img{ background:#ffffff; border:1px solid #cccccc; }
199
- #wpforo-wrap .wpfl-2 .wpforo-topic-info{ color:#555555; }
200
- #wpforo-wrap .wpfl-2 .wpforo-topic-stat-posts{ color:#555555;}
201
- #wpforo-wrap .wpfl-2 .wpforo-topic-stat-views{ color:#555555;}
202
- #wpforo-wrap .wpfl-2 .wpforo-topic-stat-lastpost{ color:#555555;}
203
-
204
- #wpforo-wrap .wpfl-2 .post-wrap{ border-top:#e6e6e6 1px solid; }
205
- #wpforo-wrap .wpfl-2 .wpforo-post-head{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
206
- #wpforo-wrap .wpfl-2 .wpforo-post{ background-color:#ffffff; }
207
- #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right{ background:#f5f5f5; }
208
- #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right .wpforo-post-content-bottom{ border-top:#ffffff 1px solid; background:#ffffff; }
209
- #wpforo-wrap .wpfl-2 .wpforo-post .wpf-left .avatar{ background:#ffffff; border:#e6e6e6 2px solid; }
210
  #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right .wpforo-post-content-bottom .cbleft a{color:#ff812d;}
211
 
212
- #wpforo-wrap .wpfl-3 .wpforo-category{ background-color: #43a6df;border-bottom:#cccccc 1px solid; }
213
- #wpforo-wrap .wpfl-3 .cat-title{ color:#ffffff; }
214
- #wpforo-wrap .wpfl-3 .cat-stat-posts { color:#ffffff; }
215
- #wpforo-wrap .wpfl-3 .cat-stat-answers { color:#ffffff; }
216
- #wpforo-wrap .wpfl-3 .cat-stat-questions { color:#ffffff; }
217
- #wpforo-wrap .wpfl-3 .forum-wrap{ border-top:#cccccc 1px solid; }
218
- #wpforo-wrap .wpfl-3 .wpforo-forum{ background-color:#f5f5f5; }
219
- #wpforo-wrap .wpfl-3 .wpforo-forum-icon{ color:#555555; }
220
- #wpforo-wrap .wpfl-3 .wpforo-forum-info{ color:#555555; }
221
  #wpforo-wrap .wpfl-3 .wpforo-subforum{ border-top:#dadada 1px dotted; }
222
  #wpforo-wrap .wpfl-3 .wpforo-forum-footer{ color:#999999; }
223
- #wpforo-wrap .wpfl-3 .wpforo-forum-stat-posts{color:#555555;}
224
- #wpforo-wrap .wpfl-3 .wpforo-forum-stat-answers{ color:#555555; }
225
- #wpforo-wrap .wpfl-3 .wpforo-forum-stat-questions{color:#555555;}
226
- #wpforo-wrap .wpfl-3 .wpforo-last-topics{ background-color:#ffffff; }
227
- #wpforo-wrap .wpfl-3 .wpforo-last-topics-tab{ color:#555555; }
228
- #wpforo-wrap .wpfl-3 .wpforo-last-topics-list{ color:#555555; border-bottom:#cccccc 0 solid; }
229
- #wpforo-wrap .wpfl-3 .wpforo-last-topic-posts{ background:#f5f5f5; }
230
- #wpforo-wrap .wpfl-3 .wpforo-last-topic .votes{ background:#f5f5f5; }
231
- #wpforo-wrap .wpfl-3 .wpforo-last-topic .answers{ background:#f5f5f5; }
232
- #wpforo-wrap .wpfl-3 .wpforo-last-topic .views{background:#f5f5f5; }
233
-
234
- #wpforo-wrap .wpfl-3 .wpforo-topic-head{ background-color: #43a6df; border-bottom:#cccccc 2px solid; }
235
- #wpforo-wrap .wpfl-3 .head-title{ color:#ffffff; }
236
- #wpforo-wrap .wpfl-3 .head-stat-posts { color:#ffffff; }
237
- #wpforo-wrap .wpfl-3 .head-stat-lastpost { color:#ffffff; }
238
- #wpforo-wrap .wpfl-3 .topic-wrap{ border-top:#ffffff 1px solid; border-bottom:#e6e6e6 1px solid; }
239
- #wpforo-wrap .wpfl-3 .wpforo-topic{ background-color:#f5f5f5; }
240
- #wpforo-wrap .wpfl-3 .wpforo-topic-avatar{ color:#555555; }
241
- #wpforo-wrap .wpfl-3 .wpforo-topic-avatar img{ background:#ffffff; border:1px solid #cccccc; }
242
- #wpforo-wrap .wpfl-3 .wpforo-topic-info{ color:#555555; }
243
- #wpforo-wrap .wpfl-3 .wpforo-topic-stat-lastpost{ color:#555555; }
244
- #wpforo-wrap .wpfl-3 .wpforo-topic-status .votes{ background:#f5f5f5; }
245
- #wpforo-wrap .wpfl-3 .wpforo-topic-status .answers{ background:#f5f5f5; }
246
- #wpforo-wrap .wpfl-3 .wpforo-topic .views{ background:#f5f5f5; }
247
- #wpforo-wrap .wpfl-3 .wpforo-topic .count{border-right:1px solid #e6e6e6; border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;}
248
- #wpforo-wrap .wpfl-3 .wpforo-topic .wpforo-label{border-right:1px solid #e6e6e6; border-bottom:1px solid #e6e6e6;border-left:1px solid #e6e6e6;}
249
-
250
- #wpforo-wrap .wpfl-3 .post-wrap{ border-top:#e6e6e6 1px solid; }
251
- #wpforo-wrap .wpfl-3 .wpforo-post-head{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
252
- #wpforo-wrap .wpfl-3 .wpforo-post{ background-color:#ffffff; }
253
- #wpforo-wrap .wpfl-3 .wpforo-tags{ background-color:#f5f5f5; }
254
  #wpforo-wrap .wpfl-3 .wpforo-post .wpf-left .wpf-toggle-answer{ color:#00a636; }
255
  #wpforo-wrap .wpfl-3 .wpforo-post .wpf-left .wpf-toggle-not-answer{ color:#999999!important; }
256
- #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right{ background:#f5f5f5; }
257
- #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-content-top{ border-bottom:1px dotted #e6e6e6; }
258
- #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-tool-bar{ border-top:1px dotted #e6e6e6; }
259
- #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-signature-content{ border-top:#659fbe 1px dotted; }
260
- #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-author-data-content{ border:#ffffff 1px solid; background:#dff4ff;}
261
- #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-author-data .avatar{ background:#ffffff; border:1px solid #cccccc; }
262
- #wpforo-wrap .wpfl-3 .wpforo-comment{ background-color:#ffffff; }
263
- #wpforo-wrap .wpfl-3 .wpforo-comment .wpf-right{ background:#f5f5f5; }
264
-
265
-
266
- #wpforo-wrap .wpfl-4 .wpforo-category{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
267
- #wpforo-wrap .wpfl-4 .cat-title{ color:#ffffff; }
268
- #wpforo-wrap .wpfl-4 .wpforo-post-head{ background-color: #43a6df; border-bottom:#cccccc 1px solid; }
269
- #wpforo-wrap .wpfl-4 .wpforo-post .wpf-right .wpforo-post-content-top{ border-bottom:1px solid #e6e6e6; }
270
- #wpforo-wrap .wpfl-4 .wpforo-post .wpf-left .avatar{ background:#ffffff; border:#e6e6e6 1px solid; }
271
- #wpforo-wrap .wpfl-4 .wpforo-post .wpf-left .author-rating{ border:1px solid #e6e6e6; background:#f5f5f5; }
272
- #wpforo-wrap .wpfl-4 .wpforo-post .bottom { border-top:#e6e6e6 1px solid; }
273
  #wpforo-wrap .wpfl-4 .wpforo-post .bottom .bleft a{ color:#ff812d; }
274
  #wpforo-wrap .wpf-circle{box-shadow: 0 0 1px #999999; }
275
- #wpforo-wrap .wpfl-4 .wpf-head-bar {background: #f5f5f5;border-top: #cccccc 1px solid;border-bottom: 1px solid #dadada;}
276
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest,
277
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest,
278
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved,
279
- #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved{color:#777777;}
280
- #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest:hover{color:#0099cc;}
281
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest:hover{color:#ff812d;}
282
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved:hover{color:#00a636;}
283
- #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved:hover{color:#777777;}
284
- #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest.wpf-active{border-color:#0099cc;color:#0099cc;}
285
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest.wpf-active{border-color:#ff812d;color:#ff812d;}
286
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved.wpf-active{border-color:#00a636;color:#00a636;}
287
- #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved.wpf-active{border-color:#777777;color:#777777;}
288
- #wpforo-wrap .wpfl-4 .wpf-forums{color: #43a6df;}
289
- #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item{background-color: #f5f5f5; border-bottom: 1px solid #dadada;}
290
- #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item:nth-child(even){ border-left: 3px solid #ffffff;}
291
- #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a{color: #555555;}
292
- #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a:hover{color: #659fbe;}
293
-
294
- #wpforo-wrap .wpfl-4 .wpf-threads .wpf-thread{ border-bottom: 1px solid #cccccc; }
295
- #wpforo-wrap .wpfl-4 .wpf-threads-head{ border-bottom: 1px solid #cccccc;}
296
  #wpforo-wrap .wpfl-4 .wpf-threads-label{border-bottom:1px dashed #999999; color: #666666;}
297
  #wpforo-wrap .wpfl-4 .wpf-threads-head .wpf-head-box{ color: #666666;}
298
- #wpforo-wrap .wpfl-4 .wpf-thread-body {color:#555555;}
299
  #wpforo-wrap .wpfl-4 .wpf-threads .wpforo-tags .wpf-tags-text i{color: #999999;}
300
- #wpforo-wrap .wpfl-4 .wpf-threads .wpforo-tags tag a{color: #777777;}
301
- #wpforo-wrap .wpfl-4 .wpf-threads .wpforo-tags tag a:hover{color: #659fbe;}
302
- #wpforo-wrap .wpfl-4 .wpf-thread-users a img{background-color: #ffffff;}
303
- #wpforo-wrap .wpft-topic .wpfl-4 .wpf-threads-head{ background: #43a6df; color: #ffffff; border-bottom: 2px solid #cccccc; }
304
- #wpforo-wrap .wpft-topic .wpfl-4 .wpf-threads-head .wpf-head-box{color: #ffffff;}
305
- #wpforo-wrap .wpft-topic .wpfl-4 .wpf-thread{background-color: #f5f5f5;}
306
-
307
- #wpforo-wrap .wpfl-4 .wpforo-topic-meta .wpforo-tags .wpf-tags-title i{color: #777777;}
308
- #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-left .wpf-author-posts{color: #777777;}
309
- #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top{ border-bottom: 1px dashed #cccccc;}
310
  #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top .wpf-post-date{color:#999999;}
311
  #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-bottom .wpf-author{color:#999999;}
312
- #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content{ background: #f5f5f5;}
313
- #wpforo-wrap .wpfl-4 .wpf-content-foot{ background: #f5f5f5; border-top: #dadada 1px solid;}
314
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-like .wpf-like-count{color: #777777;}
315
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-reply .wpf-action{background: #E6E6E6;}
316
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-reply:hover .wpf-action{color: #ffffff; background: #659fbe;}
317
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons:hover .wpf-action{color: #999999;}
318
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action{ color: #cccccc; }
319
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action:hover{ color: #3f7796;}
320
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-public i,
321
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-public i{color: #659fbe;}
322
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-open i,
323
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-open i{color: #659fbe;}
324
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-approve i,
325
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-approve i{color: #659fbe;}
326
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsolved i,
327
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsticky i{color: #659fbe;}
328
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsolved i:hover,
329
- #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsticky i:hover{ color: #3f7796;}
330
 
331
- #wpforo-wrap .wpfl-4 .wpf-post-replies-bar{color: #777777;}
332
- #wpforo-wrap .wpfl-4 .wpf-post-replies-bar .wpf-post-replies-info{color: #43a6df;}
333
  #wpforo-wrap .wpfl-4 .wpf-post-replies-bar .wpf-prsep{border-bottom: 1px dashed #999999;}
334
  #wpforo-wrap .wpfl-4 .wpf-post-replies-bar .wpforo-ttgg i{color: #999999;}
335
- #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-head .wpf-author-avatar .avatar{background: #ffffff; border: 1px solid #dadada;}
336
- #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-head .wpf-author .wpforo-memberinfo{color: #777777;}
337
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-head .wpf-post-date{color:#999999;}
338
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content{border: 1px solid #dadada; background-color: #FAFAFA;}
339
- #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree{border-bottom: 1px dashed #cccccc;}
340
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree i{color: #999999;}
341
- #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree .wpf-tree-item em{color: #777777;}
342
- #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree .wpf-tree-item.wpf-starter .avatar{background: #ffffff; border: 1px solid #43a6df;}
343
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-content-foot{border-top: #dadada 1px solid;}
344
- #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-footer {background: #f5f5f5;}
345
- #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-footer .bleft:not(:empty){ border-top: 1px dashed #cccccc;}
346
  #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-footer .bleft a{ color:#ff812d; }
347
- #wpforo-wrap .wpfl-4 .wpf-replies-sep{border-bottom: 1px solid #cccccc; color: #999999;}
348
 
349
 
350
- #wpforo-wrap .wpforo-profile-wrap .wpf-profile-plugin-menu .wpf-pp-menu .wpf-pp-menu-item{background:#ffffff; color: #777777; }
351
- #wpforo-wrap .wpforo-profile-wrap .wpf-profile-plugin-menu .wpf-pp-menu .wpf-pp-menu-item:hover{background:#ffffff; color: #43a6df;}
352
- #wpforo-wrap .wpforo-profile-wrap .wpf-profile-plugin-menu #wpf-pp-forum-menu .wpf-pp-menu-item{color:#43a6df; border-right:1px solid #43a6df;}
353
  #wpforo-wrap .wpf-profile-section{color: #666666;}
354
  #wpforo-wrap .wpf-profile-section .wpf-profile-section-head{border-bottom:1px solid #dadada;}
355
- #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-label{ border-bottom:#ffffff 1px solid; }
356
- #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field{ border-bottom:#ffffff 1px solid; }
357
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field input[type="file"],
358
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field input[type="password"],
359
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field input[type="text"],
360
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field select,
361
- #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field textarea { color:#555555; }
362
  #wpforo-wrap .wpforo-profile-wrap .h-left{ }
363
- #wpforo-wrap .wpforo-profile-wrap .profile-display-name{ color:#3f7796; }
364
- #wpforo-wrap .wpforo-profile-wrap .profile-stat-data{ color:#3f7796; }
365
- #wpforo-wrap .wpforo-profile-wrap .profile-stat-data-item{ color:#3f7796;}
366
- #wpforo-wrap .wpforo-profile-wrap .profile-rating-bar-wrap{background:#ffffff;}
367
- #wpforo-wrap .wpforo-profile-wrap .profile-rating-bar-wrap .rating-bar-cell{color:#ffffff;}
368
 
369
- #wpforo-wrap .wpforo-profile-wrap .h-bottom{ border-bottom: 2px solid #e6e6e6;}
370
- #wpforo-wrap .wpforo-profile-wrap .h-bottom .wpf-profile-menu:hover{ background: #f5f5f5; color:#555555;}
371
- #wpforo-wrap .wpforo-profile-wrap .h-bottom .wpf-profile-menu{ border-right:#ffffff 1px solid; }
372
 
373
  #wpforo-wrap .wpforo-profile-head .wpforo-active,
374
  #wpforo-wrap .wpforo-profile-head #wpforo-menu a:hover,
375
  #wpforo-wrap .wpforo-profile-head #wpforo-menu .current-menu-ancestor,
376
  #wpforo-wrap .wpforo-profile-head #wpforo-menu .current-menu-parent,
377
- #wpforo-wrap .wpforo-profile-head #wpforo-menu .current_page_item { background-color: #f5f5f5!important; color:#555555!important;}
378
-
379
- #wpforo-wrap .wpforo-profile-wrap .h-left .avatar{ background-color:#ffffff; border: 2px solid #cccccc; }
380
- #wpforo-wrap .wpforo-profile-wrap .wpf-username{ color:#0099cc; }
381
- #wpforo-wrap .wpforo-profile-wrap .h-header .wpfy {background-color:#ffffff;}
382
- #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-home .wpf-field-name-about .wpf-label-wrap{border-bottom:1px dotted #cccccc;}
383
- #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-home .wpf-field{ border-bottom: 1px solid #e6e6e6;}
384
-
385
- #wpforo-wrap .wpforo-activity-content .activity-icon{ border-right:2px solid #ffffff; }
386
- #wpforo-wrap .wpforo-sbn-content .sbn-icon{ border-right:2px solid #ffffff; }
387
- #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options{background: #ffffff; border: 1px solid #dadada; border-left: 1px solid #dadada; }
388
- #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options ul li{border-bottom: 1px dotted #cccccc;}
389
- #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options .wpf-sbs-cat{background: #f5f5f5;}
390
  #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk div{border-bottom: 1px dotted #999999;}
391
- #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options .wpf-sbs-checkbox{color: #555555;}
392
 
393
 
394
- #wpforo-wrap input[type="text"], #wpforo-wrap input[type="password"], #wpforo-wrap input[type="email"], #wpforo-wrap textarea, #wpforo-wrap select { border: 1px solid #dadada; color: #777777; box-shadow: inset 0 1px 4px #e6e6e6; -moz-box-shadow: inset 0 1px 4px #e6e6e6; -webkit-box-shadow: inset 0 1px 4px #e6e6e6; }
395
- #wpforo-wrap input[type="submit"], #wpforo-wrap input[type="reset"], #wpforo-wrap input[type="button"], #wpforo-dialog input[type="submit"], #wpforo-dialog input[type="reset"], #wpforo-dialog input[type="button"]{ background:#43a6df; color:#ffffff; border: 1px solid #0099cc; }
396
- #wpforo-wrap input[type="submit"]:hover,#wpforo-wrap input[type="reset"]:hover{ background:#0099cc; }
397
- #wpforo-wrap input[type="button"]:hover{ background:#0099cc; }
398
- .wpf-button{ background:#43a6df; color:#ffffff!important; border: 1px solid #0099cc; }
399
- .wpf-button:hover{ background:#0099cc; }
400
- #wpforo-wrap .wpf-button{ background:#43a6df; color:#ffffff!important; border: 1px solid #0099cc; }
401
- #wpforo-wrap .wpf-button:hover{ background:#0099cc; }
402
 
403
- #wpforo-wrap .wpf-topic-create{ border: solid #dadada 1px; background-color: #f5f5f5 ;}
404
  #wpforo-wrap .wpf-topic-create .wp-editor-tools{ border-bottom:1px #dadada solid; }
405
  #wpforo-wrap .wpf-topic-create .wp-editor-tabs a.switch-tmce{ border: 1px #dadada solid; }
406
  #wpforo-wrap .wpf-topic-create .wp-editor-tabs a.switch-html{ border: 1px #dadada solid; }
407
- #wpforo-wrap .wpf-topic-create .quicktags-toolbar input[type="button"] { background:#43a6df; color:#ffffff; }
408
- #wpforo-wrap .wpf-topic-create .quicktags-toolbar input[type="button"]:hover{ background:#0099cc!important; }
409
 
410
- #wpforo-wrap #wpf-post-create { border: solid #dadada 1px; background-color: #f5f5f5 ;}
411
  #wpforo-wrap .wpf-post-create .wp-editor-tools{ border-bottom:1px #dadada solid; }
412
  #wpforo-wrap .wpf-post-create .wp-editor-tabs a.switch-tmce{ border: 1px #dadada solid; }
413
  #wpforo-wrap .wpf-post-create .wp-editor-tabs a.switch-html{ border: 1px #dadada solid; }
414
- #wpforo-wrap .wpf-post-create .quicktags-toolbar input[type="button"] { background:#43a6df; color:#ffffff; }
415
- #wpforo-wrap .wpf-post-create .quicktags-toolbar input[type="button"]:hover{ background:#0099cc!important; }
416
-
417
- #wpforo-wrap .wpforo-tags .wpf-tags-title{border-right: 1px solid #ffffff;}
418
- #wpforo-wrap .wpf-tags a{background:#4a8eb3; color:#ffffff;}
419
- #wpforo-wrap .wpf-tags a:before{ border-color:transparent #4a8eb3 transparent transparent;}
420
- #wpforo-wrap .wpf-tags a:after{ background:#ffffff; -moz-box-shadow:-1px -1px 2px #3f7796; -webkit-box-shadow:-1px -1px 2px #3f7796; box-shadow:-1px -1px 2px #3f7796;}
421
- #wpforo-wrap .wpf-topic-tags #wpf_tags{color: #4a8eb3;}
422
- #wpforo-wrap.wpf-dark .wpf-topic-tags #wpf_tags{color: #555555;}
423
  #wpforo-wrap .wpf-tags a:active,
424
- #wpforo-wrap .wpf-tags a:visited{color: #ffffff;}
425
- #wpforo-wrap .wpf-tags a:hover{background:#666666; color: #ffffff;}
426
  #wpforo-wrap .wpf-tags a:hover:before{border-color:transparent #666666 transparent transparent;}
427
 
428
- #wpforo-wrap .wpforo-topic-footer{color: #777777;}
429
- #wpforo-wrap .wpf-topic-rel .wpf-rel-wrap{border-top: 1px solid #e6e6e6; border-bottom: 1px solid #e6e6e6;}
430
- #wpforo-wrap .wpf-topic-rel .wpf-no-rel{border-top: 1px solid #e6e6e6;}
431
- #wpforo-wrap .wpf-topic-visitors{border-top: 1px solid #e6e6e6;}
432
- #wpforo-wrap .wpf-topic-navi .wpf-navi-wrap{border-top: #e6e6e6 3px solid;}
433
  #wpforo-wrap .wpf-tags-text i,
434
- #wpforo-wrap .wpf-topic-rel .wpf-rel-title i{color:#777777;}
435
 
436
- #wpforo-wrap .wpforo-members-wrap .wpforo-members-content { border:#e6e6e6 1px solid; }
437
- #wpforo-wrap .wpforo-members-wrap td.wpf-members-search { border-bottom:1px solid #e6e6e6; }
438
- #wpforo-wrap .wpforo-members-wrap td.wpf-members-avatar { border-right:2px solid #ffffff; }
439
- #wpforo-wrap .wpforo-members-wrap td.wpf-members-regdate-head{ border-bottom:1px solid #e6e6e6; }
440
- #wpforo-wrap .wpforo-members-wrap td.wpf-members-foot { border-top:1px solid #e6e6e6; }
441
 
442
- #wpforo-wrap .wpforo-register-wrap .wpforo-register-content { border-top:#43a6df 1px solid; border-bottom:#cccccc 1px solid; padding: 40px 1%; }
443
- #wpforo-wrap .wpforo-register-wrap .wpforo-register-content h3{color:#555555}
444
- #wpforo-wrap .wpforo-login-wrap .wpforo-login-content { border-top:#43a6df 1px solid; border-bottom:#cccccc 1px solid; padding: 40px 1%; }
445
  #wpforo-wrap .wpforo-login-wrap .wpforo-login-content .wpforo-login-table{ padding:1%; }
446
  #wpforo-wrap .wpforo-login-wrap .wpforo-login-content .wpforo-login-table .wpf-field{border-bottom:none;}
447
- #wpforo-wrap .wpforo-login-wrap .wpforo-login-content h3{color:#555555}
448
-
449
- #wpforo-wrap .wpforo-404-wrap .wpforo-404-content { border-top:#e6e6e6 1px solid; border-bottom:#e6e6e6 1px solid; }
450
- #wpforo-wrap .wpforo-404-wrap .wpf-search-box { border:#cccccc 1px dashed; }
451
-
452
- #wpforo-wrap #wpforo-search-title { color:#333333; }
453
- #wpforo-wrap .wpforo-search-wrap .wpf-search-bar{ background:#f5f5f5; border:#e6e6e6 1px solid; }
454
- #wpforo-wrap .wpforo-search-wrap .wpf-search-bar .wpfltd{ border-bottom:1px dotted #ffffff; }
455
- #wpforo-wrap .wpforo-search-wrap .wpf-search-bar .wpfrtd{ border-bottom:1px dotted #ffffff; }
456
- #wpforo-wrap .wpforo-search-wrap .wpforo-search-content { border-bottom:#e6e6e6 1px solid; }
457
- #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-ptr{ border-bottom:#cccccc 1px solid;}
458
- #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-htr{ background-color:#43a6df; color:#ffffff; }
459
- #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-ttr{ background:#f5f5f5 }
460
- #wpforo-wrap .wpforo-search-wrap .wpforo-search-content td.wpf-shead-icon{ border-right:1px solid #ffffff;}
461
- #wpforo-wrap .wpforo-search-wrap .wpforo-search-content td.wpf-spost-icon { border-right:1px solid #ffffff;}
462
-
463
- #wpforo-wrap #wpforo-recent-title { color:#333333; }
464
- #wpforo-wrap .wpforo-recent-wrap .wpf-recent-bar{ background:#f5f5f5; border:#e6e6e6 1px solid; }
465
- #wpforo-wrap .wpforo-recent-wrap .wpf-recent-bar .wpfltd{ border-bottom:1px dotted #ffffff; }
466
- #wpforo-wrap .wpforo-recent-wrap .wpf-recent-bar .wpfrtd{ border-bottom:1px dotted #ffffff; }
467
- #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content { border-bottom:#e6e6e6 1px solid; }
468
- #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content .wpf-htr{ background-color:#43a6df; color:#ffffff; }
469
- #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content .wpf-ttr{ background:#f5f5f5 }
470
- #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content td.wpf-shead-icon{ border-right:1px solid #ffffff;}
471
- #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content td.wpf-spost-icon { border-right:1px solid #ffffff;}
472
  #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content td.wpf-stext{color:#666666}
473
 
474
- #wpforo-wrap .wpf-action, .wpf-notifications .wpf-action{ color: #3f7796; }
475
- #wpforo-wrap .wpf-action:hover, .wpf-notifications .wpf-action:hover{ cursor: pointer; color: #659fbe; }
476
- #wpforo-wrap .wpf-action.wpforo-tools{ color: #ffffff; }
477
- #wpforo-wrap .wpf-action.wpforo-tools:hover{ cursor: pointer; /*color: #dff4ff;*/ }
478
 
479
  #wpforo-wrap .wpf-navi .wpf-navi-wrap .wpf-page-info{ color:#666666; }
480
- #wpforo-wrap .wpf-navi .wpf-navi-wrap .wpf-prev-button{ background:#43a6df; color:#ffffff; border: 1px solid #0099cc; }
481
- #wpforo-wrap .wpf-navi .wpf-navi-wrap .wpf-next-button{ background:#43a6df; color:#ffffff; border: 1px solid #0099cc; }
482
 
483
- #wpforo-wrap #wpforo-stat-header{ background-color:#555555; color: #ffffff; border-bottom: 2px solid #cccccc;}
484
- #wpforo-wrap #wpforo-stat-body{ border:#e6e6e6 1px solid; background:#f5f5f5; }
485
  #wpforo-wrap #wpforo-stat-body .wpf-stat-data{ }
486
- #wpforo-wrap #wpforo-stat-body .wpf-stat-item{border-right:1px solid #e6e6e6;}
487
- #wpforo-wrap #wpforo-stat-body .wpf-stat-item i{color:#777777;}
488
- #wpforo-wrap #wpforo-stat-body .wpf-stat-item .wpf-stat-value{color:#777777;}
489
- #wpforo-wrap #wpforo-stat-body .wpf-stat-item .wpf-stat-label{border-top:1px dotted #cccccc; color:#777777;}
490
- #wpforo-wrap #wpforo-stat-body .wpf-last-info i{color:#777777;}
491
 
492
  #wpforo-wrap #wpforo-stat-body .wpf-new i,
493
- #wpforo-wrap #wpforo-stat-body .wpf-all-read i{color:#4a8eb3;}
494
 
495
  #wpforo-wrap .widget-title,
496
- .wpforo-widget-wrap .widget-title{ border-bottom:2px solid #e6e6e6;}
497
  #wpforo-wrap .wpforo-widget-wrap .wpforo-widget-content li,
498
- .wpforo-widget-wrap .wpforo-widget-content li{ border-bottom:1px dotted #cccccc; }
499
 
500
  .wpforo-widget-wrap .wpf-widget-tags li{border:none!important;}
501
- .wpforo-widget-wrap .wpf-widget-tags li a{border-color:#659fbe!important; }
502
- .wpforo-widget-wrap .wpf-widget-tags li span{border:1px solid #659fbe!important; background-color: #659fbe!important;color: #ffffff!important;}
503
- .wpforo-widget-wrap .wpf-widget-tags li a:hover{background-color: #659fbe!important;color: #ffffff!important;}
504
- .wpforo-widget-wrap .wpf-prof-footer .wpf-prof-buttons a:hover{background: #659fbe!important;}
505
 
506
  .ui-dialog { z-index: 999998 !important; }
507
  .wpf-video{ margin: 10px !important; }
508
 
509
- .ui-dialog .ui-widget-header{ background-color: #43a6df!important; border-bottom:#cccccc 1px solid!important; }
510
- .ui-dialog .ui-widget-header span.ui-dialog-title{ color: #ffffff !important; }
511
- .ui-widget input[type="submit"]:hover{ background:#0099cc; }
512
- .ui-widget input[type="submit"]{ background:#43a6df; color:#ffffff; border: 1px solid #0099cc; }
513
 
514
  #wpforo-wrap .wpforo-topic-badges i.fa,
515
  #wpforo-wrap .wpforo-topic-badges i.fas,
516
  #wpforo-wrap .wpforo-topic-badges i.fab,
517
  #wpforo-wrap .wpforo-topic-badges i.far,
518
- #wpforo-wrap .wpforo-topic-badges i.fal { color: #43a6df; }
519
 
520
- #wpf_multi_quote .wpf-multi-quote{color: #ffffff; background: #43a6df;}
521
- body.wpf-dark #wpf_multi_quote .wpf-multi-quote{color: #3f7796;}
522
 
523
- #wpf-msg-box a{color:#ffffff;}
524
- #wpf-msg-box a:hover{color:#e6e6e6;}
525
- #wpf-msg-box > p{color:#ffffff!important;background-color:#43a6df;background:-moz-linear-gradient(#43a6df);background:-o-linear-gradient(#43a6df);background:linear-gradient(#43a6df);}
526
- #wpf-msg-box > p:after{border-color:transparent #43a6df;}
527
 
528
  #wpf-msg-box > p.error{background-color:#f46464;background:-moz-linear-gradient(#f46464);background:-o-linear-gradient(#f46464);background:linear-gradient(#f46464);}
529
  #wpf-msg-box > p.error:after{border-color:transparent #f46464;}
530
  #wpf-msg-box > p.success{background-color:#00a636;background:-moz-linear-gradient(#00a636);background:-o-linear-gradient(#00a636);background:linear-gradient(#00a636);}
531
  #wpf-msg-box > p.success:after{border-color:transparent #00a636;}
532
 
533
- body.wpf-dark #wpf-msg-box > p, body.wpf-dark #wpf-msg-box a, body.wpf-dark #wpf-msg-box a:visited{color:#3f7796!important;}
534
- body.wpf-dark #wpf-msg-box a:hover, body.wpf-dark #wpf-msg-box a:active{color:#659fbe!important;}
535
 
536
- #wpforo-wrap .wpf-field { border-bottom: 1px solid #ffffff;}
537
- #wpforo-wrap .wpf-field .wpf-label i{ color: #777777; }
538
- #wpforo-wrap .wpf-field .wpf-field-wrap i{ color: #777777; }
539
 
540
- #wpforo-wrap .wpf-field {border-bottom: 1px solid #ffffff;}
541
  #wpforo-wrap .wpf-field .wpf-field-cl{ clear:both;}
542
  #wpforo-wrap .wpf-field input {max-width: 100%;}
543
  #wpforo-wrap .wpf-field input[type="text"],
@@ -554,41 +554,41 @@ body.wpf-dark #wpf-msg-box a:hover, body.wpf-dark #wpf-msg-box a:active{color:#6
554
  #wpforo-wrap .wpf-field input:-ms-input-placeholder, #wpforo-wrap .wpf-field textarea:-ms-input-placeholder {color: #999999;}
555
  #wpforo-wrap .wpf-field input:-moz-placeholder, #wpforo-wrap .wpf-field textarea:-moz-placeholder {color: #999999;}
556
  #wpforo-wrap .wpf-field input[type="text"]:focus, #wpforo-wrap .wpf-field input[type="password"]:focus, #wpforo-wrap .wpf-field input[type="email"]:focus,#wpforo-wrap .wpf-field input[type="date"]:focus,#wpforo-wrap .wpf-field input[type="number"]:focus,#wpforo-wrap .wpf-field input[type="url"]:focus,#wpforo-wrap .wpf-field input[type="tel"]:focus,#wpforo-wrap .wpf-field textarea:focus,
557
- #wpforo-wrap .wpf-field select:focus{ background-color:#feffe5; box-shadow: 0 0 10px 0 #777777; }
558
  #wpforo-wrap .wpf-field .wpf-label i{ padding-right:5px; width:25px;}
559
  #wpforo-wrap .wpf-field .wpf-field-wrap i{}
560
  #wpforo-wrap .wpf-field .wpf-field-required-icon{color: #ff812d;}
561
 
562
- #wpforo-wrap .wpf-table .wpfw-1 .wpf-field:nth-child(even) {background-color: #f5f5f5;}
563
- #wpforo-wrap .wpf-acp-header{border-bottom: 1px dashed #43a6df;}
564
- #wpforo-wrap .wpf-acp-header .wpf-acp-toggle i{color: #43a6df;}
565
 
566
- #wpforo-wrap .wpf-tools {background: #f5f5f5; border-bottom:#e6e6e6 3px solid; outline:3px solid #ffffff;}
567
  #wpforo-wrap .wpf-tools .wpf-tool-tabs .wpf-tool-tab{ border-bottom-color: #999999; }
568
- #wpforo-wrap .wpf-tools .wpf-tool-tabs .wpf-tool-tab.wpf-tt-active{ border-top-color: #43a6df; color:#43a6df; }
569
- #wpforo-wrap .wpf-tools .wpf-tool h3{ color: #e6e6e6}
570
  #wpforo-wrap .wpf-tools .wpf-tool .wpf-tool-desc{ color: #999999;}
571
- #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]{background: #ffffff;}
572
- #wpforo-wrap .wpf-tools .wpf-tool .wpf-split-posts{background: #ffffff; border: 1px solid #dadada; border-left: 3px solid #dadada; }
573
- #wpforo-wrap .wpf-tools .wpf-tool .wpf-split-posts ul li{border-bottom: 1px dotted #cccccc;}
574
- #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]::placeholder {color: #cccccc; opacity: 1;}
575
- #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]:-ms-input-placeholder {color: #cccccc;}
576
- #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]::-ms-input-placeholder {color: #cccccc;}
577
-
578
- #wpforo-wrap .wpf-sb-1{color:#cccccc;background-color:#f5f5f5;}
579
- #wpforo-wrap .wpf-sb-2{color:#43a6df;background-color:#f5f5f5;}
580
- #wpforo-wrap .wpf-sb-3{color:#cccccc;background-color:transparent;}
581
- #wpforo-wrap .wpf-sb-4{color:#43a6df;background-color:transparent;}
582
- #wpforo-wrap .wpf-sb .wpf-sb-buttons i{color: #cccccc;}
583
- #wpforo-wrap .wpf-sb .wpf-sb-toggle .wpfsa{color:#43a6df!important;}
584
  #wpforo-wrap .wpfl-1 .wpf-sb-right.wpf-sb-1,
585
- #wpforo-wrap .wpfl-1 .wpf-sb-right.wpf-sb-2{border:1px solid #e6e6e6;}
586
- #wpforo-wrap .wpfl-2 .wpf-sb-right, #wpforo-wrap .wpfl-3 .wpf-sb-right{ border-top:1px solid #e6e6e6;}
587
  #wpforo-wrap .wpfl-2 .wpf-sb-left, #wpforo-wrap .wpfl-3 .wpf-sb-left{ background-color:transparent;}
588
- #wpforo-wrap .wpf-sb.wpf-sb-top .wpf-sb-buttons{border-left: 1px dotted #3f7796;}
589
- [dir="rtl"] #wpforo-wrap .wpf-sb.wpf-sb-top .wpf-sb-buttons{border-right: 1px dotted #3f7796; border-left:none;}
590
- #wpforo-wrap .wpf-sb.wpf-sb-top.sb-tt-expanded .wpf-sb-buttons i{color:#3f7796;}
591
- #wpforo-wrap .wpf-sbtn {color: #555555;}
592
  #wpforo-wrap .wpf-sbtn .wpf-sbtn-title i{color: #999999;}
593
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-grey .wpf-sb-button{background: #aaaaaa; color: #ffffff; }
594
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-grey .wpf-sb-button.wpf-sb-icon{background: transparent; color: #777777; border: 1px solid #bbbbbb;}
@@ -613,106 +613,113 @@ body.wpf-dark #wpf-msg-box a:hover, body.wpf-dark #wpf-msg-box a:active{color:#6
613
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-colored .wpf-sb-button.wpf-gg{ background-color: #DB4437; border-color: #DB4437; color: #fff;}
614
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-colored .wpf-sb-button.wpf-vk{ background-color: #4A76A8; border-color: #4A76A8; color: #fff;}
615
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-colored .wpf-sb-button.wpf-ok{ background-color: #EE8208; border-color: #EE8208; color: #fff;}
616
- #wpforo-wrap .wpforo-revisions-wrap{border-color: #e6e6e6;}
617
- #wpforo-wrap .wpforo-revisions-wrap *{border-color: #43a6df !important;}
618
- #wpforo-wrap .wpforo-revision{background-color: #f5f5f5; box-shadow: 0 0 4px #cccccc;}
619
  #wpforo-wrap .wpforo-revision .wpforo-revision-top{color: #666666;}
620
- #wpforo-wrap .wpforo-revisions-wrap .wpforo-revision-body{background-color: #ffffff; color: #555555;}
621
  #wpforo-wrap.wpf-dark .wpforo-revision .wpforo-revision-top{color: #999999;}
622
- #wpforo-wrap.wpf-dark .wpforo-revisions-wrap .wpforo-revision-body{background-color: #e6e6e6; color: #3f7796;}
623
 
624
  @media screen and (max-width:600px) {
625
- #wpforo-wrap #wpforo-menu .wpf-menu{background-color:#555555;}
626
- #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top{border-top: 1px solid #e6e6e6; }
627
  }
628
 
629
- #wpforo-wrap.wpf-dark { color: #3f7796; }
630
- #wpforo-wrap.wpf-dark .wpfcl-3{ color:#3f7796!important; }
631
- #wpforo-wrap.wpf-dark .wpfcl-1{ color:#3f7796!important; }
632
- #wpforo-wrap.wpf-dark .wpfcl-4{ color:#3f7796!important; }
633
- #wpforo-wrap.wpf-dark .wpf-action{ color: #3f7796; }
634
- #wpforo-wrap.wpf-dark .wpforo-post .wpforo-post-content p{ color:#3f7796; }
635
- #wpforo-wrap.wpf-dark #wpforo-menu li a { color: #3f7796; }
636
- #wpforo-wrap.wpf-dark .wpfl-2 .head-stat-lastpost, #wpforo-wrap.wpf-dark .wpfl-3 .head-stat-lastpost{ color: #3f7796; }
637
- #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-last-post{ color: #3f7796; }
638
- #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-topic-stat-lastpost, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-topic-stat-lastpost{ color: #3f7796; }
639
- #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-forum-description, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-forum-description{ color: #3f7796; }
640
- #wpforo-wrap.wpf-dark .wpfl-1 .cat-title, #wpforo-wrap.wpf-dark .wpfl-2 .cat-title, #wpforo-wrap.wpf-dark .wpfl-3 .cat-title{ color:#3f7796; }
641
- #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-category div, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-category div, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-category div, #wpforo-wrap.wpf-dark .wpfl-4 .wpforo-category div{ color:#3f7796; }
642
- #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-last-topic-date, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-last-topic-date, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-last-topic-date{ color:#3f7796; }
643
- #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-topic-stat-posts, #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-topic-stat-views{ color:#3f7796; }
644
- #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-topic-stat-posts, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-topic-stat-views{ color:#3f7796; }
645
- #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-topic-stat-posts, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-topic-stat-views{ color:#3f7796; }
646
- #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-last-post-date, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-last-post-date, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-last-post-date{ color:#3f7796; }
647
- #wpforo-wrap.wpf-dark .wpfl-1 .head-title, #wpforo-wrap.wpf-dark .wpfl-2 .head-title, #wpforo-wrap.wpf-dark .wpfl-3 .head-title{ color:#3f7796; }
648
- #wpforo-wrap.wpf-dark .wpfl-1 .head-stat-posts, #wpforo-wrap.wpf-dark .wpfl-2 .head-stat-posts, #wpforo-wrap.wpf-dark .wpfl-3 .head-stat-posts{ color:#3f7796; }
649
- #wpforo-wrap.wpf-dark .wpfl-1 .head-stat-views, #wpforo-wrap.wpf-dark .wpfl-2 .head-stat-views, #wpforo-wrap.wpf-dark .wpfl-3 .head-stat-views{ color:#3f7796; }
650
- #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-post .wpf-left, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-post .wpf-left, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-post .wpf-left{ color:#3f7796; }
651
- #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top, #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right .wpforo-post-content-top, #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-content-top{ color:#3f7796; }
652
- #wpforo-wrap .wpfl-3 .wpforo-forum-stat-questions, #wpforo-wrap .wpfl-3 .wpforo-forum-stat-answers, #wpforo-wrap .wpfl-3 .wpforo-forum-stat-posts{ color:#3f7796; }
653
- #wpforo-wrap.wpf-dark #wpforo-stat-header{ color: #3f7796; border-bottom: 1px solid #cccccc;}
654
- #wpforo-wrap.wpf-dark .wpf-button{ color:#3f7796!important; }
655
- #wpforo-wrap.wpf-dark .wpf-topic-create .wpf-subject{background-color:#333333}
656
- #wpforo-wrap.wpf-dark .wpf-topic-create{background-color:#f5f5f5}
657
- #wpforo-wrap.wpf-dark .wpf-topic-create div.mce-toolbar-grp{background-color:#f5f5f5}
658
- #wpforo-wrap.wpf-dark .wpf-post-create .wpf-subject{background-color:#333333}
659
- #wpforo-wrap.wpf-dark #wpf-post-create{background-color:#f5f5f5}
660
- #wpforo-wrap.wpf-dark #wpf-post-create div.mce-toolbar-grp{background-color:#f5f5f5}
661
- #wpforo-wrap.wpf-dark input[type="submit"], #wpforo-wrap.wpf-dark input[type="button"]{color:#3f7796!important;}
662
- #wpforo-wrap.wpf-dark input[type="text"], #wpforo-wrap.wpf-dark input[type="search"], #wpforo-wrap.wpf-dark input[type="email"], #wpforo-wrap.wpf-dark input[type="date"], #wpforo-wrap.wpf-dark input[type="number"], #wpforo-wrap.wpf-dark input[type="url"], #wpforo-wrap.wpf-dark input[type="tel"], #wpforo-wrap.wpf-dark input[type="password"], #wpforo-wrap.wpf-dark input[type="email"], #wpforo-wrap.wpf-dark textarea, #wpforo-wrap.wpf-dark select{color:#555555;background-color:#333333;}
663
- #wpforo-wrap.wpf-dark input[type="text"].wpf-search-field{background-color:transparent; color:#3f7796; }
664
- #wpforo-wrap.wpf-dark .wpf-field input::-webkit-input-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea::-webkit-input-placeholder { color: #cccccc;}
665
- #wpforo-wrap.wpf-dark .wpf-field input::-moz-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea::-moz-placeholder {color: #cccccc;}
666
- #wpforo-wrap.wpf-dark .wpf-field input:-ms-input-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea:-ms-input-placeholder {color: #cccccc;}
667
- #wpforo-wrap.wpf-dark .wpf-field input:-moz-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea:-moz-placeholder {color: #cccccc;}
668
  #wpforo-wrap.wpf-dark #wpforo-stat-body{border:none;}
669
- #wpforo-wrap.wpf-dark .wpforo-members-content table tr{ background-color:#f5f5f5!important; }
670
  #wpforo-wrap.wpf-dark .wpforo-profile-wrap .profile-rating-bar-wrap{background:none;}
671
  #wpforo-wrap.wpf-dark .wpforo-profile-wrap .wpforo-profile-head{border:none;}
672
- #wpforo-wrap.wpf-dark .wpf-field:nth-child(even) {background-color: #f5f5f5;}
673
- #wpforo-wrap.wpf-dark .wpf-field .wpf-field-wrap { color:#777777}
674
- #wpforo-wrap.wpf-dark .wpf-field .wpf-field-wrap i{ color:#cccccc}
675
- #wpforo-wrap.wpf-dark .wpf-table .wpfw-1 .wpf-field:nth-child(even) {background-color: #cccccc;}
676
  #wpforo-wrap.wpf-dark .wpforo-login-wrap .wpforo-table .wpfw-1 .wpf-field:nth-child(even){background-color: transparent;}
677
  #wpforo-wrap.wpf-dark .wpforo-profile-head .wpforo-active { color:#FFFFFF!important;}
678
- #wpforo-wrap.wpf-dark .wpf-profile-section .wpf-statbox .wpf-statbox-value{color:#777777}
679
  #wpforo-wrap.wpf-dark #wpf-post-create {border: none;}
680
  #wpforo-wrap.wpf-dark .wpf-topic-create {border: none;}
681
- #wpforo-wrap.wpf-dark #wpforo-description{color:#777777}
682
  #wpforo-wrap.wpf-dark .wpforo-login-wrap .wpforo-login-table{background-color: transparent;}
683
- #wpforo-wrap.wpf-dark .wpforo-login-wrap .wpforo-login-content > h3, #wpforo-wrap.wpf-dark .wpforo-register-wrap .wpforo-register-content > h3{color:#777777}
684
  #wpforo-wrap.wpf-dark .wpf-tools .wpf-tool .wpf-split-posts{background: #666666; border:none; }
685
- #wpforo-wrap.wpf-dark .wpf-tools .wpf-tool .wpf-split-posts ul li{border-bottom: 1px dotted #333333;}
686
  #wpforo-wrap.wpf-dark .wpf-tools .wpf-tool li input[type="text"]{background: #dadada;}
687
- #wpforo-wrap.wpf-dark .wpf-sbtn .wpf-sbtn-title{ color: #777777}
688
  #wpforo-wrap.wpf-dark .wpf-sbtn.wpf-sb-style-grey .wpf-sb-button {background: #666666;}
689
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a{color: #777777;}
690
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a:hover{color: #3f7796;}
691
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item .wpf-forum-item-stat{color: #777777;}
692
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-threads-head .wpf-head-box{color: #777777;}
693
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-thread-users a img{background:#3f7796}
694
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-thread-box{color: #4a8eb3;}
695
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item, #wpforo-wrap.wpf-dark .wpfl-4 .wpf-head-bar{border-bottom: 1px solid #e6e6e6;}
696
  #wpforo-wrap.wpf-dark .wpf-button{box-shadow: none;}
697
- #wpforo-wrap.wpf-dark .wpf-circle {background:#777777}
698
  #wpforo-wrap.wpf-dark .wpf-member-title.wpfut{border:none;}
699
  #wpforo-wrap.wpf-dark .wpfl-4 .wpf-content-foot .wpf-reply .wpf-action {background: #999999;}
700
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-child-post .wpf-reply-content {border: 1px solid #f5f5f5; background-color: #cccccc;}
701
  #wpforo-wrap.wpf-dark .wpfl-4 .wpf-child-post .wpf-content-foot { border-top: #999999 1px solid; }
702
- #wpforo-wrap.wpf-dark .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree .wpf-tree-item.wpf-starter .avatar {background-color: #3f7796; border: 1px solid #ff812d; }
703
  #wpforo-wrap.wpf-dark .wpforo-sbn-content .wpf-sbs-bulk-options .wpf-sbs-checkbox{color: inherit;}
704
- #wpforo-wrap.wpf-dark .wpforo-portable-form-wrap{background-color:#f5f5f5}
705
- #wpforo-wrap.wpf-dark .wpforo-portable-form-wrap div.mce-toolbar-grp, #wpforo-wrap .wpforo-portable-form-wrap div.mce-menubar{background-color:#f5f5f5}
706
  #wpforo-wrap.wpf-dark .wpf-spoiler-wrap {background-color: #444444;}
707
- #wpforo-wrap.wpf-dark .wpf-navi .wpf-navi-wrap .wpf-next-button, #wpforo-wrap.wpf-dark .wpf-navi .wpf-navi-wrap .wpf-prev-button{color: #777777;}
708
- #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-forum-info{color: #777777;}
709
- #wpforo-wrap.wpf-dark .wpforo-profile-wrap .h-bottom .wpf-profile-menu:hover{color:#333333; }
710
- #wpforo-wrap.wpf-dark .wpforo-recent-wrap .wpforo-recent-content .wpf-htr{ color:#3f7796; }
711
- #wpf-widget-profile.wpf-dark .wpf-prof-footer .wpf-prof-buttons a:not(:last-child){color:#ffffff; background:#333333;}
712
  #wpforo-wrap.wpf-dark .wpf-notifications .wpf-notification-content li a,
713
  #wpf-widget-profile.wpf-dark .wpf-notifications .wpf-notification-content li a{color:#666666;}
714
  #wpforo-wrap.wpf-dark .wpf-notifications .wpf-notification-content li:hover,
715
- #wpf-widget-profile.wpf-dark .wpf-notifications .wpf-notification-content li:hover{background:#333333;}
 
 
 
 
 
 
 
716
  #wpforo-wrap {
717
  font-size: 13px; width: 100%; padding:10px 0; margin:0px;
718
  }
6
 
7
  /* wpForo Dynamic CSS Document */
8
 
9
+ #wpforo-wrap *::selection{color: #000000; background: #33779b;}
10
+ #wpforo-wrap *::-moz-selection{color: #000000; background: #33779b;}
11
 
12
+ #wpforo-wrap { color: #bbbbbb; background: #141414 }
13
  #wpforo-wrap .wpforo-subforum i{ color:#999999; }
14
+ #wpforo-wrap #footer { background:#727272;}
15
+ #wpforo-wrap .wpf-p-error { background-color: #727272; color: #bbbbbb; }
16
+ #wpforo-wrap .wpf-res-menu { color: #141414; }
17
+ #wpforo-wrap #wpforo-menu { background-color:#000000; }
18
+ #wpforo-wrap #wpforo-menu li { border-right:#bcbcbc 1px solid; }
19
+ #wpforo-wrap #wpforo-menu li a { color: #141414; }
20
 
21
  #wpforo-wrap .wpforo-active,
22
  #wpforo-wrap #wpforo-menu li:hover,
23
  #wpforo-wrap #wpforo-menu .current-menu-ancestor,
24
  #wpforo-wrap #wpforo-menu .current-menu-parent,
25
+ #wpforo-wrap #wpforo-menu .current_page_item { background-color: #33779b!important; }
26
 
27
+ #wpforo-load { color: #33779b; }
28
+ #wpforo-load i{ color: #33779b!important; }
29
 
30
+ #wpforo-wrap .wpf-search input[type="text"]{ color: #000000; background: transparent; }
31
+ #wpforo-wrap .wpf-search input[type="text"]:focus{ background: #323232; }
32
+ #wpforo-wrap .wpf-search i{ color: #33779b; }
33
 
34
+ #wpforo-wrap .wpf-bar-right .wpf-alerts{color: #999999; border-right: 1px solid #bcbcbc; }
35
  #wpforo-wrap .wpf-bar-right .wpf-alerts i{color:#999999;text-shadow: 0 0 5px #000000;}
36
+ #wpforo-wrap .wpf-bar-right .wpf-alerts i:hover{color: #585858;}
37
  #wpforo-wrap .wpf-bar-right .wpf-alerts.wpf-new i{color: #ff812d;}
38
  #wpforo-wrap .wpf-bar-right .wpf-alerts.wpf-new i:hover{text-shadow: 0 0 20px #000000;}
39
  #wpforo-wrap .wpf-bar-right .wpf-alerts-count{color: #ff812d; text-shadow: 0 0 5px #000000;}
40
 
41
  #wpf-widget-profile .wpf-widget-alerts{color: #999999; border-right: none; }
42
  #wpf-widget-profile .wpf-widget-alerts i{color:#999999;}
43
+ #wpf-widget-profile .wpf-widget-alerts i:hover{color: #585858;}
44
  #wpf-widget-profile .wpf-widget-alerts.wpf-new i{color: #ff812d;}
45
  #wpf-widget-profile .wpf-widget-alerts.wpf-new i:hover{}
46
  #wpf-widget-profile .wpf-widget-alerts .wpf-alerts-count{color: #ff812d;}
47
 
48
+ #wpforo-wrap .wpf-notifications{background: #EFEFEF; border-top: 2px solid #000000; border-bottom:5px solid #000000;}
49
+ #wpforo-wrap .wpf-notifications .wpf-notification-head{color: #000000; border-bottom: 2px solid #ff812d;}
50
+ #wpforo-wrap .wpf-notifications .wpf-notification-content{ color: #000000;}
51
  #wpforo-wrap .wpf-notifications .wpf-notification-content li{border-bottom: 1px solid #dfdfdf;}
52
+ #wpforo-wrap .wpf-notifications .wpf-notification-content li .wpf-nleft i{color: #666666; text-shadow: 0 0 3px #585858;}
53
  #wpforo-wrap .wpf-notifications .wpf-notification-content .wpf-ndesc{color:#666666;}
54
+ #wpforo-wrap .wpf-notifications .wpf-notification-content li:hover{background: #323232;}
55
  #wpforo-wrap .wpf-notifications .wpf-notification-content li:hover .wpf-nleft i{color: #ff812d;}
56
 
57
+ #wpf-widget-profile .wpf-notifications{background: #EFEFEF; border-top: 2px solid #000000; border-bottom:5px solid #000000;}
58
+ #wpf-widget-profile .wpf-notifications .wpf-notification-head{color: #000000; border-bottom: 2px solid #ff812d;}
59
+ #wpf-widget-profile .wpf-notifications .wpf-notification-content{ color: #000000;}
60
  #wpf-widget-profile .wpf-notifications .wpf-notification-content li{border-bottom: 1px solid #dfdfdf;}
61
+ #wpf-widget-profile .wpf-notifications .wpf-notification-content li .wpf-nleft i{color: #666666; text-shadow: 0 0 3px #585858;}
62
  #wpf-widget-profile .wpf-notifications .wpf-notification-content .wpf-ndesc{color:#666666;}
63
+ #wpf-widget-profile .wpf-notifications .wpf-notification-content li:hover{background: #323232;}
64
  #wpf-widget-profile .wpf-notifications .wpf-notification-content li:hover .wpf-nleft i{color: #ff812d;}
65
 
66
 
67
+ #wpforo-wrap #wpforo-poweredby{ background-color:#000000; color: #141414; }
68
+ #wpforo-wrap #wpforo-title{ color:#bbbbbb;}
69
+ #wpforo-wrap #wpforo-description{color:#000000;border-bottom:1px solid #585858;}
70
 
71
+ #wpforo-wrap a { color: #e0e0e0; }
72
+ #wpforo-wrap a:visited { color: #e0e0e0; }
73
+ #wpforo-wrap a:hover{ color: #888888;}
74
+ #wpforo-wrap a:active { color: #888888; }
75
 
76
+ #wpforo-wrap .wpflink { color: #e0e0e0; }
77
+ #wpforo-wrap .wpflink:hover { color: #888888; }
78
 
79
+ #wpforo-wrap pre { border:#727272 1px solid; background:#33779b; }
80
 
81
+ .wpfcl-a{ color:#888888!important; }
82
+ .wpfbg-a{ background-color:#888888!important; }
83
+ .wpfcl-b{ color:#33779b!important; }
84
+ .wpfbg-b{ background-color:#33779b!important; }
85
  .wpfcl-0{ color:#999999!important; }
86
  .wpfbg-0{ background-color:#999999!important; }
87
+ .wpfcl-1{ color:#000000!important; }
88
+ .wpfbg-1{ background-color:#000000!important; }
89
+ .wpfcl-2{ color:#bcbcbc!important; }
90
+ .wpfbg-2{ background-color:#bcbcbc!important; }
91
+ .wpfcl-3{ color:#141414!important; }
92
+ .wpfbg-3{ background-color:#141414!important; }
93
+ .wpfcl-4{ color:#7eea8d!important;}
94
+ .wpfbg-4{ background-color:#7eea8d!important; }
95
  .wpfcl-5{ color:#ff812d!important; }
96
  .wpfbg-5{ background-color:#ff812d!important; }
97
+ .wpfcl-6{ color:#777777!important; }
98
+ .wpfbg-6{ background-color:#777777!important; }
99
+ .wpfcl-7{ color:#727272!important; }
100
+ .wpfbg-7{ background-color:#727272!important; }
101
  .wpfcl-8{ color:#4dca5c!important; }
102
  .wpfbg-8{ background-color:#4dca5c!important; }
103
+ .wpfcl-9{ color:#323232!important; }
104
+ .wpfbg-9{ background-color:#323232!important; }
105
 
106
+ #wpforo-wrap .author-rating { border: 1px solid #727272; background: #323232; }
107
+ #wpforo-wrap .wpf-author-nicename{ color:#bcbcbc;}
108
+ #wpforo-wrap .wpforo-admin-note{ border: 1px solid #727272; background: #141414; }
109
 
110
  #wpforo-wrap .wpf-breadcrumb .wpf-root{ border-left:1px solid #666666; }
111
  #wpforo-wrap .wpf-breadcrumb a.wpf-end { background: transparent!important; }
112
  #wpforo-wrap .wpf-breadcrumb a.wpf-end:hover{ background: transparent!important; }
113
  #wpforo-wrap .wpf-breadcrumb a { color:#666666;}
114
+ #wpforo-wrap .wpf-breadcrumb div:hover{ background:#323232; }
115
+ #wpforo-wrap .wpf-breadcrumb div:hover:after { background:#323232; }
116
+ #wpforo-wrap .wpf-breadcrumb div.active{ background:#323232; color:#cecece; }
117
+ #wpforo-wrap .wpf-breadcrumb div.active:after { background:#323232; }
118
+ #wpforo-wrap .wpf-breadcrumb div:after { background: #141414; }
119
+ #wpforo-wrap .wpf-breadcrumb div.active:after { background: #323232; }
120
 
121
  #wpforo-wrap .wpforo-post .wpforo-post-content img,
122
+ #wpforo-wrap .wpforo-revision-body img{ border:#727272 1px solid; background:#141414; }
123
  #wpforo-wrap .wpforo-post blockquote,
124
+ #wpforo-wrap .wpforo-revision-body blockquote{ border:#999999 1px dotted; background:#727272; }
125
  #wpforo-wrap .wpforo-post .wpforo-post-code,
126
+ #wpforo-wrap .wpforo-revision-body .wpforo-post-code{ border:#727272 1px solid; background:#727272; }
127
  #wpforo-wrap .wpforo-post code,
128
+ #wpforo-wrap .wpforo-revision-body code{ border:#727272 1px solid; background:#727272; }
129
  #wpforo-wrap .wpforo-post .wpforo-post-code-title,
130
+ #wpforo-wrap .wpforo-post .wpforo-post-code-title{ border-bottom:#727272 1px solid;}
131
+ #wpforo-wrap .wpforo-post .wpforo-post-attachments{ border:#141414 1px dotted; }
132
+ #wpforo-wrap .wpforo-post .wpforo-post-attachments img{border:#727272 2px solid; background:#141414; }
133
+ #wpforo-wrap .wpforo-post .wpforo-post-signature{ border-top:#888888 1px dotted; color:#bcbcbc;}
134
+ #wpforo-wrap .wpforo-post .wpforo-membertoggle i{ color:#e0e0e0;}
135
  #wpforo-wrap .wpf-mod-message{color:#ff812d}
136
 
137
+ #wpforo-wrap .wpforo-topic-badges{ background-color:#323232; }
138
  #wpforo-wrap .wpf-unread-forum .wpforo-forum-icon i,
139
+ #wpforo-wrap .wpforo-subforum .wpf-unread-forum i{ color:#888888!important;}
140
 
141
 
142
+ #wpforo-wrap .wpfl-1 .wpforo-category{ background-color: #33779b; border-bottom:#585858 1px solid; }
143
+ #wpforo-wrap .wpfl-1 .cat-title{ color:#141414; }
144
+ #wpforo-wrap .wpfl-1 .cat-stat-posts { color:#141414; }
145
+ #wpforo-wrap .wpfl-1 .cat-stat-topics {color:#141414; }
146
+ #wpforo-wrap .wpfl-1 .forum-wrap{ border-top:#585858 1px solid; }
147
+ #wpforo-wrap .wpfl-1 .wpforo-forum{ background-color:#323232; }
148
+ #wpforo-wrap .wpfl-1 .wpforo-forum-description{color:#bcbcbc; }
149
  #wpforo-wrap .wpfl-1 .wpforo-subforum{ border-top:#dadada 1px dotted; }
150
  #wpforo-wrap .wpfl-1 .wpforo-forum-footer{ color:#999999; }
151
+ #wpforo-wrap .wpfl-1 .wpforo-last-topics{ background-color:#141414; }
152
+ #wpforo-wrap .wpfl-1 .wpforo-last-topics-tab{ color:#000000; }
153
+ #wpforo-wrap .wpfl-1 .wpforo-last-topics-list{ color:#000000; border-bottom:#585858 0 solid; }
154
+
155
+ #wpforo-wrap .wpfl-1 .wpforo-topic-head{ background-color: #33779b; border-bottom:#585858 1px solid; }
156
+ #wpforo-wrap .wpfl-1 .head-title{ color:#141414; }
157
+ #wpforo-wrap .wpfl-1 .head-stat-posts { color:#141414; }
158
+ #wpforo-wrap .wpfl-1 .head-stat-views { color:#141414; }
159
+ #wpforo-wrap .wpfl-1 .topic-wrap{ border-top:#585858 1px solid; }
160
+ #wpforo-wrap .wpfl-1 .wpforo-topic{ background-color:#323232; }
161
+ #wpforo-wrap .wpfl-1 .wpforo-topic-info{ color:#000000; }
162
+ #wpforo-wrap .wpfl-1 .wpforo-topic-stat-posts{ color:#000000; }
163
+ #wpforo-wrap .wpfl-1 .wpforo-topic-stat-views{ color:#000000; }
164
+ #wpforo-wrap .wpfl-1 .wpforo-last-posts{ background-color:#141414; }
165
+ #wpforo-wrap .wpfl-1 .wpforo-last-posts-tab{ color:#000000; }
166
+ #wpforo-wrap .wpfl-1 .wpforo-last-posts-list{ color:#000000; border-bottom:#585858 0 solid; }
167
+
168
+ #wpforo-wrap .wpfl-1 .post-wrap{ border-top:none; border-bottom:#727272 3px solid; }
169
+ #wpforo-wrap .wpfl-1 .wpforo-post-head{ background-color: #33779b; border-bottom:#585858 1px solid; }
170
+ #wpforo-wrap .wpfl-1 .wpforo-post{ background-color:#323232; }
171
+ #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top{ border-bottom:1px solid #727272; }
172
+ #wpforo-wrap .wpfl-1 .wpforo-post .wpf-left .avatar{ background:#141414; border:#727272 2px solid; }
173
+ #wpforo-wrap .wpfl-1 .wpforo-post .wpf-left .author-rating{ border:1px solid #727272; background:#323232; }
174
+ #wpforo-wrap .wpfl-1 .wpforo-post .bottom { border-top:#727272 1px solid; }
175
  #wpforo-wrap .wpfl-1 .wpforo-post .bottom .bleft a{ color:#ff812d; }
176
 
177
+ #wpforo-wrap .wpfl-2 .wpforo-category{ background-color: #33779b; border-bottom:#585858 1px solid; }
178
+ #wpforo-wrap .wpfl-2 .cat-title{ color:#141414; }
179
+ #wpforo-wrap .wpfl-2 .cat-lastpostinfo{ color:#141414; }
180
+ #wpforo-wrap .wpfl-2 .forum-wrap{ border-top:#585858 1px solid; }
181
+ #wpforo-wrap .wpfl-2 .wpforo-forum{ background-color:#323232;}
182
+ #wpforo-wrap .wpfl-2 .wpforo-forum-icon{ color:#000000; }
183
+ #wpforo-wrap .wpfl-2 .wpforo-forum-info{ color:#000000; }
184
  #wpforo-wrap .wpfl-2 .wpforo-subforum{ border-top:#dadada 1px dotted;}
185
  #wpforo-wrap .wpfl-2 .wpforo-forum-stat{ color:#ff812d; }
186
+ #wpforo-wrap .wpfl-2 .wpforo-last-post{ color:#000000; }
187
+ #wpforo-wrap .wpfl-2 .wpforo-last-post-avatar{ color:#000000 }
188
+ #wpforo-wrap .wpfl-2 .wpforo-last-post-avatar img{ background:#141414; border:1px solid #585858; }
189
+
190
+ #wpforo-wrap .wpfl-2 .wpforo-topic-head{ background-color: #33779b; border-bottom:#585858 1px solid; }
191
+ #wpforo-wrap .wpfl-2 .head-title{ color:#141414;}
192
+ #wpforo-wrap .wpfl-2 .head-stat-posts { color:#141414; }
193
+ #wpforo-wrap .wpfl-2 .head-stat-views { color:#141414; }
194
+ #wpforo-wrap .wpfl-2 .head-stat-lastpost { color:#141414; }
195
+ #wpforo-wrap .wpfl-2 .topic-wrap{ border-top:#585858 1px solid; }
196
+ #wpforo-wrap .wpfl-2 .wpforo-topic{ background-color:#323232; }
197
+ #wpforo-wrap .wpfl-2 .wpforo-topic-avatar{color:#000000; }
198
+ #wpforo-wrap .wpfl-2 .wpforo-topic-avatar img{ background:#141414; border:1px solid #585858; }
199
+ #wpforo-wrap .wpfl-2 .wpforo-topic-info{ color:#000000; }
200
+ #wpforo-wrap .wpfl-2 .wpforo-topic-stat-posts{ color:#000000;}
201
+ #wpforo-wrap .wpfl-2 .wpforo-topic-stat-views{ color:#000000;}
202
+ #wpforo-wrap .wpfl-2 .wpforo-topic-stat-lastpost{ color:#000000;}
203
+
204
+ #wpforo-wrap .wpfl-2 .post-wrap{ border-top:#727272 1px solid; }
205
+ #wpforo-wrap .wpfl-2 .wpforo-post-head{ background-color: #33779b; border-bottom:#585858 1px solid; }
206
+ #wpforo-wrap .wpfl-2 .wpforo-post{ background-color:#141414; }
207
+ #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right{ background:#323232; }
208
+ #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right .wpforo-post-content-bottom{ border-top:#141414 1px solid; background:#141414; }
209
+ #wpforo-wrap .wpfl-2 .wpforo-post .wpf-left .avatar{ background:#141414; border:#727272 2px solid; }
210
  #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right .wpforo-post-content-bottom .cbleft a{color:#ff812d;}
211
 
212
+ #wpforo-wrap .wpfl-3 .wpforo-category{ background-color: #33779b;border-bottom:#585858 1px solid; }
213
+ #wpforo-wrap .wpfl-3 .cat-title{ color:#141414; }
214
+ #wpforo-wrap .wpfl-3 .cat-stat-posts { color:#141414; }
215
+ #wpforo-wrap .wpfl-3 .cat-stat-answers { color:#141414; }
216
+ #wpforo-wrap .wpfl-3 .cat-stat-questions { color:#141414; }
217
+ #wpforo-wrap .wpfl-3 .forum-wrap{ border-top:#585858 1px solid; }
218
+ #wpforo-wrap .wpfl-3 .wpforo-forum{ background-color:#323232; }
219
+ #wpforo-wrap .wpfl-3 .wpforo-forum-icon{ color:#000000; }
220
+ #wpforo-wrap .wpfl-3 .wpforo-forum-info{ color:#000000; }
221
  #wpforo-wrap .wpfl-3 .wpforo-subforum{ border-top:#dadada 1px dotted; }
222
  #wpforo-wrap .wpfl-3 .wpforo-forum-footer{ color:#999999; }
223
+ #wpforo-wrap .wpfl-3 .wpforo-forum-stat-posts{color:#000000;}
224
+ #wpforo-wrap .wpfl-3 .wpforo-forum-stat-answers{ color:#000000; }
225
+ #wpforo-wrap .wpfl-3 .wpforo-forum-stat-questions{color:#000000;}
226
+ #wpforo-wrap .wpfl-3 .wpforo-last-topics{ background-color:#141414; }
227
+ #wpforo-wrap .wpfl-3 .wpforo-last-topics-tab{ color:#000000; }
228
+ #wpforo-wrap .wpfl-3 .wpforo-last-topics-list{ color:#000000; border-bottom:#585858 0 solid; }
229
+ #wpforo-wrap .wpfl-3 .wpforo-last-topic-posts{ background:#323232; }
230
+ #wpforo-wrap .wpfl-3 .wpforo-last-topic .votes{ background:#323232; }
231
+ #wpforo-wrap .wpfl-3 .wpforo-last-topic .answers{ background:#323232; }
232
+ #wpforo-wrap .wpfl-3 .wpforo-last-topic .views{background:#323232; }
233
+
234
+ #wpforo-wrap .wpfl-3 .wpforo-topic-head{ background-color: #33779b; border-bottom:#585858 2px solid; }
235
+ #wpforo-wrap .wpfl-3 .head-title{ color:#141414; }
236
+ #wpforo-wrap .wpfl-3 .head-stat-posts { color:#141414; }
237
+ #wpforo-wrap .wpfl-3 .head-stat-lastpost { color:#141414; }
238
+ #wpforo-wrap .wpfl-3 .topic-wrap{ border-top:#141414 1px solid; border-bottom:#727272 1px solid; }
239
+ #wpforo-wrap .wpfl-3 .wpforo-topic{ background-color:#323232; }
240
+ #wpforo-wrap .wpfl-3 .wpforo-topic-avatar{ color:#000000; }
241
+ #wpforo-wrap .wpfl-3 .wpforo-topic-avatar img{ background:#141414; border:1px solid #585858; }
242
+ #wpforo-wrap .wpfl-3 .wpforo-topic-info{ color:#000000; }
243
+ #wpforo-wrap .wpfl-3 .wpforo-topic-stat-lastpost{ color:#000000; }
244
+ #wpforo-wrap .wpfl-3 .wpforo-topic-status .votes{ background:#323232; }
245
+ #wpforo-wrap .wpfl-3 .wpforo-topic-status .answers{ background:#323232; }
246
+ #wpforo-wrap .wpfl-3 .wpforo-topic .views{ background:#323232; }
247
+ #wpforo-wrap .wpfl-3 .wpforo-topic .count{border-right:1px solid #727272; border-top:1px solid #727272;border-left:1px solid #727272;}
248
+ #wpforo-wrap .wpfl-3 .wpforo-topic .wpforo-label{border-right:1px solid #727272; border-bottom:1px solid #727272;border-left:1px solid #727272;}
249
+
250
+ #wpforo-wrap .wpfl-3 .post-wrap{ border-top:#727272 1px solid; }
251
+ #wpforo-wrap .wpfl-3 .wpforo-post-head{ background-color: #33779b; border-bottom:#585858 1px solid; }
252
+ #wpforo-wrap .wpfl-3 .wpforo-post{ background-color:#141414; }
253
+ #wpforo-wrap .wpfl-3 .wpforo-tags{ background-color:#323232; }
254
  #wpforo-wrap .wpfl-3 .wpforo-post .wpf-left .wpf-toggle-answer{ color:#00a636; }
255
  #wpforo-wrap .wpfl-3 .wpforo-post .wpf-left .wpf-toggle-not-answer{ color:#999999!important; }
256
+ #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right{ background:#323232; }
257
+ #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-content-top{ border-bottom:1px dotted #727272; }
258
+ #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-tool-bar{ border-top:1px dotted #727272; }
259
+ #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-signature-content{ border-top:#888888 1px dotted; }
260
+ #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-author-data-content{ border:#141414 1px solid; background:#33779b;}
261
+ #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-author-data .avatar{ background:#141414; border:1px solid #585858; }
262
+ #wpforo-wrap .wpfl-3 .wpforo-comment{ background-color:#141414; }
263
+ #wpforo-wrap .wpfl-3 .wpforo-comment .wpf-right{ background:#323232; }
264
+
265
+
266
+ #wpforo-wrap .wpfl-4 .wpforo-category{ background-color: #33779b; border-bottom:#585858 1px solid; }
267
+ #wpforo-wrap .wpfl-4 .cat-title{ color:#141414; }
268
+ #wpforo-wrap .wpfl-4 .wpforo-post-head{ background-color: #33779b; border-bottom:#585858 1px solid; }
269
+ #wpforo-wrap .wpfl-4 .wpforo-post .wpf-right .wpforo-post-content-top{ border-bottom:1px solid #727272; }
270
+ #wpforo-wrap .wpfl-4 .wpforo-post .wpf-left .avatar{ background:#141414; border:#727272 1px solid; }
271
+ #wpforo-wrap .wpfl-4 .wpforo-post .wpf-left .author-rating{ border:1px solid #727272; background:#323232; }
272
+ #wpforo-wrap .wpfl-4 .wpforo-post .bottom { border-top:#727272 1px solid; }
273
  #wpforo-wrap .wpfl-4 .wpforo-post .bottom .bleft a{ color:#ff812d; }
274
  #wpforo-wrap .wpf-circle{box-shadow: 0 0 1px #999999; }
275
+ #wpforo-wrap .wpfl-4 .wpf-head-bar {background: #323232;border-top: #585858 1px solid;border-bottom: 1px solid #dadada;}
276
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest,
277
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest,
278
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved,
279
+ #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved{color:#bcbcbc;}
280
+ #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest:hover{color:#777777;}
281
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest:hover{color:#ff812d;}
282
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved:hover{color:#00a636;}
283
+ #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved:hover{color:#bcbcbc;}
284
+ #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-newest.wpf-active{border-color:#777777;color:#777777;}
285
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-hottest.wpf-active{border-color:#ff812d;color:#ff812d;}
286
  #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-solved.wpf-active{border-color:#00a636;color:#00a636;}
287
+ #wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved:hover,#wpforo-wrap .wpfl-4 .wpf-load-threads .wpf-unsolved.wpf-active{border-color:#bcbcbc;color:#bcbcbc;}
288
+ #wpforo-wrap .wpfl-4 .wpf-forums{color: #33779b;}
289
+ #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item{background-color: #323232; border-bottom: 1px solid #dadada;}
290
+ #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item:nth-child(even){ border-left: 3px solid #141414;}
291
+ #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a{color: #000000;}
292
+ #wpforo-wrap .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a:hover{color: #888888;}
293
+
294
+ #wpforo-wrap .wpfl-4 .wpf-threads .wpf-thread{ border-bottom: 1px solid #585858; }
295
+ #wpforo-wrap .wpfl-4 .wpf-threads-head{ border-bottom: 1px solid #585858;}
296
  #wpforo-wrap .wpfl-4 .wpf-threads-label{border-bottom:1px dashed #999999; color: #666666;}
297
  #wpforo-wrap .wpfl-4 .wpf-threads-head .wpf-head-box{ color: #666666;}
298
+ #wpforo-wrap .wpfl-4 .wpf-thread-body {color:#000000;}
299
  #wpforo-wrap .wpfl-4 .wpf-threads .wpforo-tags .wpf-tags-text i{color: #999999;}
300
+ #wpforo-wrap .wpfl-4 .wpf-threads .wpforo-tags tag a{color: #bcbcbc;}
301
+ #wpforo-wrap .wpfl-4 .wpf-threads .wpforo-tags tag a:hover{color: #888888;}
302
+ #wpforo-wrap .wpfl-4 .wpf-thread-users a img{background-color: #141414;}
303
+ #wpforo-wrap .wpft-topic .wpfl-4 .wpf-threads-head{ background: #33779b; color: #141414; border-bottom: 2px solid #585858; }
304
+ #wpforo-wrap .wpft-topic .wpfl-4 .wpf-threads-head .wpf-head-box{color: #141414;}
305
+ #wpforo-wrap .wpft-topic .wpfl-4 .wpf-thread{background-color: #323232;}
306
+
307
+ #wpforo-wrap .wpfl-4 .wpforo-topic-meta .wpforo-tags .wpf-tags-title i{color: #bcbcbc;}
308
+ #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-left .wpf-author-posts{color: #bcbcbc;}
309
+ #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top{ border-bottom: 1px dashed #585858;}
310
  #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-top .wpf-post-date{color:#999999;}
311
  #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content-head-bottom .wpf-author{color:#999999;}
312
+ #wpforo-wrap .wpfl-4 .wpf-parent-post .wpf-right .wpf-content{ background: #323232;}
313
+ #wpforo-wrap .wpfl-4 .wpf-content-foot{ background: #323232; border-top: #dadada 1px solid;}
314
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-like .wpf-like-count{color: #bcbcbc;}
315
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-reply .wpf-action{background: #E6E6E6;}
316
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-reply:hover .wpf-action{color: #141414; background: #888888;}
317
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons:hover .wpf-action{color: #999999;}
318
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action{ color: #585858; }
319
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action:hover{ color: #e0e0e0;}
320
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-public i,
321
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-public i{color: #888888;}
322
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-open i,
323
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-open i{color: #888888;}
324
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-approve i,
325
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-approve i{color: #888888;}
326
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsolved i,
327
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsticky i{color: #888888;}
328
  #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsolved i:hover,
329
+ #wpforo-wrap .wpfl-4 .wpf-content-foot .wpf-buttons .wpf-action.wpforo-unsticky i:hover{ color: #e0e0e0;}
330
 
331
+ #wpforo-wrap .wpfl-4 .wpf-post-replies-bar{color: #bcbcbc;}
332
+ #wpforo-wrap .wpfl-4 .wpf-post-replies-bar .wpf-post-replies-info{color: #33779b;}
333
  #wpforo-wrap .wpfl-4 .wpf-post-replies-bar .wpf-prsep{border-bottom: 1px dashed #999999;}
334
  #wpforo-wrap .wpfl-4 .wpf-post-replies-bar .wpforo-ttgg i{color: #999999;}
335
+ #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-head .wpf-author-avatar .avatar{background: #141414; border: 1px solid #dadada;}
336
+ #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-head .wpf-author .wpforo-memberinfo{color: #bcbcbc;}
337
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-head .wpf-post-date{color:#999999;}
338
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content{border: 1px solid #dadada; background-color: #FAFAFA;}
339
+ #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree{border-bottom: 1px dashed #585858;}
340
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree i{color: #999999;}
341
+ #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree .wpf-tree-item em{color: #bcbcbc;}
342
+ #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree .wpf-tree-item.wpf-starter .avatar{background: #141414; border: 1px solid #33779b;}
343
  #wpforo-wrap .wpfl-4 .wpf-child-post .wpf-content-foot{border-top: #dadada 1px solid;}
344
+ #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-footer {background: #323232;}
345
+ #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-footer .bleft:not(:empty){ border-top: 1px dashed #585858;}
346
  #wpforo-wrap .wpfl-4 .wpforo-post .wpforo-post-footer .bleft a{ color:#ff812d; }
347
+ #wpforo-wrap .wpfl-4 .wpf-replies-sep{border-bottom: 1px solid #585858; color: #999999;}
348
 
349
 
350
+ #wpforo-wrap .wpforo-profile-wrap .wpf-profile-plugin-menu .wpf-pp-menu .wpf-pp-menu-item{background:#141414; color: #bcbcbc; }
351
+ #wpforo-wrap .wpforo-profile-wrap .wpf-profile-plugin-menu .wpf-pp-menu .wpf-pp-menu-item:hover{background:#141414; color: #33779b;}
352
+ #wpforo-wrap .wpforo-profile-wrap .wpf-profile-plugin-menu #wpf-pp-forum-menu .wpf-pp-menu-item{color:#33779b; border-right:1px solid #33779b;}
353
  #wpforo-wrap .wpf-profile-section{color: #666666;}
354
  #wpforo-wrap .wpf-profile-section .wpf-profile-section-head{border-bottom:1px solid #dadada;}
355
+ #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-label{ border-bottom:#141414 1px solid; }
356
+ #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field{ border-bottom:#141414 1px solid; }
357
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field input[type="file"],
358
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field input[type="password"],
359
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field input[type="text"],
360
  #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field select,
361
+ #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-field textarea { color:#000000; }
362
  #wpforo-wrap .wpforo-profile-wrap .h-left{ }
363
+ #wpforo-wrap .wpforo-profile-wrap .profile-display-name{ color:#e0e0e0; }
364
+ #wpforo-wrap .wpforo-profile-wrap .profile-stat-data{ color:#e0e0e0; }
365
+ #wpforo-wrap .wpforo-profile-wrap .profile-stat-data-item{ color:#e0e0e0;}
366
+ #wpforo-wrap .wpforo-profile-wrap .profile-rating-bar-wrap{background:#141414;}
367
+ #wpforo-wrap .wpforo-profile-wrap .profile-rating-bar-wrap .rating-bar-cell{color:#141414;}
368
 
369
+ #wpforo-wrap .wpforo-profile-wrap .h-bottom{ border-bottom: 2px solid #727272;}
370
+ #wpforo-wrap .wpforo-profile-wrap .h-bottom .wpf-profile-menu:hover{ background: #323232; color:#000000;}
371
+ #wpforo-wrap .wpforo-profile-wrap .h-bottom .wpf-profile-menu{ border-right:#141414 1px solid; }
372
 
373
  #wpforo-wrap .wpforo-profile-head .wpforo-active,
374
  #wpforo-wrap .wpforo-profile-head #wpforo-menu a:hover,
375
  #wpforo-wrap .wpforo-profile-head #wpforo-menu .current-menu-ancestor,
376
  #wpforo-wrap .wpforo-profile-head #wpforo-menu .current-menu-parent,
377
+ #wpforo-wrap .wpforo-profile-head #wpforo-menu .current_page_item { background-color: #323232!important; color:#000000!important;}
378
+
379
+ #wpforo-wrap .wpforo-profile-wrap .h-left .avatar{ background-color:#141414; border: 2px solid #585858; }
380
+ #wpforo-wrap .wpforo-profile-wrap .wpf-username{ color:#777777; }
381
+ #wpforo-wrap .wpforo-profile-wrap .h-header .wpfy {background-color:#141414;}
382
+ #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-home .wpf-field-name-about .wpf-label-wrap{border-bottom:1px dotted #585858;}
383
+ #wpforo-wrap .wpforo-profile-wrap .wpforo-profile-home .wpf-field{ border-bottom: 1px solid #727272;}
384
+
385
+ #wpforo-wrap .wpforo-activity-content .activity-icon{ border-right:2px solid #141414; }
386
+ #wpforo-wrap .wpforo-sbn-content .sbn-icon{ border-right:2px solid #141414; }
387
+ #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options{background: #141414; border: 1px solid #dadada; border-left: 1px solid #dadada; }
388
+ #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options ul li{border-bottom: 1px dotted #585858;}
389
+ #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options .wpf-sbs-cat{background: #323232;}
390
  #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk div{border-bottom: 1px dotted #999999;}
391
+ #wpforo-wrap .wpforo-sbn-content .wpf-sbs-bulk-options .wpf-sbs-checkbox{color: #000000;}
392
 
393
 
394
+ #wpforo-wrap input[type="text"], #wpforo-wrap input[type="password"], #wpforo-wrap input[type="email"], #wpforo-wrap textarea, #wpforo-wrap select { border: 1px solid #dadada; color: #bcbcbc; box-shadow: inset 0 1px 4px #727272; -moz-box-shadow: inset 0 1px 4px #727272; -webkit-box-shadow: inset 0 1px 4px #727272; }
395
+ #wpforo-wrap input[type="submit"], #wpforo-wrap input[type="reset"], #wpforo-wrap input[type="button"], #wpforo-dialog input[type="submit"], #wpforo-dialog input[type="reset"], #wpforo-dialog input[type="button"]{ background:#33779b; color:#141414; border: 1px solid #777777; }
396
+ #wpforo-wrap input[type="submit"]:hover,#wpforo-wrap input[type="reset"]:hover{ background:#777777; }
397
+ #wpforo-wrap input[type="button"]:hover{ background:#777777; }
398
+ .wpf-button{ background:#33779b; color:#141414!important; border: 1px solid #777777; }
399
+ .wpf-button:hover{ background:#777777; }
400
+ #wpforo-wrap .wpf-button{ background:#33779b; color:#141414!important; border: 1px solid #777777; }
401
+ #wpforo-wrap .wpf-button:hover{ background:#777777; }
402
 
403
+ #wpforo-wrap .wpf-topic-create{ border: solid #dadada 1px; background-color: #323232 ;}
404
  #wpforo-wrap .wpf-topic-create .wp-editor-tools{ border-bottom:1px #dadada solid; }
405
  #wpforo-wrap .wpf-topic-create .wp-editor-tabs a.switch-tmce{ border: 1px #dadada solid; }
406
  #wpforo-wrap .wpf-topic-create .wp-editor-tabs a.switch-html{ border: 1px #dadada solid; }
407
+ #wpforo-wrap .wpf-topic-create .quicktags-toolbar input[type="button"] { background:#33779b; color:#141414; }
408
+ #wpforo-wrap .wpf-topic-create .quicktags-toolbar input[type="button"]:hover{ background:#777777!important; }
409
 
410
+ #wpforo-wrap #wpf-post-create { border: solid #dadada 1px; background-color: #323232 ;}
411
  #wpforo-wrap .wpf-post-create .wp-editor-tools{ border-bottom:1px #dadada solid; }
412
  #wpforo-wrap .wpf-post-create .wp-editor-tabs a.switch-tmce{ border: 1px #dadada solid; }
413
  #wpforo-wrap .wpf-post-create .wp-editor-tabs a.switch-html{ border: 1px #dadada solid; }
414
+ #wpforo-wrap .wpf-post-create .quicktags-toolbar input[type="button"] { background:#33779b; color:#141414; }
415
+ #wpforo-wrap .wpf-post-create .quicktags-toolbar input[type="button"]:hover{ background:#777777!important; }
416
+
417
+ #wpforo-wrap .wpforo-tags .wpf-tags-title{border-right: 1px solid #141414;}
418
+ #wpforo-wrap .wpf-tags a{background:#cecece; color:#141414;}
419
+ #wpforo-wrap .wpf-tags a:before{ border-color:transparent #cecece transparent transparent;}
420
+ #wpforo-wrap .wpf-tags a:after{ background:#141414; -moz-box-shadow:-1px -1px 2px #e0e0e0; -webkit-box-shadow:-1px -1px 2px #e0e0e0; box-shadow:-1px -1px 2px #e0e0e0;}
421
+ #wpforo-wrap .wpf-topic-tags #wpf_tags{color: #cecece;}
422
+ #wpforo-wrap.wpf-dark .wpf-topic-tags #wpf_tags{color: #000000;}
423
  #wpforo-wrap .wpf-tags a:active,
424
+ #wpforo-wrap .wpf-tags a:visited{color: #141414;}
425
+ #wpforo-wrap .wpf-tags a:hover{background:#666666; color: #141414;}
426
  #wpforo-wrap .wpf-tags a:hover:before{border-color:transparent #666666 transparent transparent;}
427
 
428
+ #wpforo-wrap .wpforo-topic-footer{color: #bcbcbc;}
429
+ #wpforo-wrap .wpf-topic-rel .wpf-rel-wrap{border-top: 1px solid #727272; border-bottom: 1px solid #727272;}
430
+ #wpforo-wrap .wpf-topic-rel .wpf-no-rel{border-top: 1px solid #727272;}
431
+ #wpforo-wrap .wpf-topic-visitors{border-top: 1px solid #727272;}
432
+ #wpforo-wrap .wpf-topic-navi .wpf-navi-wrap{border-top: #727272 3px solid;}
433
  #wpforo-wrap .wpf-tags-text i,
434
+ #wpforo-wrap .wpf-topic-rel .wpf-rel-title i{color:#bcbcbc;}
435
 
436
+ #wpforo-wrap .wpforo-members-wrap .wpforo-members-content { border:#727272 1px solid; }
437
+ #wpforo-wrap .wpforo-members-wrap td.wpf-members-search { border-bottom:1px solid #727272; }
438
+ #wpforo-wrap .wpforo-members-wrap td.wpf-members-avatar { border-right:2px solid #141414; }
439
+ #wpforo-wrap .wpforo-members-wrap td.wpf-members-regdate-head{ border-bottom:1px solid #727272; }
440
+ #wpforo-wrap .wpforo-members-wrap td.wpf-members-foot { border-top:1px solid #727272; }
441
 
442
+ #wpforo-wrap .wpforo-register-wrap .wpforo-register-content { border-top:#33779b 1px solid; border-bottom:#585858 1px solid; padding: 40px 1%; }
443
+ #wpforo-wrap .wpforo-register-wrap .wpforo-register-content h3{color:#000000}
444
+ #wpforo-wrap .wpforo-login-wrap .wpforo-login-content { border-top:#33779b 1px solid; border-bottom:#585858 1px solid; padding: 40px 1%; }
445
  #wpforo-wrap .wpforo-login-wrap .wpforo-login-content .wpforo-login-table{ padding:1%; }
446
  #wpforo-wrap .wpforo-login-wrap .wpforo-login-content .wpforo-login-table .wpf-field{border-bottom:none;}
447
+ #wpforo-wrap .wpforo-login-wrap .wpforo-login-content h3{color:#000000}
448
+
449
+ #wpforo-wrap .wpforo-404-wrap .wpforo-404-content { border-top:#727272 1px solid; border-bottom:#727272 1px solid; }
450
+ #wpforo-wrap .wpforo-404-wrap .wpf-search-box { border:#585858 1px dashed; }
451
+
452
+ #wpforo-wrap #wpforo-search-title { color:#bbbbbb; }
453
+ #wpforo-wrap .wpforo-search-wrap .wpf-search-bar{ background:#323232; border:#727272 1px solid; }
454
+ #wpforo-wrap .wpforo-search-wrap .wpf-search-bar .wpfltd{ border-bottom:1px dotted #141414; }
455
+ #wpforo-wrap .wpforo-search-wrap .wpf-search-bar .wpfrtd{ border-bottom:1px dotted #141414; }
456
+ #wpforo-wrap .wpforo-search-wrap .wpforo-search-content { border-bottom:#727272 1px solid; }
457
+ #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-ptr{ border-bottom:#585858 1px solid;}
458
+ #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-htr{ background-color:#33779b; color:#141414; }
459
+ #wpforo-wrap .wpforo-search-wrap .wpforo-search-content .wpf-ttr{ background:#323232 }
460
+ #wpforo-wrap .wpforo-search-wrap .wpforo-search-content td.wpf-shead-icon{ border-right:1px solid #141414;}
461
+ #wpforo-wrap .wpforo-search-wrap .wpforo-search-content td.wpf-spost-icon { border-right:1px solid #141414;}
462
+
463
+ #wpforo-wrap #wpforo-recent-title { color:#bbbbbb; }
464
+ #wpforo-wrap .wpforo-recent-wrap .wpf-recent-bar{ background:#323232; border:#727272 1px solid; }
465
+ #wpforo-wrap .wpforo-recent-wrap .wpf-recent-bar .wpfltd{ border-bottom:1px dotted #141414; }
466
+ #wpforo-wrap .wpforo-recent-wrap .wpf-recent-bar .wpfrtd{ border-bottom:1px dotted #141414; }
467
+ #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content { border-bottom:#727272 1px solid; }
468
+ #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content .wpf-htr{ background-color:#33779b; color:#141414; }
469
+ #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content .wpf-ttr{ background:#323232 }
470
+ #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content td.wpf-shead-icon{ border-right:1px solid #141414;}
471
+ #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content td.wpf-spost-icon { border-right:1px solid #141414;}
472
  #wpforo-wrap .wpforo-recent-wrap .wpforo-recent-content td.wpf-stext{color:#666666}
473
 
474
+ #wpforo-wrap .wpf-action, .wpf-notifications .wpf-action{ color: #e0e0e0; }
475
+ #wpforo-wrap .wpf-action:hover, .wpf-notifications .wpf-action:hover{ cursor: pointer; color: #888888; }
476
+ #wpforo-wrap .wpf-action.wpforo-tools{ color: #141414; }
477
+ #wpforo-wrap .wpf-action.wpforo-tools:hover{ cursor: pointer; /*color: #33779b;*/ }
478
 
479
  #wpforo-wrap .wpf-navi .wpf-navi-wrap .wpf-page-info{ color:#666666; }
480
+ #wpforo-wrap .wpf-navi .wpf-navi-wrap .wpf-prev-button{ background:#33779b; color:#141414; border: 1px solid #777777; }
481
+ #wpforo-wrap .wpf-navi .wpf-navi-wrap .wpf-next-button{ background:#33779b; color:#141414; border: 1px solid #777777; }
482
 
483
+ #wpforo-wrap #wpforo-stat-header{ background-color:#000000; color: #141414; border-bottom: 2px solid #585858;}
484
+ #wpforo-wrap #wpforo-stat-body{ border:#727272 1px solid; background:#323232; }
485
  #wpforo-wrap #wpforo-stat-body .wpf-stat-data{ }
486
+ #wpforo-wrap #wpforo-stat-body .wpf-stat-item{border-right:1px solid #727272;}
487
+ #wpforo-wrap #wpforo-stat-body .wpf-stat-item i{color:#bcbcbc;}
488
+ #wpforo-wrap #wpforo-stat-body .wpf-stat-item .wpf-stat-value{color:#bcbcbc;}
489
+ #wpforo-wrap #wpforo-stat-body .wpf-stat-item .wpf-stat-label{border-top:1px dotted #585858; color:#bcbcbc;}
490
+ #wpforo-wrap #wpforo-stat-body .wpf-last-info i{color:#bcbcbc;}
491
 
492
  #wpforo-wrap #wpforo-stat-body .wpf-new i,
493
+ #wpforo-wrap #wpforo-stat-body .wpf-all-read i{color:#cecece;}
494
 
495
  #wpforo-wrap .widget-title,
496
+ .wpforo-widget-wrap .widget-title{ border-bottom:2px solid #727272;}
497
  #wpforo-wrap .wpforo-widget-wrap .wpforo-widget-content li,
498
+ .wpforo-widget-wrap .wpforo-widget-content li{ border-bottom:1px dotted #585858; }
499
 
500
  .wpforo-widget-wrap .wpf-widget-tags li{border:none!important;}
501
+ .wpforo-widget-wrap .wpf-widget-tags li a{border-color:#888888!important; }
502
+ .wpforo-widget-wrap .wpf-widget-tags li span{border:1px solid #888888!important; background-color: #888888!important;color: #141414!important;}
503
+ .wpforo-widget-wrap .wpf-widget-tags li a:hover{background-color: #888888!important;color: #141414!important;}
504
+ .wpforo-widget-wrap .wpf-prof-footer .wpf-prof-buttons a:hover{background: #888888!important;}
505
 
506
  .ui-dialog { z-index: 999998 !important; }
507
  .wpf-video{ margin: 10px !important; }
508
 
509
+ .ui-dialog .ui-widget-header{ background-color: #33779b!important; border-bottom:#585858 1px solid!important; }
510
+ .ui-dialog .ui-widget-header span.ui-dialog-title{ color: #141414 !important; }
511
+ .ui-widget input[type="submit"]:hover{ background:#777777; }
512
+ .ui-widget input[type="submit"]{ background:#33779b; color:#141414; border: 1px solid #777777; }
513
 
514
  #wpforo-wrap .wpforo-topic-badges i.fa,
515
  #wpforo-wrap .wpforo-topic-badges i.fas,
516
  #wpforo-wrap .wpforo-topic-badges i.fab,
517
  #wpforo-wrap .wpforo-topic-badges i.far,
518
+ #wpforo-wrap .wpforo-topic-badges i.fal { color: #33779b; }
519
 
520
+ #wpf_multi_quote .wpf-multi-quote{color: #141414; background: #33779b;}
521
+ body.wpf-dark #wpf_multi_quote .wpf-multi-quote{color: #e0e0e0;}
522
 
523
+ #wpf-msg-box a{color:#141414;}
524
+ #wpf-msg-box a:hover{color:#727272;}
525
+ #wpf-msg-box > p{color:#141414!important;background-color:#33779b;background:-moz-linear-gradient(#33779b);background:-o-linear-gradient(#33779b);background:linear-gradient(#33779b);}
526
+ #wpf-msg-box > p:after{border-color:transparent #33779b;}
527
 
528
  #wpf-msg-box > p.error{background-color:#f46464;background:-moz-linear-gradient(#f46464);background:-o-linear-gradient(#f46464);background:linear-gradient(#f46464);}
529
  #wpf-msg-box > p.error:after{border-color:transparent #f46464;}
530
  #wpf-msg-box > p.success{background-color:#00a636;background:-moz-linear-gradient(#00a636);background:-o-linear-gradient(#00a636);background:linear-gradient(#00a636);}
531
  #wpf-msg-box > p.success:after{border-color:transparent #00a636;}
532
 
533
+ body.wpf-dark #wpf-msg-box > p, body.wpf-dark #wpf-msg-box a, body.wpf-dark #wpf-msg-box a:visited{color:#e0e0e0!important;}
534
+ body.wpf-dark #wpf-msg-box a:hover, body.wpf-dark #wpf-msg-box a:active{color:#888888!important;}
535
 
536
+ #wpforo-wrap .wpf-field { border-bottom: 1px solid #141414;}
537
+ #wpforo-wrap .wpf-field .wpf-label i{ color: #bcbcbc; }
538
+ #wpforo-wrap .wpf-field .wpf-field-wrap i{ color: #bcbcbc; }
539
 
540
+ #wpforo-wrap .wpf-field {border-bottom: 1px solid #141414;}
541
  #wpforo-wrap .wpf-field .wpf-field-cl{ clear:both;}
542
  #wpforo-wrap .wpf-field input {max-width: 100%;}
543
  #wpforo-wrap .wpf-field input[type="text"],
554
  #wpforo-wrap .wpf-field input:-ms-input-placeholder, #wpforo-wrap .wpf-field textarea:-ms-input-placeholder {color: #999999;}
555
  #wpforo-wrap .wpf-field input:-moz-placeholder, #wpforo-wrap .wpf-field textarea:-moz-placeholder {color: #999999;}
556
  #wpforo-wrap .wpf-field input[type="text"]:focus, #wpforo-wrap .wpf-field input[type="password"]:focus, #wpforo-wrap .wpf-field input[type="email"]:focus,#wpforo-wrap .wpf-field input[type="date"]:focus,#wpforo-wrap .wpf-field input[type="number"]:focus,#wpforo-wrap .wpf-field input[type="url"]:focus,#wpforo-wrap .wpf-field input[type="tel"]:focus,#wpforo-wrap .wpf-field textarea:focus,
557
+ #wpforo-wrap .wpf-field select:focus{ background-color:#feffe5; box-shadow: 0 0 10px 0 #bcbcbc; }
558
  #wpforo-wrap .wpf-field .wpf-label i{ padding-right:5px; width:25px;}
559
  #wpforo-wrap .wpf-field .wpf-field-wrap i{}
560
  #wpforo-wrap .wpf-field .wpf-field-required-icon{color: #ff812d;}
561
 
562
+ #wpforo-wrap .wpf-table .wpfw-1 .wpf-field:nth-child(even) {background-color: #323232;}
563
+ #wpforo-wrap .wpf-acp-header{border-bottom: 1px dashed #33779b;}
564
+ #wpforo-wrap .wpf-acp-header .wpf-acp-toggle i{color: #33779b;}
565
 
566
+ #wpforo-wrap .wpf-tools {background: #323232; border-bottom:#727272 3px solid; outline:3px solid #141414;}
567
  #wpforo-wrap .wpf-tools .wpf-tool-tabs .wpf-tool-tab{ border-bottom-color: #999999; }
568
+ #wpforo-wrap .wpf-tools .wpf-tool-tabs .wpf-tool-tab.wpf-tt-active{ border-top-color: #33779b; color:#33779b; }
569
+ #wpforo-wrap .wpf-tools .wpf-tool h3{ color: #727272}
570
  #wpforo-wrap .wpf-tools .wpf-tool .wpf-tool-desc{ color: #999999;}
571
+ #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]{background: #141414;}
572
+ #wpforo-wrap .wpf-tools .wpf-tool .wpf-split-posts{background: #141414; border: 1px solid #dadada; border-left: 3px solid #dadada; }
573
+ #wpforo-wrap .wpf-tools .wpf-tool .wpf-split-posts ul li{border-bottom: 1px dotted #585858;}
574
+ #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]::placeholder {color: #585858; opacity: 1;}
575
+ #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]:-ms-input-placeholder {color: #585858;}
576
+ #wpforo-wrap .wpf-tools .wpf-tool li input[type="text"]::-ms-input-placeholder {color: #585858;}
577
+
578
+ #wpforo-wrap .wpf-sb-1{color:#585858;background-color:#323232;}
579
+ #wpforo-wrap .wpf-sb-2{color:#33779b;background-color:#323232;}
580
+ #wpforo-wrap .wpf-sb-3{color:#585858;background-color:transparent;}
581
+ #wpforo-wrap .wpf-sb-4{color:#33779b;background-color:transparent;}
582
+ #wpforo-wrap .wpf-sb .wpf-sb-buttons i{color: #585858;}
583
+ #wpforo-wrap .wpf-sb .wpf-sb-toggle .wpfsa{color:#33779b!important;}
584
  #wpforo-wrap .wpfl-1 .wpf-sb-right.wpf-sb-1,
585
+ #wpforo-wrap .wpfl-1 .wpf-sb-right.wpf-sb-2{border:1px solid #727272;}
586
+ #wpforo-wrap .wpfl-2 .wpf-sb-right, #wpforo-wrap .wpfl-3 .wpf-sb-right{ border-top:1px solid #727272;}
587
  #wpforo-wrap .wpfl-2 .wpf-sb-left, #wpforo-wrap .wpfl-3 .wpf-sb-left{ background-color:transparent;}
588
+ #wpforo-wrap .wpf-sb.wpf-sb-top .wpf-sb-buttons{border-left: 1px dotted #e0e0e0;}
589
+ [dir="rtl"] #wpforo-wrap .wpf-sb.wpf-sb-top .wpf-sb-buttons{border-right: 1px dotted #e0e0e0; border-left:none;}
590
+ #wpforo-wrap .wpf-sb.wpf-sb-top.sb-tt-expanded .wpf-sb-buttons i{color:#e0e0e0;}
591
+ #wpforo-wrap .wpf-sbtn {color: #000000;}
592
  #wpforo-wrap .wpf-sbtn .wpf-sbtn-title i{color: #999999;}
593
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-grey .wpf-sb-button{background: #aaaaaa; color: #ffffff; }
594
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-grey .wpf-sb-button.wpf-sb-icon{background: transparent; color: #777777; border: 1px solid #bbbbbb;}
613
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-colored .wpf-sb-button.wpf-gg{ background-color: #DB4437; border-color: #DB4437; color: #fff;}
614
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-colored .wpf-sb-button.wpf-vk{ background-color: #4A76A8; border-color: #4A76A8; color: #fff;}
615
  #wpforo-wrap .wpf-sbtn.wpf-sb-style-colored .wpf-sb-button.wpf-ok{ background-color: #EE8208; border-color: #EE8208; color: #fff;}
616
+ #wpforo-wrap .wpforo-revisions-wrap{border-color: #727272;}
617
+ #wpforo-wrap .wpforo-revisions-wrap *{border-color: #33779b !important;}
618
+ #wpforo-wrap .wpforo-revision{background-color: #323232; box-shadow: 0 0 4px #585858;}
619
  #wpforo-wrap .wpforo-revision .wpforo-revision-top{color: #666666;}
620
+ #wpforo-wrap .wpforo-revisions-wrap .wpforo-revision-body{background-color: #141414; color: #000000;}
621
  #wpforo-wrap.wpf-dark .wpforo-revision .wpforo-revision-top{color: #999999;}
622
+ #wpforo-wrap.wpf-dark .wpforo-revisions-wrap .wpforo-revision-body{background-color: #727272; color: #e0e0e0;}
623
 
624
  @media screen and (max-width:600px) {
625
+ #wpforo-wrap #wpforo-menu .wpf-menu{background-color:#000000;}
626
+ #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top{border-top: 1px solid #727272; }
627
  }
628
 
629
+ #wpforo-wrap.wpf-dark { color: #e0e0e0; }
630
+ #wpforo-wrap.wpf-dark .wpfcl-3{ color:#e0e0e0!important; }
631
+ #wpforo-wrap.wpf-dark .wpfcl-1{ color:#e0e0e0!important; }
632
+ #wpforo-wrap.wpf-dark .wpfcl-4{ color:#e0e0e0!important; }
633
+ #wpforo-wrap.wpf-dark .wpf-action{ color: #e0e0e0; }
634
+ #wpforo-wrap.wpf-dark .wpforo-post .wpforo-post-content p{ color:#e0e0e0; }
635
+ #wpforo-wrap.wpf-dark #wpforo-menu li a { color: #e0e0e0; }
636
+ #wpforo-wrap.wpf-dark .wpfl-2 .head-stat-lastpost, #wpforo-wrap.wpf-dark .wpfl-3 .head-stat-lastpost{ color: #e0e0e0; }
637
+ #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-last-post{ color: #e0e0e0; }
638
+ #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-topic-stat-lastpost, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-topic-stat-lastpost{ color: #e0e0e0; }
639
+ #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-forum-description, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-forum-description{ color: #e0e0e0; }
640
+ #wpforo-wrap.wpf-dark .wpfl-1 .cat-title, #wpforo-wrap.wpf-dark .wpfl-2 .cat-title, #wpforo-wrap.wpf-dark .wpfl-3 .cat-title{ color:#e0e0e0; }
641
+ #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-category div, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-category div, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-category div, #wpforo-wrap.wpf-dark .wpfl-4 .wpforo-category div{ color:#e0e0e0; }
642
+ #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-last-topic-date, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-last-topic-date, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-last-topic-date{ color:#e0e0e0; }
643
+ #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-topic-stat-posts, #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-topic-stat-views{ color:#e0e0e0; }
644
+ #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-topic-stat-posts, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-topic-stat-views{ color:#e0e0e0; }
645
+ #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-topic-stat-posts, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-topic-stat-views{ color:#e0e0e0; }
646
+ #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-last-post-date, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-last-post-date, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-last-post-date{ color:#e0e0e0; }
647
+ #wpforo-wrap.wpf-dark .wpfl-1 .head-title, #wpforo-wrap.wpf-dark .wpfl-2 .head-title, #wpforo-wrap.wpf-dark .wpfl-3 .head-title{ color:#e0e0e0; }
648
+ #wpforo-wrap.wpf-dark .wpfl-1 .head-stat-posts, #wpforo-wrap.wpf-dark .wpfl-2 .head-stat-posts, #wpforo-wrap.wpf-dark .wpfl-3 .head-stat-posts{ color:#e0e0e0; }
649
+ #wpforo-wrap.wpf-dark .wpfl-1 .head-stat-views, #wpforo-wrap.wpf-dark .wpfl-2 .head-stat-views, #wpforo-wrap.wpf-dark .wpfl-3 .head-stat-views{ color:#e0e0e0; }
650
+ #wpforo-wrap.wpf-dark .wpfl-1 .wpforo-post .wpf-left, #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-post .wpf-left, #wpforo-wrap.wpf-dark .wpfl-3 .wpforo-post .wpf-left{ color:#e0e0e0; }
651
+ #wpforo-wrap .wpfl-1 .wpforo-post .wpf-right .wpforo-post-content-top, #wpforo-wrap .wpfl-2 .wpforo-post .wpf-right .wpforo-post-content-top, #wpforo-wrap .wpfl-3 .wpforo-post .wpf-right .wpforo-post-content-top{ color:#e0e0e0; }
652
+ #wpforo-wrap .wpfl-3 .wpforo-forum-stat-questions, #wpforo-wrap .wpfl-3 .wpforo-forum-stat-answers, #wpforo-wrap .wpfl-3 .wpforo-forum-stat-posts{ color:#e0e0e0; }
653
+ #wpforo-wrap.wpf-dark #wpforo-stat-header{ color: #e0e0e0; border-bottom: 1px solid #585858;}
654
+ #wpforo-wrap.wpf-dark .wpf-button{ color:#e0e0e0!important; }
655
+ #wpforo-wrap.wpf-dark .wpf-topic-create .wpf-subject{background-color:#bbbbbb}
656
+ #wpforo-wrap.wpf-dark .wpf-topic-create{background-color:#323232}
657
+ #wpforo-wrap.wpf-dark .wpf-topic-create div.mce-toolbar-grp{background-color:#323232}
658
+ #wpforo-wrap.wpf-dark .wpf-post-create .wpf-subject{background-color:#bbbbbb}
659
+ #wpforo-wrap.wpf-dark #wpf-post-create{background-color:#323232}
660
+ #wpforo-wrap.wpf-dark #wpf-post-create div.mce-toolbar-grp{background-color:#323232}
661
+ #wpforo-wrap.wpf-dark input[type="submit"], #wpforo-wrap.wpf-dark input[type="button"]{color:#e0e0e0!important;}
662
+ #wpforo-wrap.wpf-dark input[type="text"], #wpforo-wrap.wpf-dark input[type="search"], #wpforo-wrap.wpf-dark input[type="email"], #wpforo-wrap.wpf-dark input[type="date"], #wpforo-wrap.wpf-dark input[type="number"], #wpforo-wrap.wpf-dark input[type="url"], #wpforo-wrap.wpf-dark input[type="tel"], #wpforo-wrap.wpf-dark input[type="password"], #wpforo-wrap.wpf-dark input[type="email"], #wpforo-wrap.wpf-dark textarea, #wpforo-wrap.wpf-dark select{color:#000000;background-color:#bbbbbb;}
663
+ #wpforo-wrap.wpf-dark input[type="text"].wpf-search-field{background-color:transparent; color:#e0e0e0; }
664
+ #wpforo-wrap.wpf-dark .wpf-field input::-webkit-input-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea::-webkit-input-placeholder { color: #585858;}
665
+ #wpforo-wrap.wpf-dark .wpf-field input::-moz-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea::-moz-placeholder {color: #585858;}
666
+ #wpforo-wrap.wpf-dark .wpf-field input:-ms-input-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea:-ms-input-placeholder {color: #585858;}
667
+ #wpforo-wrap.wpf-dark .wpf-field input:-moz-placeholder, #wpforo-wrap.wpf-dark .wpf-field textarea:-moz-placeholder {color: #585858;}
668
  #wpforo-wrap.wpf-dark #wpforo-stat-body{border:none;}
669
+ #wpforo-wrap.wpf-dark .wpforo-members-content table tr{ background-color:#323232!important; }
670
  #wpforo-wrap.wpf-dark .wpforo-profile-wrap .profile-rating-bar-wrap{background:none;}
671
  #wpforo-wrap.wpf-dark .wpforo-profile-wrap .wpforo-profile-head{border:none;}
672
+ #wpforo-wrap.wpf-dark .wpf-field:nth-child(even) {background-color: #323232;}
673
+ #wpforo-wrap.wpf-dark .wpf-field .wpf-field-wrap { color:#bcbcbc}
674
+ #wpforo-wrap.wpf-dark .wpf-field .wpf-field-wrap i{ color:#585858}
675
+ #wpforo-wrap.wpf-dark .wpf-table .wpfw-1 .wpf-field:nth-child(even) {background-color: #585858;}
676
  #wpforo-wrap.wpf-dark .wpforo-login-wrap .wpforo-table .wpfw-1 .wpf-field:nth-child(even){background-color: transparent;}
677
  #wpforo-wrap.wpf-dark .wpforo-profile-head .wpforo-active { color:#FFFFFF!important;}
678
+ #wpforo-wrap.wpf-dark .wpf-profile-section .wpf-statbox .wpf-statbox-value{color:#bcbcbc}
679
  #wpforo-wrap.wpf-dark #wpf-post-create {border: none;}
680
  #wpforo-wrap.wpf-dark .wpf-topic-create {border: none;}
681
+ #wpforo-wrap.wpf-dark #wpforo-description{color:#bcbcbc}
682
  #wpforo-wrap.wpf-dark .wpforo-login-wrap .wpforo-login-table{background-color: transparent;}
683
+ #wpforo-wrap.wpf-dark .wpforo-login-wrap .wpforo-login-content > h3, #wpforo-wrap.wpf-dark .wpforo-register-wrap .wpforo-register-content > h3{color:#bcbcbc}
684
  #wpforo-wrap.wpf-dark .wpf-tools .wpf-tool .wpf-split-posts{background: #666666; border:none; }
685
+ #wpforo-wrap.wpf-dark .wpf-tools .wpf-tool .wpf-split-posts ul li{border-bottom: 1px dotted #bbbbbb;}
686
  #wpforo-wrap.wpf-dark .wpf-tools .wpf-tool li input[type="text"]{background: #dadada;}
687
+ #wpforo-wrap.wpf-dark .wpf-sbtn .wpf-sbtn-title{ color: #bcbcbc}
688
  #wpforo-wrap.wpf-dark .wpf-sbtn.wpf-sb-style-grey .wpf-sb-button {background: #666666;}
689
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a{color: #bcbcbc;}
690
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item a:hover{color: #e0e0e0;}
691
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item .wpf-forum-item-stat{color: #bcbcbc;}
692
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-threads-head .wpf-head-box{color: #bcbcbc;}
693
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-thread-users a img{background:#e0e0e0}
694
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-thread-box{color: #cecece;}
695
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-cat-forum-list .wpf-forum-item, #wpforo-wrap.wpf-dark .wpfl-4 .wpf-head-bar{border-bottom: 1px solid #727272;}
696
  #wpforo-wrap.wpf-dark .wpf-button{box-shadow: none;}
697
+ #wpforo-wrap.wpf-dark .wpf-circle {background:#bcbcbc}
698
  #wpforo-wrap.wpf-dark .wpf-member-title.wpfut{border:none;}
699
  #wpforo-wrap.wpf-dark .wpfl-4 .wpf-content-foot .wpf-reply .wpf-action {background: #999999;}
700
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-child-post .wpf-reply-content {border: 1px solid #323232; background-color: #585858;}
701
  #wpforo-wrap.wpf-dark .wpfl-4 .wpf-child-post .wpf-content-foot { border-top: #999999 1px solid; }
702
+ #wpforo-wrap.wpf-dark .wpfl-4 .wpf-child-post .wpf-reply-content .wpf-reply-tree .wpf-tree-item.wpf-starter .avatar {background-color: #e0e0e0; border: 1px solid #ff812d; }
703
  #wpforo-wrap.wpf-dark .wpforo-sbn-content .wpf-sbs-bulk-options .wpf-sbs-checkbox{color: inherit;}
704
+ #wpforo-wrap.wpf-dark .wpforo-portable-form-wrap{background-color:#323232}
705
+ #wpforo-wrap.wpf-dark .wpforo-portable-form-wrap div.mce-toolbar-grp, #wpforo-wrap .wpforo-portable-form-wrap div.mce-menubar{background-color:#323232}
706
  #wpforo-wrap.wpf-dark .wpf-spoiler-wrap {background-color: #444444;}
707
+ #wpforo-wrap.wpf-dark .wpf-navi .wpf-navi-wrap .wpf-next-button, #wpforo-wrap.wpf-dark .wpf-navi .wpf-navi-wrap .wpf-prev-button{color: #bcbcbc;}
708
+ #wpforo-wrap.wpf-dark .wpfl-2 .wpforo-forum-info{color: #bcbcbc;}
709
+ #wpforo-wrap.wpf-dark .wpforo-profile-wrap .h-bottom .wpf-profile-menu:hover{color:#bbbbbb; }
710
+ #wpforo-wrap.wpf-dark .wpforo-recent-wrap .wpforo-recent-content .wpf-htr{ color:#e0e0e0; }
711
+ #wpf-widget-profile.wpf-dark .wpf-prof-footer .wpf-prof-buttons a:not(:last-child){color:#141414; background:#bbbbbb;}
712
  #wpforo-wrap.wpf-dark .wpf-notifications .wpf-notification-content li a,
713
  #wpf-widget-profile.wpf-dark .wpf-notifications .wpf-notification-content li a{color:#666666;}
714
  #wpforo-wrap.wpf-dark .wpf-notifications .wpf-notification-content li:hover,
715
+ #wpf-widget-profile.wpf-dark .wpf-notifications .wpf-notification-content li:hover{background:#bbbbbb;}
716
+ #wpforo-wrap.wpf-dark .wpf-acp-title {background: #000; color: #fff;}
717
+ #wpforo-wrap.wpf-dark .wpf-acp-content {background: #000;color: #999;}
718
+ #wpforo-wrap.wpf-dark .wpf-acp-footer {background: #000;border-top: 1px dashed #777;}
719
+ #wpforo-wrap.wpf-dark .wpf-acp-content a.wpf-button-secondary {box-shadow: 0px 0px 5px #999;background: #777;}
720
+ #wpforo-wrap.wpf-dark .wpf-acp-content a.wpf-button-secondary:hover {box-shadow: 0px 0px 8px #fff;color: #fff;}
721
+ #wpforo-wrap.wpf-dark .wpf-acp-footer a.wpf-button-secondary {background: #777;color: #fff;}
722
+ #wpforo-wrap.wpf-dark .wpf-acp-footer a.wpf-button-secondary:last-child{color: #fff!important; background: #e22d00;}
723
  #wpforo-wrap {
724
  font-size: 13px; width: 100%; padding:10px 0; margin:0px;
725
  }
wpforo.php CHANGED
@@ -5,14 +5,14 @@
5
  * Description: WordPress Forum plugin. wpForo is a full-fledged forum solution for your community. Comes with multiple modern forum layouts.
6
  * Author: gVectors Team (A. Chakhoyan, R. Hovhannisyan)
7
  * Author URI: https://gvectors.com/
8
- * Version: 1.7.3
9
  * Text Domain: wpforo
10
  * Domain Path: /wpf-languages
11
  */
12
 
13
  //Exit if accessed directly
14
  if( !defined( 'ABSPATH' ) ) exit;
15
- if( !defined( 'WPFORO_VERSION' ) ) define('WPFORO_VERSION', '1.7.3');
16
 
17
  function wpforo_load_plugin_textdomain() { load_plugin_textdomain( 'wpforo', FALSE, basename( dirname( __FILE__ ) ) . '/wpf-languages/' ); }
18
  add_action( 'plugins_loaded', 'wpforo_load_plugin_textdomain' );
@@ -599,7 +599,8 @@ if( !class_exists( 'wpForo' ) ) {
599
  $stats['forums'] = $this->forum->get_count( array('is_cat' => 0) );
600
  $stats['topics'] = $this->topic->get_count();
601
  $stats['posts'] = $this->post->get_count();
602
- $stats['members'] = $this->member->get_count();
 
603
  $stats['online_members_count'] = $this->member->online_members_count();
604
  $row_count = apply_filters('wpforo_get_statistic_row_count', 20);
605
 
@@ -640,7 +641,8 @@ if( !class_exists( 'wpForo' ) ) {
640
  }
641
  break;
642
  case 'user':
643
- $stats['members'] = $this->member->get_count();
 
644
  $stats['online_members_count'] = $this->member->online_members_count();
645
 
646
  $members = $this->member->get_members(array('orderby' => 'userid', 'order' => 'DESC', 'row_count' => 1, 'groupids' => $this->usergroup->get_visible_usergroup_ids()));
@@ -750,12 +752,13 @@ if( !class_exists( 'wpForo' ) ) {
750
 
751
  $users_include = apply_filters('wpforo_member_search_users_include', $users_include);
752
  }
 
753
  $args = array(
754
  'offset' => ($current_object['paged'] - 1) * $current_object['items_per_page'],
755
  'row_count' => $current_object['items_per_page'],
756
  'orderby' => 'posts',
757
  'order' => 'DESC',
758
- 'status' => array('active'),
759
  'groupids' => $this->usergroup->get_visible_usergroup_ids()
760
  );
761
  if(!empty($users_include)) $args['include'] = $users_include;
5
  * Description: WordPress Forum plugin. wpForo is a full-fledged forum solution for your community. Comes with multiple modern forum layouts.
6
  * Author: gVectors Team (A. Chakhoyan, R. Hovhannisyan)
7
  * Author URI: https://gvectors.com/
8
+ * Version: 1.7.4
9
  * Text Domain: wpforo
10
  * Domain Path: /wpf-languages
11
  */
12
 
13
  //Exit if accessed directly
14
  if( !defined( 'ABSPATH' ) ) exit;
15
+ if( !defined( 'WPFORO_VERSION' ) ) define('WPFORO_VERSION', '1.7.4');
16
 
17
  function wpforo_load_plugin_textdomain() { load_plugin_textdomain( 'wpforo', FALSE, basename( dirname( __FILE__ ) ) . '/wpf-languages/' ); }
18
  add_action( 'plugins_loaded', 'wpforo_load_plugin_textdomain' );
599
  $stats['forums'] = $this->forum->get_count( array('is_cat' => 0) );
600
  $stats['topics'] = $this->topic->get_count();
601
  $stats['posts'] = $this->post->get_count();
602
+ $member_status = array( 'p.`status`' => apply_filters('wpforo_display_members_status', array('active')));
603
+ $stats['members'] = $this->member->get_count( $member_status );
604
  $stats['online_members_count'] = $this->member->online_members_count();
605
  $row_count = apply_filters('wpforo_get_statistic_row_count', 20);
606
 
641
  }
642
  break;
643
  case 'user':
644
+ $member_status = array( 'p.`status`' => apply_filters('wpforo_display_members_status', array('active')));
645
+ $stats['members'] = $this->member->get_count( $member_status );
646
  $stats['online_members_count'] = $this->member->online_members_count();
647
 
648
  $members = $this->member->get_members(array('orderby' => 'userid', 'order' => 'DESC', 'row_count' => 1, 'groupids' => $this->usergroup->get_visible_usergroup_ids()));
752
 
753
  $users_include = apply_filters('wpforo_member_search_users_include', $users_include);
754
  }
755
+ $member_status = apply_filters('wpforo_display_members_status', array('active'));
756
  $args = array(
757
  'offset' => ($current_object['paged'] - 1) * $current_object['items_per_page'],
758
  'row_count' => $current_object['items_per_page'],
759
  'orderby' => 'posts',
760
  'order' => 'DESC',
761
+ 'status' => $member_status,
762
  'groupids' => $this->usergroup->get_visible_usergroup_ids()
763
  );
764
  if(!empty($users_include)) $args['include'] = $users_include;