BuddyPress - Version 10.0.0-beta2

Version Description

= 9.1.1 = See: https://codex.buddypress.org/releases/version-9-1-1/

= 9.0.0 = See: https://codex.buddypress.org/releases/version-9-0-0/

= 8.0.0 = See: https://codex.buddypress.org/releases/version-8-0-0/

= 7.3.0 = See: https://codex.buddypress.org/releases/version-7-3-0/

= 7.2.1 = See: https://codex.buddypress.org/releases/version-7-2-1/

= 7.2.0 = See: https://codex.buddypress.org/releases/version-7-2-0/

= 7.1.0 = See: https://codex.buddypress.org/releases/version-7-1-0/

= 7.0.0 = See: https://codex.buddypress.org/releases/version-7-0-0/

= 6.4.0 = See: https://codex.buddypress.org/releases/version-6-4-0/

= 6.3.0 = See: https://codex.buddypress.org/releases/version-6-3-0/

= 6.2.0 = See: https://codex.buddypress.org/releases/version-6-2-0/

= 6.1.0 = See: https://codex.buddypress.org/releases/version-6-1-0/

= 6.0.0 = See: https://codex.buddypress.org/releases/version-6-0-0/

= 5.2.0 = See: https://codex.buddypress.org/releases/version-5-2-0/

= 5.1.2 = See: https://codex.buddypress.org/releases/version-5-1-2/

= 5.1.1 = See: https://codex.buddypress.org/releases/version-5-1-1/

= 5.1.0 = See: https://codex.buddypress.org/releases/version-5-1-0/

= 5.0.0 = See: https://codex.buddypress.org/releases/version-5-0-0/

Download this release

Release Info

Developer imath
Plugin Icon 128x128 BuddyPress
Version 10.0.0-beta2
Comparing to
See all releases

Code changes from version 10.0.0-beta1 to 10.0.0-beta2

Files changed (51) hide show
  1. bp-friends/bp-friends-blocks.php +17 -9
  2. bp-groups/bp-groups-admin.php +2 -1
  3. bp-groups/bp-groups-blocks.php +17 -9
  4. bp-groups/bp-groups-functions.php +2 -2
  5. bp-groups/bp-groups-template.php +53 -0
  6. bp-loader.php +1 -1
  7. bp-members/bp-members-blocks.php +17 -9
  8. bp-members/bp-members-functions.php +30 -0
  9. bp-members/screens/register.php +26 -10
  10. bp-messages/actions/exit.php +40 -0
  11. bp-messages/bp-messages-cache.php +1 -0
  12. bp-messages/bp-messages-functions.php +65 -0
  13. bp-messages/bp-messages-template.php +28 -0
  14. bp-messages/classes/class-bp-messages-component.php +1 -1
  15. bp-messages/classes/class-bp-messages-thread.php +64 -0
  16. bp-settings/actions/general.php +27 -13
  17. bp-templates/bp-legacy/buddypress-functions.php +10 -2
  18. bp-templates/bp-legacy/buddypress/members/single/messages/single.php +8 -2
  19. bp-templates/bp-legacy/js/buddypress.js +3 -3
  20. bp-templates/bp-legacy/js/buddypress.min.js +1 -1
  21. bp-templates/bp-legacy/js/password-verify.js +37 -3
  22. bp-templates/bp-legacy/js/password-verify.min.js +1 -1
  23. bp-templates/bp-nouveau/buddypress-functions.php +8 -16
  24. bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php +11 -18
  25. bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php +16 -31
  26. bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php +12 -0
  27. bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php +2 -2
  28. bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php +3 -7
  29. bp-templates/bp-nouveau/css/buddypress-rtl.css +6 -1
  30. bp-templates/bp-nouveau/css/buddypress-rtl.min.css +1 -1
  31. bp-templates/bp-nouveau/css/buddypress.css +6 -1
  32. bp-templates/bp-nouveau/css/buddypress.min.css +1 -1
  33. bp-templates/bp-nouveau/css/twentytwentyone-rtl.css +2 -2
  34. bp-templates/bp-nouveau/css/twentytwentyone-rtl.min.css +1 -1
  35. bp-templates/bp-nouveau/css/twentytwentyone.css +2 -2
  36. bp-templates/bp-nouveau/css/twentytwentyone.min.css +1 -1
  37. bp-templates/bp-nouveau/includes/groups/ajax.php +16 -0
  38. bp-templates/bp-nouveau/includes/groups/functions.php +41 -30
  39. bp-templates/bp-nouveau/includes/groups/template-tags.php +56 -2
  40. bp-templates/bp-nouveau/includes/messages/ajax.php +108 -12
  41. bp-templates/bp-nouveau/includes/template-tags.php +4 -0
  42. bp-templates/bp-nouveau/js/buddypress-messages.js +3 -3
  43. bp-templates/bp-nouveau/js/buddypress-messages.min.js +1 -1
  44. bp-templates/bp-nouveau/js/buddypress-nouveau.js +54 -1
  45. bp-templates/bp-nouveau/js/buddypress-nouveau.min.js +1 -1
  46. bp-templates/bp-nouveau/js/password-verify.js +0 -59
  47. bp-templates/bp-nouveau/js/password-verify.min.js +0 -1
  48. bp-templates/bp-nouveau/sass/_nouveau_messages.scss +6 -1
  49. bp-templates/bp-nouveau/sass/twentytwentyone.scss +2 -1
  50. buddypress.pot +360 -318
  51. class-buddypress.php +1 -1
bp-friends/bp-friends-blocks.php CHANGED
@@ -24,6 +24,23 @@ function bp_friends_blocks_add_script_data() {
24
  return;
25
  }
26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  // Include the common JS template.
28
  echo bp_get_dynamic_template_part( 'assets/widgets/friends.php' );
29
 
@@ -219,15 +236,6 @@ function bp_friends_render_friends_block( $attributes = array() ) {
219
  if ( ! has_action( 'wp_footer', 'bp_friends_blocks_add_script_data', 1 ) ) {
220
  wp_set_script_translations( 'bp-friends-script', 'buddypress' );
221
  wp_enqueue_script( 'bp-friends-script' );
222
- wp_localize_script(
223
- 'bp-friends-script',
224
- 'bpFriendsSettings',
225
- array(
226
- 'path' => ltrim( $path, '/' ),
227
- 'root' => esc_url_raw( get_rest_url() ),
228
- 'nonce' => wp_create_nonce( 'wp_rest' ),
229
- )
230
- );
231
 
232
  add_action( 'wp_footer', 'bp_friends_blocks_add_script_data', 1 );
233
  }
24
  return;
25
  }
26
 
27
+ $path = sprintf(
28
+ '/%1$s/%2$s/%3$s',
29
+ bp_rest_namespace(),
30
+ bp_rest_version(),
31
+ buddypress()->members->id
32
+ );
33
+
34
+ wp_localize_script(
35
+ 'bp-friends-script',
36
+ 'bpFriendsSettings',
37
+ array(
38
+ 'path' => ltrim( $path, '/' ),
39
+ 'root' => esc_url_raw( get_rest_url() ),
40
+ 'nonce' => wp_create_nonce( 'wp_rest' ),
41
+ )
42
+ );
43
+
44
  // Include the common JS template.
45
  echo bp_get_dynamic_template_part( 'assets/widgets/friends.php' );
46
 
236
  if ( ! has_action( 'wp_footer', 'bp_friends_blocks_add_script_data', 1 ) ) {
237
  wp_set_script_translations( 'bp-friends-script', 'buddypress' );
238
  wp_enqueue_script( 'bp-friends-script' );
 
 
 
 
 
 
 
 
 
239
 
240
  add_action( 'wp_footer', 'bp_friends_blocks_add_script_data', 1 );
241
  }
bp-groups/bp-groups-admin.php CHANGED
@@ -936,7 +936,8 @@ function bp_groups_admin_edit_metabox_members( $item ) {
936
  bp_groups_get_group_manage_members_script_data( $item->id )
937
  );
938
 
939
- bp_get_template_part( 'common/js-templates/group-members/index' );
 
940
 
941
  /**
942
  * Echo out the JavaScript variable.
936
  bp_groups_get_group_manage_members_script_data( $item->id )
937
  );
938
 
939
+ // Inject the Group Manage Members interface.
940
+ bp_groups_manage_group_members_interface( 'admin_footer' );
941
 
942
  /**
943
  * Echo out the JavaScript variable.
bp-groups/bp-groups-blocks.php CHANGED
@@ -325,6 +325,23 @@ function bp_groups_blocks_add_script_data() {
325
  return;
326
  }
327
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
  // Include the common JS template.
329
  echo bp_get_dynamic_template_part( 'assets/widgets/dynamic-groups.php' );
330
 
@@ -495,15 +512,6 @@ function bp_groups_render_dynamic_groups_block( $attributes = array() ) {
495
  if ( ! has_action( 'wp_footer', 'bp_groups_blocks_add_script_data', 1 ) ) {
496
  wp_set_script_translations( 'bp-dynamic-groups-script', 'buddypress' );
497
  wp_enqueue_script( 'bp-dynamic-groups-script' );
498
- wp_localize_script(
499
- 'bp-dynamic-groups-script',
500
- 'bpDynamicGroupsSettings',
501
- array(
502
- 'path' => ltrim( $path, '/' ),
503
- 'root' => esc_url_raw( get_rest_url() ),
504
- 'nonce' => wp_create_nonce( 'wp_rest' ),
505
- )
506
- );
507
 
508
  add_action( 'wp_footer', 'bp_groups_blocks_add_script_data', 1 );
509
  }
325
  return;
326
  }
327
 
328
+ $path = sprintf(
329
+ '/%1$s/%2$s/%3$s',
330
+ bp_rest_namespace(),
331
+ bp_rest_version(),
332
+ buddypress()->groups->id
333
+ );
334
+
335
+ wp_localize_script(
336
+ 'bp-dynamic-groups-script',
337
+ 'bpDynamicGroupsSettings',
338
+ array(
339
+ 'path' => ltrim( $path, '/' ),
340
+ 'root' => esc_url_raw( get_rest_url() ),
341
+ 'nonce' => wp_create_nonce( 'wp_rest' ),
342
+ )
343
+ );
344
+
345
  // Include the common JS template.
346
  echo bp_get_dynamic_template_part( 'assets/widgets/dynamic-groups.php' );
347
 
512
  if ( ! has_action( 'wp_footer', 'bp_groups_blocks_add_script_data', 1 ) ) {
513
  wp_set_script_translations( 'bp-dynamic-groups-script', 'buddypress' );
514
  wp_enqueue_script( 'bp-dynamic-groups-script' );
 
 
 
 
 
 
 
 
 
515
 
516
  add_action( 'wp_footer', 'bp_groups_blocks_add_script_data', 1 );
517
  }
bp-groups/bp-groups-functions.php CHANGED
@@ -3673,8 +3673,8 @@ function bp_init_group_extensions() {
3673
  foreach ( array_keys( $registered_group_extensions ) as $group_extension_class ) {
3674
  $extension = new $group_extension_class;
3675
 
3676
- add_action( 'bp_actions', array( &$extension, '_register' ), 8 );
3677
- add_action( 'admin_init', array( &$extension, '_register' ) );
3678
  }
3679
  }
3680
  add_action( 'bp_init', 'bp_init_group_extensions', 11 );
3673
  foreach ( array_keys( $registered_group_extensions ) as $group_extension_class ) {
3674
  $extension = new $group_extension_class;
3675
 
3676
+ add_action( 'bp_actions', array( $extension, '_register' ), 8 );
3677
+ add_action( 'admin_init', array( $extension, '_register' ) );
3678
  }
3679
  }
3680
  add_action( 'bp_init', 'bp_init_group_extensions', 11 );
bp-groups/bp-groups-template.php CHANGED
@@ -6580,3 +6580,56 @@ function bp_groups_get_profile_stats( $args = '' ) {
6580
  function bp_groups_has_manage_group_members_templates() {
6581
  return file_exists( bp_locate_template( 'common/js-templates/group-members/index.php' ) );
6582
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6580
  function bp_groups_has_manage_group_members_templates() {
6581
  return file_exists( bp_locate_template( 'common/js-templates/group-members/index.php' ) );
6582
  }
6583
+
6584
+ /**
6585
+ * Prints the JS Templates to manage the Group's members.
6586
+ *
6587
+ * @since 10.0.0
6588
+ */
6589
+ function bp_groups_print_manage_group_members_templates() {
6590
+ bp_get_template_part( 'common/js-templates/group-members/index' );
6591
+ }
6592
+
6593
+ /**
6594
+ * Prints the HTML placeholders to manage the Group's members.
6595
+ *
6596
+ * @since 10.0.0
6597
+ */
6598
+ function bp_groups_print_manage_group_members_placeholders() {
6599
+ ?>
6600
+ <div id="group-manage-members-ui" class="standard-form">
6601
+ <ul class="subnav-filters">
6602
+ <li id="group-roles-filter" class="last filter"><?php // Placeholder for the Group Role Tabs ?></li>
6603
+ <li id="group-members-pagination" class="left-menu"><?php // Placeholder for paginate links ?></li>
6604
+ <li id="group-members-search-form" class="bp-search"><?php // Placeholder for search form ?></li>
6605
+ </ul>
6606
+ <table id="group-members-list-table" class="<?php echo is_admin() ? 'widefat bp-group-members' : 'bp-list'; ?>"><?php // Placeholder to list members ?></table>
6607
+ </div>
6608
+ <?php
6609
+ }
6610
+
6611
+ /**
6612
+ * Outputs the Manage Group Members Backbone UI.
6613
+ *
6614
+ * @since 10.0.0
6615
+ *
6616
+ * @param string $hook The hook to use to inject the JS Templates.
6617
+ */
6618
+ function bp_groups_manage_group_members_interface( $hook = 'wp_footer' ) {
6619
+ /**
6620
+ * Get the templates to manage Group Members using the BP REST API.
6621
+ *
6622
+ * @since 5.0.0
6623
+ * @since 10.0.0 Hook to the `wp_footer` action to print the JS templates.
6624
+ */
6625
+ add_action( $hook, 'bp_groups_print_manage_group_members_templates' );
6626
+ bp_groups_print_manage_group_members_placeholders();
6627
+
6628
+ /**
6629
+ * Private hook to preserve backward compatibility with plugins needing the above placeholders to be located
6630
+ * into: `bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php`.
6631
+ *
6632
+ * @since 10.0.0
6633
+ */
6634
+ do_action( '_bp_groups_print_manage_group_members_placeholders' );
6635
+ }
bp-loader.php CHANGED
@@ -15,7 +15,7 @@
15
  * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
- * Version: 10.0.0-beta1
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
15
  * Description: BuddyPress adds community features to WordPress. Member Profiles, Activity Streams, Direct Messaging, Notifications, and more!
16
  * Author: The BuddyPress Community
17
  * Author URI: https://buddypress.org/
18
+ * Version: 10.0.0-beta2
19
  * Text Domain: buddypress
20
  * Domain Path: /bp-languages/
21
  * License: GPLv2 or later (license.txt)
bp-members/bp-members-blocks.php CHANGED
@@ -346,6 +346,23 @@ function bp_members_blocks_add_script_data() {
346
  return;
347
  }
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  // Include the common JS template.
350
  echo bp_get_dynamic_template_part( 'assets/widgets/dynamic-members.php' );
351
 
@@ -512,15 +529,6 @@ function bp_members_render_dynamic_members_block( $attributes = array() ) {
512
  if ( ! has_action( 'wp_footer', 'bp_members_blocks_add_script_data', 1 ) ) {
513
  wp_set_script_translations( 'bp-dynamic-members-script', 'buddypress' );
514
  wp_enqueue_script( 'bp-dynamic-members-script' );
515
- wp_localize_script(
516
- 'bp-dynamic-members-script',
517
- 'bpDynamicMembersSettings',
518
- array(
519
- 'path' => ltrim( $path, '/' ),
520
- 'root' => esc_url_raw( get_rest_url() ),
521
- 'nonce' => wp_create_nonce( 'wp_rest' ),
522
- )
523
- );
524
 
525
  add_action( 'wp_footer', 'bp_members_blocks_add_script_data', 1 );
526
  }
346
  return;
347
  }
348
 
349
+ $path = sprintf(
350
+ '/%1$s/%2$s/%3$s',
351
+ bp_rest_namespace(),
352
+ bp_rest_version(),
353
+ buddypress()->members->id
354
+ );
355
+
356
+ wp_localize_script(
357
+ 'bp-dynamic-members-script',
358
+ 'bpDynamicMembersSettings',
359
+ array(
360
+ 'path' => ltrim( $path, '/' ),
361
+ 'root' => esc_url_raw( get_rest_url() ),
362
+ 'nonce' => wp_create_nonce( 'wp_rest' ),
363
+ )
364
+ );
365
+
366
  // Include the common JS template.
367
  echo bp_get_dynamic_template_part( 'assets/widgets/dynamic-members.php' );
368
 
529
  if ( ! has_action( 'wp_footer', 'bp_members_blocks_add_script_data', 1 ) ) {
530
  wp_set_script_translations( 'bp-dynamic-members-script', 'buddypress' );
531
  wp_enqueue_script( 'bp-dynamic-members-script' );
 
 
 
 
 
 
 
 
 
532
 
533
  add_action( 'wp_footer', 'bp_members_blocks_add_script_data', 1 );
534
  }
bp-members/bp-members-functions.php CHANGED
@@ -3763,3 +3763,33 @@ function bp_members_site_requests_enabled() {
3763
 
3764
  return is_multisite() && in_array( bp_core_get_root_option( 'registration' ), $matches, true );
3765
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3763
 
3764
  return is_multisite() && in_array( bp_core_get_root_option( 'registration' ), $matches, true );
3765
  }
3766
+
3767
+ /**
3768
+ * Returns the strength score a password needs to have to be used by a member.
3769
+ *
3770
+ * Score => Allowed Strength.
3771
+ * 0 => any passwords.
3772
+ * 1 => at least short passwords.
3773
+ * 2 => at least weak passwords.
3774
+ * 3 => at least good passwords.
3775
+ * 4 => at least strong passwords.
3776
+ *
3777
+ * @since 10.0.0
3778
+ *
3779
+ * @return int the strength score a password needs to have to be used by a member.
3780
+ */
3781
+ function bp_members_user_pass_required_strength() {
3782
+ $default_strength = 0;
3783
+ if ( defined( 'BP_MEMBERS_REQUIRED_PASSWORD_STRENGTH' ) && BP_MEMBERS_REQUIRED_PASSWORD_STRENGTH ) {
3784
+ $default_strength = (int) BP_MEMBERS_REQUIRED_PASSWORD_STRENGTH;
3785
+ }
3786
+
3787
+ /**
3788
+ * Filter here to raise the strength score user passwords need to reach to be allowed.
3789
+ *
3790
+ * @since 10.0.0
3791
+ *
3792
+ * @param int $default_strength The strength score user passwords need to reach to be allowed.
3793
+ */
3794
+ return (int) apply_filters( 'bp_members_user_pass_required_strength', $default_strength );
3795
+ }
bp-members/screens/register.php CHANGED
@@ -15,8 +15,9 @@
15
  function bp_core_screen_signup() {
16
  $bp = buddypress();
17
 
18
- if ( ! bp_is_current_component( 'register' ) || bp_current_action() )
19
  return;
 
20
 
21
  // Not a directory.
22
  bp_update_is_directory( false, 'register' );
@@ -87,19 +88,34 @@ function bp_core_screen_signup() {
87
  $bp->signup->errors['signup_email'] = $account_details['errors']->errors['user_email'][0];
88
  }
89
 
90
- $signup_pass = '';
91
- if ( isset( $_POST['signup_password'] ) ) {
92
- $signup_pass = wp_unslash( $_POST['signup_password'] );
 
 
93
  }
94
 
95
- $signup_pass_confirm = '';
96
- if ( isset( $_POST['signup_password_confirm'] ) ) {
97
- $signup_pass_confirm = wp_unslash( $_POST['signup_password_confirm'] );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
99
 
100
- // Check the account password for problems.
101
- $account_password = bp_members_validate_user_password( $signup_pass, $signup_pass_confirm );
102
- $password_error = $account_password->get_error_message();
103
 
104
  if ( $password_error ) {
105
  $bp->signup->errors['signup_password'] = $password_error;
15
  function bp_core_screen_signup() {
16
  $bp = buddypress();
17
 
18
+ if ( ! bp_is_current_component( 'register' ) || bp_current_action() ) {
19
  return;
20
+ }
21
 
22
  // Not a directory.
23
  bp_update_is_directory( false, 'register' );
88
  $bp->signup->errors['signup_email'] = $account_details['errors']->errors['user_email'][0];
89
  }
90
 
91
+ // Password strength check.
92
+ $required_password_strength = bp_members_user_pass_required_strength();
93
+ $current_password_strength = null;
94
+ if ( isset( $_POST['_password_strength_score'] ) ) {
95
+ $current_password_strength = (int) $_POST['_password_strength_score'];
96
  }
97
 
98
+ if ( $required_password_strength && ! is_null( $current_password_strength ) && $required_password_strength > $current_password_strength ) {
99
+ $account_password = new WP_Error(
100
+ 'not_strong_enough_password',
101
+ __( 'Your password is not strong enougth to be allowed on this site. Please use a stronger password.', 'buddypress' )
102
+ );
103
+ } else {
104
+ $signup_pass = '';
105
+ if ( isset( $_POST['signup_password'] ) ) {
106
+ $signup_pass = wp_unslash( $_POST['signup_password'] );
107
+ }
108
+
109
+ $signup_pass_confirm = '';
110
+ if ( isset( $_POST['signup_password_confirm'] ) ) {
111
+ $signup_pass_confirm = wp_unslash( $_POST['signup_password_confirm'] );
112
+ }
113
+
114
+ // Check the account password for problems.
115
+ $account_password = bp_members_validate_user_password( $signup_pass, $signup_pass_confirm );
116
  }
117
 
118
+ $password_error = $account_password->get_error_message();
 
 
119
 
120
  if ( $password_error ) {
121
  $bp->signup->errors['signup_password'] = $password_error;
bp-messages/actions/exit.php ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Messages: Exit action handler.
4
+ *
5
+ * @package BuddyPress
6
+ * @subpackage MessageActions
7
+ * @since 10.0.0
8
+ */
9
+
10
+ /**
11
+ * Process a request to exit a messages thread.
12
+ *
13
+ * @since 10.0.0
14
+ */
15
+ function bp_messages_action_exit_thread() {
16
+
17
+ if ( ! bp_is_messages_component() || bp_is_current_action( 'notices' ) || ! bp_is_action_variable( 'exit', 0 ) ) {
18
+ return false;
19
+ }
20
+
21
+ $thread_id = bp_action_variable( 1 );
22
+
23
+ if ( ! $thread_id || ! is_numeric( $thread_id ) || ! messages_check_thread_access( $thread_id ) ) {
24
+ bp_core_redirect( trailingslashit( bp_displayed_user_domain() . bp_get_messages_slug() . '/' . bp_current_action() ) );
25
+ } else {
26
+ if ( ! check_admin_referer( 'bp_messages_exit_thread' ) ) {
27
+ return false;
28
+ }
29
+
30
+ // Exit message.
31
+ if ( ! bp_messages_exit_thread( $thread_id ) ) {
32
+ bp_core_add_message( __('There was an error exiting the conversation.', 'buddypress'), 'error' );
33
+ } else {
34
+ bp_core_add_message( __('You have left the message thread.', 'buddypress') );
35
+ }
36
+
37
+ bp_core_redirect( trailingslashit( bp_displayed_user_domain() . bp_get_messages_slug() . '/' . bp_current_action() ) );
38
+ }
39
+ }
40
+ add_action( 'bp_actions', 'bp_messages_action_exit_thread' );
bp-messages/bp-messages-cache.php CHANGED
@@ -87,6 +87,7 @@ function bp_messages_clear_cache_on_message_delete( $thread_ids, $user_id ) {
87
  wp_cache_delete( $user_id, 'bp_messages_unread_count' );
88
  }
89
  add_action( 'messages_delete_thread', 'bp_messages_clear_cache_on_message_delete', 10, 2 );
 
90
 
91
  /**
92
  * Invalidate cache for notices.
87
  wp_cache_delete( $user_id, 'bp_messages_unread_count' );
88
  }
89
  add_action( 'messages_delete_thread', 'bp_messages_clear_cache_on_message_delete', 10, 2 );
90
+ add_action( 'bp_messages_exit_thread', 'bp_messages_clear_cache_on_message_delete', 10, 2 );
91
 
92
  /**
93
  * Invalidate cache for notices.
bp-messages/bp-messages-functions.php CHANGED
@@ -799,3 +799,68 @@ function bp_messages_dismiss_sitewide_notice( $user_id = 0, $notice_id = 0 ) {
799
 
800
  return $retval;
801
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
799
 
800
  return $retval;
801
  }
802
+
803
+ /**
804
+ * Exit one or more message thread(s) for a given user.
805
+ *
806
+ * @since 10.0.0
807
+ *
808
+ * @param int|array $thread_ids Thread ID or array of thread IDs.
809
+ * @param int $user_id ID of the user to delete the threads for. Defaults
810
+ * to the current logged-in user.
811
+ * @return bool True on success, false on failure.
812
+ */
813
+ function bp_messages_exit_thread( $thread_ids, $user_id = 0 ) {
814
+
815
+ if ( empty( $user_id ) ) {
816
+ $user_id = bp_loggedin_user_id();
817
+
818
+ if ( bp_displayed_user_id() ) {
819
+ $user_id = bp_displayed_user_id();
820
+ }
821
+ }
822
+
823
+ /**
824
+ * Fires before a user exits specified thread IDs.
825
+ *
826
+ * @since 10.0.0
827
+ *
828
+ * @param int|array $thread_ids Thread ID or array of thread IDs to be deleted.
829
+ * @param int $user_id ID of the user the threads are being deleted for.
830
+ */
831
+ do_action( 'bp_messages_before_exit_thread', $thread_ids, $user_id );
832
+
833
+ if ( is_array( $thread_ids ) ) {
834
+ $error = 0;
835
+ for ( $i = 0, $count = count( $thread_ids ); $i < $count; ++$i ) {
836
+ if ( ! BP_Messages_Thread::exit_thread( $thread_ids[ $i ], $user_id ) ) {
837
+ $error = 1;
838
+ }
839
+ }
840
+
841
+ if ( ! empty( $error ) ) {
842
+ return false;
843
+ }
844
+
845
+ /**
846
+ * Fires after a user exited the specified thread IDs.
847
+ *
848
+ * @since 10.0.0
849
+ *
850
+ * @param int|array Thread ID or array of thread IDs that were deleted.
851
+ * @param int ID of the user that the threads were deleted for.
852
+ */
853
+ do_action( 'bp_messages_exit_thread', $thread_ids, $user_id );
854
+
855
+ return true;
856
+ } else {
857
+ if ( ! BP_Messages_Thread::exit_thread( $thread_ids, $user_id ) ) {
858
+ return false;
859
+ }
860
+
861
+ /** This action is documented in bp-messages/bp-messages-functions.php */
862
+ do_action( 'bp_messages_exit_thread', $thread_ids, $user_id );
863
+
864
+ return true;
865
+ }
866
+ }
bp-messages/bp-messages-template.php CHANGED
@@ -2188,6 +2188,34 @@ function bp_the_thread_delete_link() {
2188
  return apply_filters( 'bp_get_message_thread_delete_link', wp_nonce_url( bp_displayed_user_domain() . bp_get_messages_slug() . '/inbox/delete/' . bp_get_the_thread_id(), 'messages_delete_thread' ) );
2189
  }
2190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2191
  /**
2192
  * Output the 'Sent x hours ago' string for the current message.
2193
  *
2188
  return apply_filters( 'bp_get_message_thread_delete_link', wp_nonce_url( bp_displayed_user_domain() . bp_get_messages_slug() . '/inbox/delete/' . bp_get_the_thread_id(), 'messages_delete_thread' ) );
2189
  }
2190
 
2191
+ /**
2192
+ * Output the URL to exit the current thread.
2193
+ *
2194
+ * @since 10.0.0
2195
+ */
2196
+ function bp_the_thread_exit_link() {
2197
+ echo esc_url( bp_get_the_thread_exit_link() );
2198
+ }
2199
+ /**
2200
+ * Get the URL to exit the current thread.
2201
+ *
2202
+ * @since 10.0.0
2203
+ *
2204
+ * @return string URL
2205
+ */
2206
+ function bp_get_the_thread_exit_link() {
2207
+
2208
+ /**
2209
+ * Filters the URL to exit the current thread.
2210
+ *
2211
+ * @since 1.0.0
2212
+ *
2213
+ * @param string $value URL to exit the current thread.
2214
+ * @param string $value Text indicating action being executed.
2215
+ */
2216
+ return apply_filters( 'bp_get_the_thread_exit_link', wp_nonce_url( bp_displayed_user_domain() . bp_get_messages_slug() . '/inbox/exit/' . bp_get_the_thread_id(), 'bp_messages_exit_thread' ) );
2217
+ }
2218
+
2219
  /**
2220
  * Output the 'Sent x hours ago' string for the current message.
2221
  *
bp-messages/classes/class-bp-messages-component.php CHANGED
@@ -102,7 +102,7 @@ class BP_Messages_Component extends BP_Component {
102
 
103
  // Authenticated action variables.
104
  if ( is_user_logged_in() && bp_action_variable( 0 ) &&
105
- in_array( bp_action_variable( 0 ), array( 'delete', 'read', 'unread', 'bulk-manage', 'bulk-delete' ), true )
106
  ) {
107
  require $this->path . 'bp-messages/actions/' . bp_action_variable( 0 ) . '.php';
108
  }
102
 
103
  // Authenticated action variables.
104
  if ( is_user_logged_in() && bp_action_variable( 0 ) &&
105
+ in_array( bp_action_variable( 0 ), array( 'delete', 'read', 'unread', 'bulk-manage', 'bulk-delete', 'exit' ), true )
106
  ) {
107
  require $this->path . 'bp-messages/actions/' . bp_action_variable( 0 ) . '.php';
108
  }
bp-messages/classes/class-bp-messages-thread.php CHANGED
@@ -534,6 +534,70 @@ class BP_Messages_Thread {
534
  return true;
535
  }
536
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
537
  /**
538
  * Get current message threads for a user.
539
  *
534
  return true;
535
  }
536
 
537
+ /**
538
+ * Exit a user from a thread.
539
+ *
540
+ * @since 10.0.0
541
+ *
542
+ * @global wpdb $wpdb WordPress database object.
543
+ *
544
+ * @param int $thread_id The message thread ID.
545
+ * @param int $user_id The ID of the user in the thread.
546
+ * Defaults to the current logged-in user.
547
+ *
548
+ * @return bool
549
+ */
550
+ public static function exit_thread( $thread_id = 0, $user_id = 0 ) {
551
+ global $wpdb;
552
+
553
+ $thread_id = (int) $thread_id;
554
+ $user_id = (int) $user_id;
555
+
556
+ if ( empty( $user_id ) ) {
557
+ $user_id = bp_loggedin_user_id();
558
+ }
559
+
560
+ // Check the user is a recipient of the thread and recipients count > 2.
561
+ $recipients = self::get_recipients_for_thread( $thread_id );
562
+ $recipient_ids = wp_list_pluck( $recipients, 'user_id' );
563
+
564
+ if ( 2 >= count( $recipient_ids ) || ! in_array( $user_id, $recipient_ids, true ) ) {
565
+ return false;
566
+ }
567
+
568
+ /**
569
+ * Fires before a user exits a thread.
570
+ *
571
+ * @since 10.0.0
572
+ *
573
+ * @param int $thread_id ID of the thread being deleted.
574
+ * @param int $user_id ID of the user that the thread is being deleted for.
575
+ */
576
+ do_action( 'bp_messages_thread_before_exit', $thread_id, $user_id );
577
+
578
+ $bp = buddypress();
579
+
580
+ // Delete the user from messages recipients
581
+ $exited = $wpdb->query( $wpdb->prepare( "DELETE FROM {$bp->messages->table_name_recipients} WHERE thread_id = %d AND user_id = %d", $thread_id, $user_id ) );
582
+
583
+ // Bail if the user wasn't removed from the recipients list.
584
+ if ( empty( $exited ) ) {
585
+ return false;
586
+ }
587
+
588
+ /**
589
+ * Fires after a user exits a thread.
590
+ *
591
+ * @since 10.0.0
592
+ *
593
+ * @param int $thread_id ID of the thread being deleted.
594
+ * @param int $user_id ID of the user the threads were deleted for.
595
+ */
596
+ do_action( 'bp_messages_thread_after_exit', $thread_id, $user_id );
597
+
598
+ return true;
599
+ }
600
+
601
  /**
602
  * Get current message threads for a user.
603
  *
bp-settings/actions/general.php CHANGED
@@ -73,7 +73,6 @@ function bp_settings_action_general() {
73
 
74
  // User is changing email address.
75
  if ( $old_user_email !== $user_email ) {
76
-
77
  // Run some tests on the email address.
78
  $email_checks = bp_core_validate_email_address( $user_email );
79
 
@@ -134,18 +133,33 @@ function bp_settings_action_general() {
134
  if ( ! empty( $_POST['pass1'] ) && ! empty( $_POST['pass2'] ) ) {
135
  $pass = wp_unslash( $_POST['pass1'] );
136
  $pass_confirm = wp_unslash( $_POST['pass2'] );
137
- $pass_error = bp_members_validate_user_password( $pass, $pass_confirm, $update_user );
138
-
139
- if ( ! $pass_error->get_error_message() ) {
140
- // Password change attempt is successful.
141
- if ( ( ! empty( $_POST['pwd'] ) && wp_unslash( $_POST['pwd'] ) !== $pass ) || is_super_admin() ) {
142
- $update_user['user_pass'] = $_POST['pass1'];
143
- $pass_error = false;
144
- $pass_changed = true;
145
-
146
- // The new password is the same as the current password.
147
- } else {
148
- $pass_error->add( 'same_user_password', __( 'The new password must be different from the current password.', 'buddypress' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
149
  }
150
  }
151
 
73
 
74
  // User is changing email address.
75
  if ( $old_user_email !== $user_email ) {
 
76
  // Run some tests on the email address.
77
  $email_checks = bp_core_validate_email_address( $user_email );
78
 
133
  if ( ! empty( $_POST['pass1'] ) && ! empty( $_POST['pass2'] ) ) {
134
  $pass = wp_unslash( $_POST['pass1'] );
135
  $pass_confirm = wp_unslash( $_POST['pass2'] );
136
+
137
+ // Password strength check.
138
+ $required_password_strength = bp_members_user_pass_required_strength();
139
+ $current_password_strength = null;
140
+ if ( isset( $_POST['_password_strength_score'] ) ) {
141
+ $current_password_strength = (int) $_POST['_password_strength_score'];
142
+ }
143
+
144
+ if ( $required_password_strength && ! is_null( $current_password_strength ) && $required_password_strength > $current_password_strength ) {
145
+ $pass_error = new WP_Error(
146
+ 'not_strong_enough_password',
147
+ __( 'Your password is not strong enougth to be allowed on this site. Please use a stronger password.', 'buddypress' )
148
+ );
149
+ } else {
150
+ $pass_error = bp_members_validate_user_password( $pass, $pass_confirm, $update_user );
151
+
152
+ if ( ! $pass_error->get_error_message() ) {
153
+ // Password change attempt is successful.
154
+ if ( ( ! empty( $_POST['pwd'] ) && wp_unslash( $_POST['pwd'] ) !== $pass ) || is_super_admin() ) {
155
+ $update_user['user_pass'] = $_POST['pass1'];
156
+ $pass_error = false;
157
+ $pass_changed = true;
158
+
159
+ // The new password is the same as the current password.
160
+ } else {
161
+ $pass_error->add( 'same_user_password', __( 'The new password must be different from the current password.', 'buddypress' ) );
162
+ }
163
  }
164
  }
165
 
bp-templates/bp-legacy/buddypress-functions.php CHANGED
@@ -6,7 +6,7 @@
6
  *
7
  * @package BuddyPress
8
  * @subpackage BP_Theme_Compat
9
- * @version 3.1.0
10
  */
11
 
12
  // Exit if accessed directly.
@@ -337,7 +337,15 @@ class BP_Legacy extends BP_Theme_Compat {
337
  ) );
338
 
339
  // Enqueue script.
340
- wp_enqueue_script( $asset['handle'] . '-password-verify', $asset['location'], $dependencies, $this->version);
 
 
 
 
 
 
 
 
341
  }
342
 
343
  // Star private messages.
6
  *
7
  * @package BuddyPress
8
  * @subpackage BP_Theme_Compat
9
+ * @version 10.0.0
10
  */
11
 
12
  // Exit if accessed directly.
337
  ) );
338
 
339
  // Enqueue script.
340
+ wp_enqueue_script( $asset['handle'] . '-password-verify', $asset['location'], $dependencies, $this->version );
341
+ wp_localize_script(
342
+ $asset['handle'] . '-password-verify',
343
+ 'bpPasswordVerify',
344
+ array(
345
+ 'tooWeakPasswordWarning' => __( 'Your password is too weak, please use a stronger password.', 'buddypress' ),
346
+ 'requiredPassStrength' => bp_members_user_pass_required_strength(),
347
+ )
348
+ );
349
  }
350
 
351
  // Star private messages.
bp-templates/bp-legacy/buddypress/members/single/messages/single.php CHANGED
@@ -4,7 +4,7 @@
4
  *
5
  * @package BuddyPress
6
  * @subpackage bp-legacy
7
- * @version 3.0.0
8
  */
9
 
10
  ?>
@@ -48,7 +48,13 @@
48
 
49
  </span>
50
 
51
- <a class="button confirm" href="<?php bp_the_thread_delete_link(); ?>"><?php _e( 'Delete', 'buddypress' ); ?></a>
 
 
 
 
 
 
52
 
53
  <?php
54
 
4
  *
5
  * @package BuddyPress
6
  * @subpackage bp-legacy
7
+ * @version 10.0.0
8
  */
9
 
10
  ?>
48
 
49
  </span>
50
 
51
+ <a class="button confirm" href="<?php bp_the_thread_delete_link(); ?>"><?php esc_html_e( 'Delete', 'buddypress' ); ?></a>
52
+
53
+ <?php if ( bp_get_thread_recipients_count() > 2 ) : ?>
54
+
55
+ <a class="button confirm" href="<?php bp_the_thread_exit_link(); ?>"><?php esc_html_e( 'Exit Conversation', 'buddypress' ); ?></a>
56
+
57
+ <?php endif; ?>
58
 
59
  <?php
60
 
bp-templates/bp-legacy/js/buddypress.js CHANGED
@@ -1,6 +1,6 @@
1
  /* jshint undef: false, unused:false */
2
  /* @version 1.7.0 */
3
- /* @version 8.0.0 */
4
  // AJAX Functions
5
  var jq = jQuery;
6
 
@@ -2022,8 +2022,8 @@ function bp_legacy_theme_hide_comments() {
2022
  comment_lis = jq(this).children('ul').children('li');
2023
  comment_count = ' ';
2024
 
2025
- if ( jq('#' + parent_li.attr('id') + ' li').length ) {
2026
- comment_count = jq('#' + parent_li.attr('id') + ' li').length;
2027
  }
2028
 
2029
  comment_lis.each( function(i) {
1
  /* jshint undef: false, unused:false */
2
  /* @version 1.7.0 */
3
+ /* @version 10.0.0 */
4
  // AJAX Functions
5
  var jq = jQuery;
6
 
2022
  comment_lis = jq(this).children('ul').children('li');
2023
  comment_count = ' ';
2024
 
2025
+ if ( jq('#' + parent_li.attr('id') + ' li[id*="acomment-"]').length ) {
2026
+ comment_count = jq('#' + parent_li.attr('id') + ' li[id*="acomment-"]').length;
2027
  }
2028
 
2029
  comment_lis.each( function(i) {
bp-templates/bp-legacy/js/buddypress.min.js CHANGED
@@ -1 +1 @@
1
- var jq=jQuery,bp_ajax_request=null,newest_activities="",activity_last_recorded=0,directoryPreferences={};function bp_get_directory_preference(e,t){var i={filter:"",scope:"",extras:""};if(!directoryPreferences.hasOwnProperty(e)){var a,s={};for(a in i)i.hasOwnProperty(a)&&(s[a]=i[a]);directoryPreferences[e]=s}return BP_DTheme.store_filter_settings&&(directoryPreferences[e][t]=jq.cookie("bp-"+e+"-"+t)),directoryPreferences[e][t]}function bp_set_directory_preference(e,t,i){var a={filter:"",scope:"",extras:""};if(!directoryPreferences.hasOwnProperty(e)){var s,n={};for(s in a)a.hasOwnProperty(s)&&(n[s]=a[s]);directoryPreferences[e]=n}BP_DTheme.store_filter_settings&&jq.cookie("bp-"+e+"-"+t,i,{path:"/",secure:"https:"===window.location.protocol}),directoryPreferences[e][t]=i}function bp_init_activity(){var e=bp_get_directory_preference("activity","scope"),t=bp_get_directory_preference("activity","filter");void 0!==t&&jq("#activity-filter-select").length&&jq('#activity-filter-select select option[value="'+t+'"]').prop("selected",!0),void 0!==e&&jq(".activity-type-tabs").length&&(jq(".activity-type-tabs li").each(function(){jq(this).removeClass("selected")}),jq("#activity-"+e+", .item-list-tabs li.current").addClass("selected"))}function bp_init_objects(a){jq(a).each(function(e){var t=bp_get_directory_preference(a[e],"scope"),i=bp_get_directory_preference(a[e],"filter");void 0!==i&&jq("#"+a[e]+"-order-select select").length&&jq("#"+a[e]+'-order-select select option[value="'+i+'"]').prop("selected",!0),void 0!==t&&jq("div."+a[e]).length&&(jq(".item-list-tabs li").each(function(){jq(this).removeClass("selected")}),jq("#"+a[e]+"-"+t+", #object-nav li.current").addClass("selected"))})}function bp_filter_request(e,t,i,a,s,n,r,o,c){if("activity"===e)return!1;bp_set_directory_preference(e,"scope",i=null===i?"all":i),bp_set_directory_preference(e,"filter",t),bp_set_directory_preference(e,"extras",r),jq(".item-list-tabs li").each(function(){jq(this).removeClass("selected")}),jq("#"+e+"-"+i+", #object-nav li.current").addClass("selected"),jq(".item-list-tabs li.selected").addClass("loading"),jq('.item-list-tabs select option[value="'+t+'"]').prop("selected",!0),"friends"!==e&&"group_members"!==e||(e="members"),bp_ajax_request&&bp_ajax_request.abort();var l={};l["bp-"+e+"-filter"]=bp_get_directory_preference(e,"filter"),l["bp-"+e+"-scope"]=bp_get_directory_preference(e,"scope");l=encodeURIComponent(jq.param(l));bp_ajax_request=jq.post(ajaxurl,{action:e+"_filter",cookie:l,object:e,filter:t,search_terms:s,scope:i,page:n,extras:r,template:c},function(e){var t;"pag-bottom"===o&&jq("#subnav").length?(t=jq("#subnav").parent(),jq("html,body").animate({scrollTop:t.offset().top},"slow",function(){jq(a).fadeOut(100,function(){jq(this).html(e),jq(this).fadeIn(100)})})):jq(a).fadeOut(100,function(){jq(this).html(e),jq(this).fadeIn(100)}),jq(".item-list-tabs li.selected").removeClass("loading")})}function bp_activity_request(e,t){bp_set_directory_preference("activity","scope",e),bp_set_directory_preference("activity","filter",t),jq(".item-list-tabs li").each(function(){jq(this).removeClass("selected loading")}),jq("#activity-"+e+", .item-list-tabs li.current").addClass("selected"),jq("#object-nav.item-list-tabs li.selected, div.activity-type-tabs li.selected").addClass("loading"),jq('#activity-filter-select select option[value="'+t+'"]').prop("selected",!0),jq(".widget_bp_activity_widget h2 span.ajax-loader").show(),bp_ajax_request&&bp_ajax_request.abort();var i={"bp-activity-filter":bp_get_directory_preference("activity","filter"),"bp-activity-scope":bp_get_directory_preference("activity","scope")},i=encodeURIComponent(jq.param(i));bp_ajax_request=jq.post(ajaxurl,{action:"activity_widget_filter",cookie:i,_wpnonce_activity_filter:jq("#_wpnonce_activity_filter").val(),scope:e,filter:t},function(e){jq(".widget_bp_activity_widget h2 span.ajax-loader").hide(),jq("div.activity").fadeOut(100,function(){jq(this).html(e.contents),jq(this).fadeIn(100),bp_legacy_theme_hide_comments()}),void 0!==e.feed_url&&jq(".directory #subnav li.feed a, .home-page #subnav li.feed a").attr("href",e.feed_url),jq(".item-list-tabs li.selected").removeClass("loading")},"json")}function bp_legacy_theme_hide_comments(){var t,i,a,e=jq("div.activity-comments");if(!e.length)return!1;e.each(function(){jq(this).children("ul").children("li").length<5||(comments_div=jq(this),t=comments_div.parents("#activity-stream > li"),i=jq(this).children("ul").children("li"),a=" ",jq("#"+t.attr("id")+" li").length&&(a=jq("#"+t.attr("id")+" li").length),i.each(function(e){e<i.length-5&&(jq(this).hide(),e||jq(this).before('<li class="show-all"><a href="#'+t.attr("id")+'/show-all/">'+BP_DTheme.show_x_comments.replace("%d",a)+"</a></li>"))}))})}function checkAll(){for(var e=document.getElementsByTagName("input"),t=0;t<e.length;t++)"checkbox"===e[t].type&&(""===$("check_all").checked?e[t].checked="":e[t].checked="checked")}function clear(e){if(e=document.getElementById(e)){var t=e.getElementsByTagName("INPUT"),i=e.getElementsByTagName("OPTION"),a=0;if(t)for(a=0;a<t.length;a++)t[a].checked="";if(i)for(a=0;a<i.length;a++)i[a].selected=!1}}function bp_get_cookies(){for(var e,t,i,a=document.cookie.split(";"),s={},n=0;n<a.length;n++)i=(e=a[n]).indexOf("="),t=jq.trim(unescape(e.slice(0,i))),i=unescape(e.slice(i+1)),0===t.indexOf("bp-")&&(s[t]=i);return encodeURIComponent(jq.param(s))}function bp_get_query_var(e,t){var i={};return(t=(void 0===t?location.search.substr(1):t.split("?")[1]).split("&")).forEach(function(e){i[e.split("=")[0]]=e.split("=")[1]&&decodeURIComponent(e.split("=")[1])}),!(!i.hasOwnProperty(e)||null==i[e])&&i[e]}jq(function(){var l=1;bp_init_activity();var e,i=jq("#whats-new");bp_init_objects(["members","groups","blogs","group_members"]),i.length&&bp_get_querystring("r")?(e=i.val(),jq("#whats-new-options").slideDown(),i.animate({height:"3.8em"}),jq.scrollTo(i,500,{offset:-125,easing:"swing"}),i.val("").trigger("focus").val(e)):jq("#whats-new-options").hide(),i.on("focus",function(){jq("#whats-new-options").slideDown(),jq(this).animate({height:"3.8em"}),jq("#aw-whats-new-submit").prop("disabled",!1),jq(this).parent().addClass("active"),jq("#whats-new-content").addClass("active");var e=jq("form#whats-new-form"),t=jq("#activity-all");e.hasClass("submitted")&&e.removeClass("submitted"),t.length&&(t.hasClass("selected")?"-1"!==jq("#activity-filter-select select").val()&&(jq("#activity-filter-select select").val("-1"),jq("#activity-filter-select select").trigger("change")):(jq("#activity-filter-select select").val("-1"),t.children("a").trigger("click")))}),jq("#whats-new-form").on("focusout",function(e){var t=jq(this);setTimeout(function(){t.find(":hover").length||""===i.val()&&(i.animate({height:"2.2em"}),jq("#whats-new-options").slideUp(),jq("#aw-whats-new-submit").prop("disabled",!0),jq("#whats-new-content").removeClass("active"),i.parent().removeClass("active"))},0)}),jq("#aw-whats-new-submit").on("click",function(){var a=0,e=jq(this),s=e.closest("form#whats-new-form"),i={};return jq.each(s.serializeArray(),function(e,t){"_"!==t.name.substr(0,1)&&"whats-new"!==t.name.substr(0,9)&&(i[t.name]?Array.isArray(i[t.name])?i[t.name].push(t.value):i[t.name]=new Array(i[t.name],t.value):i[t.name]=t.value)}),s.find("*").each(function(e,t){"textarea"!==t.nodeName.toLowerCase()&&"input"!==t.nodeName.toLowerCase()||jq(t).prop("disabled",!0)}),jq("div.error").remove(),e.addClass("loading"),e.prop("disabled",!0),s.addClass("submitted"),object="",item_id=jq("#whats-new-post-in").val(),content=jq("#whats-new").val(),firstrow=jq("#buddypress ul.activity-list li").first(),activity_row=firstrow,timestamp=null,firstrow.length&&(activity_row.hasClass("load-newest")&&(activity_row=firstrow.next()),timestamp=activity_row.prop("class").match(/date-recorded-([0-9]+)/)),timestamp&&(a=timestamp[1]),0<item_id&&(object=jq("#whats-new-post-object").val()),e=jq.extend({action:"post_update",cookie:bp_get_cookies(),_wpnonce_post_update:jq("#_wpnonce_post_update").val(),content:content,object:object,item_id:item_id,since:a,_bp_as_nonce:jq("#_bp_as_nonce").val()||""},i),jq.post(ajaxurl,e,function(e){var t,i;s.find("*").each(function(e,t){"textarea"!==t.nodeName.toLowerCase()&&"input"!==t.nodeName.toLowerCase()||jq(t).prop("disabled",!1)}),e[0]+e[1]==="-1"?(s.prepend(e.substr(2,e.length)),jq("#"+s.attr("id")+" div.error").hide().fadeIn(200)):(0===jq("ul.activity-list").length&&(jq("div.error").slideUp(100).remove(),jq("#message").slideUp(100).remove(),jq("div.activity").append('<ul id="activity-stream" class="activity-list item-list">')),firstrow.hasClass("load-newest")&&firstrow.remove(),jq("#activity-stream").prepend(e),a||jq("#activity-stream li:first").addClass("new-update just-posted"),0!==jq("#latest-update").length&&(t=jq("#activity-stream li.new-update .activity-content .activity-inner p").html(),e=jq("#activity-stream li.new-update .activity-content .activity-header p a.view").attr("href"),i=""!==jq("#activity-stream li.new-update .activity-content .activity-inner p").text()?t+" ":"",i+='<a href="'+e+'" rel="nofollow">'+BP_DTheme.view+"</a>",jq("#latest-update").slideUp(300,function(){jq("#latest-update").html(i),jq("#latest-update").slideDown(300)})),jq("li.new-update").hide().slideDown(300),jq("li.new-update").removeClass("new-update"),jq("#whats-new").val(""),s.get(0).reset(),newest_activities="",activity_last_recorded=0),jq("#whats-new-options").slideUp(),jq("#whats-new-form textarea").animate({height:"2.2em"}),jq("#aw-whats-new-submit").prop("disabled",!0).removeClass("loading"),jq("#whats-new-content").removeClass("active")}),!1}),jq("div.activity-type-tabs").on("click",function(e){var t,i=jq(e.target).parent();if("STRONG"===e.target.nodeName||"SPAN"===e.target.nodeName)i=i.parent();else if("A"!==e.target.nodeName)return!1;return t=i.attr("id").substr(9,i.attr("id").length),e=jq("#activity-filter-select select").val(),"mentions"===t&&jq("#"+i.attr("id")+" a strong").remove(),bp_activity_request(t,e),!1}),jq("#activity-filter-select select").on("change",function(){var e=jq("div.activity-type-tabs li.selected"),t=jq(this).val(),e=e.length?e.attr("id").substr(9,e.attr("id").length):null;return bp_activity_request(e,t),!1}),jq("div.activity").on("click",function(e){var t,i,a,s,n,r,o,c=jq(e.target);return c.hasClass("fav")||c.hasClass("unfav")?(c.hasClass("loading")||(t=c.hasClass("fav")?"fav":"unfav",a=(s=c.closest(".activity-item")).attr("id").substr(9,s.attr("id").length),s=bp_get_query_var("_wpnonce",c.attr("href")),c.addClass("loading"),jq.post(ajaxurl,{action:"activity_mark_"+t,cookie:bp_get_cookies(),id:a,nonce:s},function(e){c.removeClass("loading"),c.fadeOut(200,function(){jq(this).html(e),jq(this).attr("title","fav"==t?BP_DTheme.remove_fav:BP_DTheme.mark_as_fav),jq(this).fadeIn(200)}),"fav"==t?(jq(".item-list-tabs #activity-favs-personal-li").length||(jq(".item-list-tabs #activity-favorites").length||jq(".item-list-tabs ul #activity-mentions").before('<li id="activity-favorites"><a href="#">'+BP_DTheme.my_favs+" <span>0</span></a></li>"),jq(".item-list-tabs ul #activity-favorites span").html(Number(jq(".item-list-tabs ul #activity-favorites span").html())+1)),c.removeClass("fav"),c.addClass("unfav")):(c.removeClass("unfav"),c.addClass("fav"),jq(".item-list-tabs ul #activity-favorites span").html(Number(jq(".item-list-tabs ul #activity-favorites span").html())-1),Number(jq(".item-list-tabs ul #activity-favorites span").html())||(jq(".item-list-tabs ul #activity-favorites").hasClass("selected")&&bp_activity_request(null,null),jq(".item-list-tabs ul #activity-favorites").remove())),"activity-favorites"===jq(".item-list-tabs li.selected").attr("id")&&c.closest(".activity-item").slideUp(100)})),!1):c.hasClass("delete-activity")?(a=(i=c.parents("div.activity ul li")).attr("id").substr(9,i.attr("id").length),s=c.attr("href").split("_wpnonce="),n=i.prop("class").match(/date-recorded-([0-9]+)/),s=s[1],c.addClass("loading"),jq.post(ajaxurl,{action:"delete_activity",cookie:bp_get_cookies(),id:a,_wpnonce:s},function(e){e[0]+e[1]==="-1"?(i.prepend(e.substr(2,e.length)),i.children("#message").hide().fadeIn(300)):(i.slideUp(300),n&&activity_last_recorded===n[1]&&(newest_activities="",activity_last_recorded=0))}),!1):c.hasClass("spam-activity")?(i=c.parents("div.activity ul li"),n=i.prop("class").match(/date-recorded-([0-9]+)/),c.addClass("loading"),jq.post(ajaxurl,{action:"bp_spam_activity",cookie:encodeURIComponent(document.cookie),id:i.attr("id").substr(9,i.attr("id").length),_wpnonce:c.attr("href").split("_wpnonce=")[1]},function(e){e[0]+e[1]==="-1"?(i.prepend(e.substr(2,e.length)),i.children("#message").hide().fadeIn(300)):(i.slideUp(300),n&&activity_last_recorded===n[1]&&(newest_activities="",activity_last_recorded=0))}),!1):c.parent().hasClass("load-more")?(bp_ajax_request&&bp_ajax_request.abort(),jq("#buddypress li.load-more").addClass("loading"),r=l+1,o=[],jq(".activity-list li.just-posted").each(function(){o.push(jq(this).attr("id").replace("activity-",""))}),load_more_args={action:"activity_get_older_updates",cookie:bp_get_cookies(),page:r,exclude_just_posted:o.join(",")},load_more_search=bp_get_querystring("s"),load_more_search&&(load_more_args.search_terms=load_more_search),bp_ajax_request=jq.post(ajaxurl,load_more_args,function(e){jq("#buddypress li.load-more").removeClass("loading"),l=r,jq("#buddypress ul.activity-list").append(e.contents),c.parent().hide()},"json"),!1):void(c.parent().hasClass("load-newest")&&(e.preventDefault(),c.parent().hide(),activity_html=jq.parseHTML(newest_activities),jq.each(activity_html,function(e,t){"LI"===t.nodeName&&jq(t).hasClass("just-posted")&&jq("#"+jq(t).attr("id")).length&&jq("#"+jq(t).attr("id")).remove()}),jq("#buddypress ul.activity-list").prepend(newest_activities),newest_activities=""))}),jq("div.activity").on("click",".activity-read-more a",function(e){var t=jq(e.target),i=t.parent().attr("id").split("-"),e=i[3],i=i[0],a=jq("#"+i+"-"+e+" ."+("acomment"===i?"acomment-content":"activity-inner")+":first");return jq(t).addClass("loading"),jq.post(ajaxurl,{action:"get_single_activity_content",activity_id:e},function(e){jq(a).slideUp(300).html(e).slideDown(300)}),!1}),jq("form.ac-form").hide(),jq(".activity-comments").length&&bp_legacy_theme_hide_comments(),jq("div.activity").on("click",function(e){var t,a,s,i,n,r,o,c,l,d=jq(e.target);if(d.hasClass("acomment-reply")||d.parent().hasClass("acomment-reply")){if(t=(p=(d=d.parent().hasClass("acomment-reply")?d.parent():d).attr("id").split("-"))[2],e=d.attr("href").substr(10,d.attr("href").length),(a=jq("#ac-form-"+t)).length)return a.css("display","none"),a.removeClass("root"),jq(".ac-form").hide(),a.children("div").each(function(){jq(this).hasClass("error")&&jq(this).hide()}),("comment"!==p[1]?jq("#acomment-"+e):jq("#activity-"+t+" .activity-comments")).append(a),a.parent().hasClass("activity-comments")&&a.addClass("root"),a.slideDown(200),jq.scrollTo(a,500,{offset:-100,easing:"swing"}),jq("#ac-form-"+p[2]+" textarea").trigger("focus"),!1;var p=d.closest("li.activity").find(".activity-meta a.view").prop("href");return p&&(window.location.href=p),!1}return"ac_form_submit"===d.attr("name")?(p=(a=d.parents("form")).parent(),s=a.attr("id").split("-"),i=p.hasClass("activity-comments")?s[2]:p.attr("id").split("-")[1],content=jq("#"+a.attr("id")+" textarea"),jq("#"+a.attr("id")+" div.error").hide(),d.addClass("loading").prop("disabled",!0),content.addClass("loading").prop("disabled",!0),l={action:"new_activity_comment",cookie:bp_get_cookies(),_wpnonce_new_activity_comment:jq("#_wpnonce_new_activity_comment_"+s[2]).val(),comment_id:i,form_id:s[2],content:content.val()},(p=jq("#_bp_as_nonce_"+i).val())&&(l["_bp_as_nonce_"+i]=p),jq.post(ajaxurl,l,function(t){var i;d.removeClass("loading"),content.removeClass("loading"),t[0]+t[1]==="-1"?a.append(jq(t.substr(2,t.length)).hide().fadeIn(200)):(i=a.parent(),a.fadeOut(200,function(){0===i.children("ul").length&&(i.hasClass("activity-comments")?i.prepend("<ul></ul>"):i.append("<ul></ul>"));var e=jq.trim(t);i.children("ul").append(jq(e).hide().fadeIn(200)),a.children("textarea").val(""),i.parent().addClass("has-comments")}),jq("#"+a.attr("id")+" textarea").val(""),r=Number(jq("#activity-"+s[2]+" a.acomment-reply span").html())+1,jq("#activity-"+s[2]+" a.acomment-reply span").html(r),(n=i.parents(".activity-comments").find(".show-all a"))&&n.html(BP_DTheme.show_x_comments.replace("%d",r))),jq(d).prop("disabled",!1),jq(content).prop("disabled",!1)}),!1):d.hasClass("acomment-delete")?(o=d.attr("href"),c=d.closest("li"),a=c.find("form.ac-form"),l=(l=o.split("_wpnonce="))[1],i=(i=(i=o.split("cid="))[1].split("&"))[0],d.addClass("loading"),jq(".activity-comments ul .error").remove(),a&&a.length&&c.closest(".activity-comments").append(a),jq.post(ajaxurl,{action:"delete_activity_comment",cookie:bp_get_cookies(),_wpnonce:l,id:i},function(e){var t,i;e[0]+e[1]==="-1"?c.prepend(jq(e.substr(2,e.length)).hide().fadeIn(200)):(i=jq("#"+c.attr("id")+" ul").children("li"),t=0,jq(i).each(function(){jq(this).is(":hidden")||t++}),c.fadeOut(200,function(){c.remove()}),i=(e=jq("#"+c.parents("#activity-stream > li").attr("id")+" a.acomment-reply span")).html()-(1+t),e.html(i),(e=c.parents(".activity-comments").find(".show-all a"))&&e.html(BP_DTheme.show_x_comments.replace("%d",i)),0==i&&jq(c.parents("#activity-stream > li")).removeClass("has-comments"))}),!1):d.hasClass("spam-activity-comment")?(o=d.attr("href"),c=d.parent().parent(),d.addClass("loading"),jq(".activity-comments ul div.error").remove(),c.parents(".activity-comments").append(c.parents(".activity-comments").children("form")),jq.post(ajaxurl,{action:"bp_spam_activity_comment",cookie:encodeURIComponent(document.cookie),_wpnonce:o.split("_wpnonce=")[1],id:o.split("cid=")[1].split("&")[0]},function(e){var t;e[0]+e[1]==="-1"?c.prepend(jq(e.substr(2,e.length)).hide().fadeIn(200)):(e=jq("#"+c.attr("id")+" ul").children("li"),t=0,jq(e).each(function(){jq(this).is(":hidden")||t++}),c.fadeOut(200),e=c.parents("#activity-stream > li"),jq("#"+e.attr("id")+" a.acomment-reply span").html(jq("#"+e.attr("id")+" a.acomment-reply span").html()-(1+t)))}),!1):d.parent().hasClass("show-all")?(d.parent().addClass("loading"),setTimeout(function(){d.parent().parent().children("li").fadeIn(200,function(){d.parent().remove()})},600),!1):d.hasClass("ac-reply-cancel")?(jq(d).closest(".ac-form").slideUp(200),!1):void 0}),jq(document).on("keydown",function(e){(e=e||window.event).target?element=e.target:e.srcElement&&(element=e.srcElement),3===element.nodeType&&(element=element.parentNode),!0!==e.ctrlKey&&!0!==e.altKey&&!0!==e.metaKey&&27===(e.keyCode||e.which)&&"TEXTAREA"===element.tagName&&jq(element).hasClass("ac-input")&&jq(element).parent().parent().parent().slideUp(200)}),jq(".dir-search, .groups-members-search").on("click",function(e){if(!jq(this).hasClass("no-ajax")){var t,i,a=jq(e.target);if("submit"===a.attr("type")){t=jq(".item-list-tabs li.selected").attr("id").split("-")[0],i=null,a=a.parent().find("#"+t+"_search").val(),"groups-members-search"===e.currentTarget.className&&(t="group_members",i="groups/single/members");e=bp_get_directory_preference(t,"scope");return bp_filter_request(t,bp_get_directory_preference(t,"filter"),e,"div."+t,a,1,bp_get_directory_preference(t,"extras"),null,i),!1}}}),jq("div.item-list-tabs").on("click",function(e){if(jq("body").hasClass("type")&&jq("body").hasClass("directory")&&jq(this).addClass("no-ajax"),!jq(this).hasClass("no-ajax")&&!jq(e.target).hasClass("no-ajax")){var t="SPAN"===e.target.nodeName?e.target.parentNode:e.target,e=jq(t).parent();if("LI"===e[0].nodeName&&!e.hasClass("last")){if("activity"===(e=(t=e.attr("id").split("-"))[0]))return!1;t=t[1];return bp_filter_request(e,jq("#"+e+"-order-select select").val(),t,"div."+e,jq("#"+e+"_search").val(),1,bp_get_directory_preference(e,"extras")),!1}}}),jq("li.filter select").on("change",function(){var e=jq(".item-list-tabs li.selected").length?jq(".item-list-tabs li.selected"):jq(this),t=e.attr("id").split("-"),i=t[0],a=t[1],s=jq(this).val(),n=!1,e=null;return jq(".dir-search input").length&&(n=jq(".dir-search input").val()),(t=jq(".groups-members-search input")).length&&(n=t.val(),i="members",a="groups"),"members"===i&&"groups"===a&&(i="group_members",e="groups/single/members"),bp_filter_request(i="friends"===i?"members":i,s,a,"div."+i,n,1,bp_get_directory_preference(i,"extras"),null,e),!1}),jq("#buddypress").on("click",function(e){var t,i,a,s=jq(e.target);if(s.hasClass("button"))return!0;if(s.parent().parent().hasClass("pagination")&&!s.parent().parent().hasClass("no-ajax")){if(s.hasClass("dots")||s.hasClass("current"))return!1;t=(n=(jq(".item-list-tabs li.selected").length?jq(".item-list-tabs li.selected"):jq("li.filter select")).attr("id").split("-"))[0],i=!1,r=jq(s).closest(".pagination-links").attr("id"),a=null,jq("div.dir-search input").length&&(i=!(i=jq(".dir-search input")).val()&&bp_get_querystring(i.attr("name"))?jq(".dir-search input").prop("placeholder"):i.val()),e=(jq(s).hasClass("next")||jq(s).hasClass("prev")?jq(".pagination span.current"):jq(s)).html(),e=Number(e.replace(/\D/g,"")),jq(s).hasClass("next")?e++:jq(s).hasClass("prev")&&e--,(s=jq(".groups-members-search input")).length&&(i=s.val(),t="members"),"members"===t&&"groups"===n[1]&&(t="group_members",a="groups/single/members"),"admin"===t&&jq("body").hasClass("membership-requests")&&(t="requests");var n=-1!==r.indexOf("pag-bottom")?"pag-bottom":null,r=bp_get_directory_preference(t,"scope");return bp_filter_request(t,bp_get_directory_preference(t,"filter"),r,"div."+t,i,e,bp_get_directory_preference(t,"extras"),n,a),!1}}),jq("#send-invite-form").on("click","#invite-list input",function(){var t,i,a=jq("#send-invite-form > .invite").length;jq(".ajax-loader").toggle(),a&&jq(this).parents("ul").find("input").prop("disabled",!0),t=jq(this).val(),i=!0===jq(this).prop("checked")?"invite":"uninvite",a||jq(".item-list-tabs li.selected").addClass("loading"),jq.post(ajaxurl,{action:"groups_invite_user",friend_action:i,cookie:bp_get_cookies(),_wpnonce:jq("#_wpnonce_invite_uninvite_user").val(),friend_id:t,group_id:jq("#group_id").val()},function(e){jq("#message")&&jq("#message").hide(),a?bp_filter_request("invite","bp-invite-filter","bp-invite-scope","div.invite",!1,1,"","",""):(jq(".ajax-loader").toggle(),"invite"===i?jq("#friend-list").append(e):"uninvite"===i&&jq("#friend-list li#uid-"+t).remove(),jq(".item-list-tabs li.selected").removeClass("loading"))})}),jq("#send-invite-form").on("click","a.remove",function(){var e=jq("#send-invite-form > .invite").length,t=jq(this).attr("id");return jq(".ajax-loader").toggle(),t=(t=t.split("-"))[1],jq.post(ajaxurl,{action:"groups_invite_user",friend_action:"uninvite",cookie:bp_get_cookies(),_wpnonce:jq("#_wpnonce_invite_uninvite_user").val(),friend_id:t,group_id:jq("#group_id").val()},function(){e?bp_filter_request("invite","bp-invite-filter","bp-invite-scope","div.invite",!1,1,"","",""):(jq(".ajax-loader").toggle(),jq("#friend-list #uid-"+t).remove(),jq("#invite-list #f-"+t).prop("checked",!1))}),!1}),jq(".visibility-toggle-link").on("click",function(e){e.preventDefault(),jq(this).attr("aria-expanded","true").parent().hide().addClass("field-visibility-settings-hide").siblings(".field-visibility-settings").show().addClass("field-visibility-settings-open")}),jq(".field-visibility-settings-close").on("click",function(e){e.preventDefault(),jq(".visibility-toggle-link").attr("aria-expanded","false");var t=jq(this).parent(),e=t.find("input:checked").parent().text();t.hide().removeClass("field-visibility-settings-open").siblings(".field-visibility-settings-toggle").find(".current-visibility-level").text(e).end().show().removeClass("field-visibility-settings-hide")}),jq("#profile-edit-form input:not(:submit), #profile-edit-form textarea, #profile-edit-form select, #signup_form input:not(:submit), #signup_form textarea, #signup_form select").on("change",function(){var t=!0;jq("#profile-edit-form input:submit, #signup_form input:submit").on("click",function(){t=!1}),window.onbeforeunload=function(e){if(t)return BP_DTheme.unsaved_changes}}),jq("#friend-list a.accept, #friend-list a.reject").on("click",function(){var e,t=jq(this),i=jq(this).parents("#friend-list li"),a=jq(this).parents("li div.action"),s=i.attr("id").substr(11,i.attr("id").length),n=t.attr("href").split("_wpnonce=")[1];return jq(this).hasClass("accepted")||jq(this).hasClass("rejected")||(jq(this).hasClass("accept")?(e="accept_friendship",a.children("a.reject").css("visibility","hidden")):(e="reject_friendship",a.children("a.accept").css("visibility","hidden")),t.addClass("loading"),jq.post(ajaxurl,{action:e,cookie:bp_get_cookies(),id:s,_wpnonce:n},function(e){t.removeClass("loading"),e[0]+e[1]==="-1"?(i.prepend(e.substr(2,e.length)),i.children("#message").hide().fadeIn(200)):t.fadeOut(100,function(){jq(this).hasClass("accept")?(a.children("a.reject").hide(),jq(this).html(BP_DTheme.accepted).contents().unwrap()):(a.children("a.accept").hide(),jq(this).html(BP_DTheme.rejected).contents().unwrap())})})),!1}),jq("#members-dir-list, #members-group-list, #item-header").on("click",".friendship-button a",function(){jq(this).parent().addClass("loading");var e=jq(this).attr("id"),t=jq(this).attr("href"),i=jq(this);return e=(e=e.split("-"))[1],t=(t=(t=t.split("?_wpnonce="))[1].split("&"))[0],jq.post(ajaxurl,{action:"addremove_friend",cookie:bp_get_cookies(),fid:e,_wpnonce:t},function(e){var t=i.attr("rel");parentdiv=i.parent(),"add"===t?jq(parentdiv).fadeOut(200,function(){parentdiv.removeClass("add_friend"),parentdiv.removeClass("loading"),parentdiv.addClass("pending_friend"),parentdiv.fadeIn(200).html(e)}):"remove"===t&&jq(parentdiv).fadeOut(200,function(){parentdiv.removeClass("remove_friend"),parentdiv.removeClass("loading"),parentdiv.addClass("add"),parentdiv.fadeIn(200).html(e)})}),!1}),jq("#buddypress").on("click",".group-button .leave-group",function(){if(!1===confirm(BP_DTheme.leave_group_confirm))return!1}),jq("#groups-dir-list").on("click",".group-button a",function(){var e=jq(this).parent().attr("id"),t=jq(this).attr("href"),s=jq(this);return e=(e=e.split("-"))[1],t=(t=(t=t.split("?_wpnonce="))[1].split("&"))[0],s.hasClass("leave-group")&&!1===confirm(BP_DTheme.leave_group_confirm)||jq.post(ajaxurl,{action:"joinleave_group",cookie:bp_get_cookies(),gid:e,_wpnonce:t},function(i){var a=s.parent();jq("body.directory").length?jq(a).fadeOut(200,function(){a.fadeIn(200).html(i);var e=jq("#groups-personal span"),t=1;s.hasClass("leave-group")?(a.hasClass("hidden")&&a.closest("li").slideUp(200),t=0):s.hasClass("request-membership")&&(t=!1),e.length&&!1!==t&&(t?e.text(1+(e.text()>>0)):e.text((e.text()>>0)-1))}):window.location.reload()}),!1}),jq("#groups-list li.hidden").each(function(){"none"===jq(this).css("display")&&jq(this).css("cssText","display: list-item !important")}),jq("#buddypress").on("click",".pending",function(){return!1}),jq("body").hasClass("register")&&((e=jq("#signup_with_blog")).prop("checked")||jq("#blog-details").toggle(),e.on("change",function(){jq("#blog-details").toggle()})),jq(".message-search").on("click",function(e){if(!jq(this).hasClass("no-ajax")){var t=jq(e.target);if("submit"===t.attr("type")||"button"===t.attr("type")){var i,a=bp_get_directory_preference(i="messages","scope"),e=bp_get_directory_preference(i,"filter"),t=bp_get_directory_preference(i,"extras");return bp_filter_request(i,e,a,"div."+i,jq("#messages_search").val(),1,t),!1}}}),jq("#send_reply_button").on("click",function(){var t=jq("#messages_order").val()||"ASC",i=jq("#message-recipients").offset(),a=jq("#send_reply_button");return jq(a).addClass("loading").prop("disabled",!0),jq.post(ajaxurl,{action:"messages_send_reply",cookie:bp_get_cookies(),_wpnonce:jq("#send_message_nonce").val(),content:jq("#message_content").val(),send_to:jq("#send_to").val(),subject:jq("#subject").val(),thread_id:jq("#thread_id").val()},function(e){e[0]+e[1]==="-1"?jq("#send-reply").prepend(e.substr(2,e.length)):(jq("#send-reply #message").remove(),jq("#message_content").val(""),"ASC"===t?jq("#send-reply").before(e):(jq("#message-recipients").after(e),jq(window).scrollTop(i.top)),jq(".new-message").hide().slideDown(200,function(){jq(".new-message").removeClass("new-message")})),jq(a).removeClass("loading").prop("disabled",!1)}),!1}),jq("body.messages #item-body div.messages").on("change","#message-type-select",function(){var e=this.value,t=jq('td input[type="checkbox"]'),i="checked";switch(t.each(function(e){t[e].checked=""}),e){case"unread":t=jq('tr.unread td input[type="checkbox"]');break;case"read":t=jq('tr.read td input[type="checkbox"]');break;case"":i=""}t.each(function(e){t[e].checked=i})}),jq("#select-all-messages").on("click",function(){this.checked?jq(".message-check").each(function(){this.checked=!0}):jq(".message-check").each(function(){this.checked=!1})}),jq("#messages-bulk-manage").attr("disabled","disabled"),jq("#messages-select").on("change",function(){jq("#messages-bulk-manage").attr("disabled",jq(this).val().length<=0)}),starAction=function(){var t=jq(this);return jq.post(ajaxurl,{action:"messages_star",message_id:t.data("message-id"),star_status:t.data("star-status"),nonce:t.data("star-nonce"),bulk:t.data("star-bulk")},function(e){1===parseInt(e,10)&&("unstar"===t.data("star-status")?(t.data("star-status","star"),t.removeClass("message-action-unstar").addClass("message-action-star"),t.find(".bp-screen-reader-text").text(BP_PM_Star.strings.text_star),1===BP_PM_Star.is_single_thread?t.attr("data-bp-tooltip",BP_PM_Star.strings.title_star):t.attr("data-bp-tooltip",BP_PM_Star.strings.title_star_thread)):(t.data("star-status","unstar"),t.removeClass("message-action-star").addClass("message-action-unstar"),t.find(".bp-screen-reader-text").text(BP_PM_Star.strings.text_unstar),1===BP_PM_Star.is_single_thread?t.attr("data-bp-tooltip",BP_PM_Star.strings.title_unstar):t.attr("data-bp-tooltip",BP_PM_Star.strings.title_unstar_thread)))}),!1},jq("#message-threads").on("click","td.thread-star a",starAction),jq("#message-thread").on("click",".message-star-actions a",starAction),jq("#message-threads td.bulk-select-check :checkbox").on("change",function(){var e=jq(this),t=e.closest("tr").find(".thread-star a");e.prop("checked")?"unstar"===t.data("star-status")?BP_PM_Star.star_counter++:BP_PM_Star.unstar_counter++:"unstar"===t.data("star-status")?BP_PM_Star.star_counter--:BP_PM_Star.unstar_counter--,0<BP_PM_Star.star_counter&&0===parseInt(BP_PM_Star.unstar_counter,10)?jq('option[value="star"]').hide():jq('option[value="star"]').show(),0<BP_PM_Star.unstar_counter&&0===parseInt(BP_PM_Star.star_counter,10)?jq('option[value="unstar"]').hide():jq('option[value="unstar"]').show()}),jq("#select-all-notifications").on("click",function(){this.checked?jq(".notification-check").each(function(){this.checked=!0}):jq(".notification-check").each(function(){this.checked=!1})}),jq("#notification-bulk-manage").attr("disabled","disabled"),jq("#notification-select").on("change",function(){jq("#notification-bulk-manage").attr("disabled",jq(this).val().length<=0)}),jq("#select-all-invitations").on("click",function(){this.checked?jq(".invitation-check").each(function(){this.checked=!0}):jq(".invitation-check").each(function(){this.checked=!1})}),jq("#invitation-bulk-manage").attr("disabled","disabled"),jq("#invitation-select").on("change",function(){jq("#invitation-bulk-manage").attr("disabled",jq(this).val().length<=0)}),jq("#close-notice").on("click",function(){return jq(this).addClass("loading"),jq("#sidebar div.error").remove(),jq.post(ajaxurl,{action:"messages_close_notice",notice_id:jq(".notice").attr("rel").substr(2,jq(".notice").attr("rel").length),nonce:jq("#close-notice-nonce").val()},function(e){jq("#close-notice").removeClass("loading"),e[0]+e[1]==="-1"?(jq(".notice").prepend(e.substr(2,e.length)),jq("#sidebar div.error").hide().fadeIn(200)):jq(".notice").slideUp(100)}),!1}),jq("#wp-admin-bar ul.main-nav li, #nav li").on("mouseover",function(){jq(this).addClass("sfhover")}),jq("#wp-admin-bar ul.main-nav li, #nav li").on("mouseout",function(){jq(this).removeClass("sfhover")}),jq("#wp-admin-bar-logout, a.logout").on("click",function(){jq.removeCookie("bp-activity-scope",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-activity-filter",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-activity-oldestpage",{path:"/",secure:"https:"===window.location.protocol});var t=["members","groups","blogs","forums"];jq(t).each(function(e){jq.removeCookie("bp-"+t[e]+"-scope",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-"+t[e]+"-filter",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-"+t[e]+"-extras",{path:"/",secure:"https:"===window.location.protocol})})}),jq("body").hasClass("no-js")&&jq("body").attr("class",jq("body").attr("class").replace(/no-js/,"js")),"undefined"!=typeof wp&&void 0!==wp.heartbeat&&void 0!==BP_DTheme.pulse&&(wp.heartbeat.interval(Number(BP_DTheme.pulse)),jq.fn.extend({"heartbeat-send":function(){return this.bind("heartbeat-send.buddypress")}}));var a=0;jq(document).on("heartbeat-send.buddypress",function(e,t){a=0,jq("#buddypress ul.activity-list li").first().prop("id")&&(timestamp=jq("#buddypress ul.activity-list li").first().prop("class").match(/date-recorded-([0-9]+)/),timestamp&&(a=timestamp[1])),(0===activity_last_recorded||Number(a)>activity_last_recorded)&&(activity_last_recorded=Number(a)),t.bp_activity_last_recorded=activity_last_recorded,last_recorded_search=bp_get_querystring("s"),last_recorded_search&&(t.bp_activity_last_recorded_search_terms=last_recorded_search)}),jq(document).on("heartbeat-tick",function(e,t){t.bp_activity_newest_activities&&(newest_activities=t.bp_activity_newest_activities.activities+newest_activities,activity_last_recorded=Number(t.bp_activity_newest_activities.last_recorded),jq("#buddypress ul.activity-list li").first().hasClass("load-newest")||jq("#buddypress ul.activity-list").prepend('<li class="load-newest"><a href="#newest">'+BP_DTheme.newest+"</a></li>"))})});
1
+ var jq=jQuery,bp_ajax_request=null,newest_activities="",activity_last_recorded=0,directoryPreferences={};function bp_get_directory_preference(e,t){var i={filter:"",scope:"",extras:""};if(!directoryPreferences.hasOwnProperty(e)){var a,s={};for(a in i)i.hasOwnProperty(a)&&(s[a]=i[a]);directoryPreferences[e]=s}return BP_DTheme.store_filter_settings&&(directoryPreferences[e][t]=jq.cookie("bp-"+e+"-"+t)),directoryPreferences[e][t]}function bp_set_directory_preference(e,t,i){var a={filter:"",scope:"",extras:""};if(!directoryPreferences.hasOwnProperty(e)){var s,n={};for(s in a)a.hasOwnProperty(s)&&(n[s]=a[s]);directoryPreferences[e]=n}BP_DTheme.store_filter_settings&&jq.cookie("bp-"+e+"-"+t,i,{path:"/",secure:"https:"===window.location.protocol}),directoryPreferences[e][t]=i}function bp_init_activity(){var e=bp_get_directory_preference("activity","scope"),t=bp_get_directory_preference("activity","filter");void 0!==t&&jq("#activity-filter-select").length&&jq('#activity-filter-select select option[value="'+t+'"]').prop("selected",!0),void 0!==e&&jq(".activity-type-tabs").length&&(jq(".activity-type-tabs li").each(function(){jq(this).removeClass("selected")}),jq("#activity-"+e+", .item-list-tabs li.current").addClass("selected"))}function bp_init_objects(a){jq(a).each(function(e){var t=bp_get_directory_preference(a[e],"scope"),i=bp_get_directory_preference(a[e],"filter");void 0!==i&&jq("#"+a[e]+"-order-select select").length&&jq("#"+a[e]+'-order-select select option[value="'+i+'"]').prop("selected",!0),void 0!==t&&jq("div."+a[e]).length&&(jq(".item-list-tabs li").each(function(){jq(this).removeClass("selected")}),jq("#"+a[e]+"-"+t+", #object-nav li.current").addClass("selected"))})}function bp_filter_request(e,t,i,a,s,n,r,o,c){if("activity"===e)return!1;bp_set_directory_preference(e,"scope",i=null===i?"all":i),bp_set_directory_preference(e,"filter",t),bp_set_directory_preference(e,"extras",r),jq(".item-list-tabs li").each(function(){jq(this).removeClass("selected")}),jq("#"+e+"-"+i+", #object-nav li.current").addClass("selected"),jq(".item-list-tabs li.selected").addClass("loading"),jq('.item-list-tabs select option[value="'+t+'"]').prop("selected",!0),"friends"!==e&&"group_members"!==e||(e="members"),bp_ajax_request&&bp_ajax_request.abort();var l={};l["bp-"+e+"-filter"]=bp_get_directory_preference(e,"filter"),l["bp-"+e+"-scope"]=bp_get_directory_preference(e,"scope");l=encodeURIComponent(jq.param(l));bp_ajax_request=jq.post(ajaxurl,{action:e+"_filter",cookie:l,object:e,filter:t,search_terms:s,scope:i,page:n,extras:r,template:c},function(e){var t;"pag-bottom"===o&&jq("#subnav").length?(t=jq("#subnav").parent(),jq("html,body").animate({scrollTop:t.offset().top},"slow",function(){jq(a).fadeOut(100,function(){jq(this).html(e),jq(this).fadeIn(100)})})):jq(a).fadeOut(100,function(){jq(this).html(e),jq(this).fadeIn(100)}),jq(".item-list-tabs li.selected").removeClass("loading")})}function bp_activity_request(e,t){bp_set_directory_preference("activity","scope",e),bp_set_directory_preference("activity","filter",t),jq(".item-list-tabs li").each(function(){jq(this).removeClass("selected loading")}),jq("#activity-"+e+", .item-list-tabs li.current").addClass("selected"),jq("#object-nav.item-list-tabs li.selected, div.activity-type-tabs li.selected").addClass("loading"),jq('#activity-filter-select select option[value="'+t+'"]').prop("selected",!0),jq(".widget_bp_activity_widget h2 span.ajax-loader").show(),bp_ajax_request&&bp_ajax_request.abort();var i={"bp-activity-filter":bp_get_directory_preference("activity","filter"),"bp-activity-scope":bp_get_directory_preference("activity","scope")},i=encodeURIComponent(jq.param(i));bp_ajax_request=jq.post(ajaxurl,{action:"activity_widget_filter",cookie:i,_wpnonce_activity_filter:jq("#_wpnonce_activity_filter").val(),scope:e,filter:t},function(e){jq(".widget_bp_activity_widget h2 span.ajax-loader").hide(),jq("div.activity").fadeOut(100,function(){jq(this).html(e.contents),jq(this).fadeIn(100),bp_legacy_theme_hide_comments()}),void 0!==e.feed_url&&jq(".directory #subnav li.feed a, .home-page #subnav li.feed a").attr("href",e.feed_url),jq(".item-list-tabs li.selected").removeClass("loading")},"json")}function bp_legacy_theme_hide_comments(){var t,i,a,e=jq("div.activity-comments");if(!e.length)return!1;e.each(function(){jq(this).children("ul").children("li").length<5||(comments_div=jq(this),t=comments_div.parents("#activity-stream > li"),i=jq(this).children("ul").children("li"),a=" ",jq("#"+t.attr("id")+' li[id*="acomment-"]').length&&(a=jq("#"+t.attr("id")+' li[id*="acomment-"]').length),i.each(function(e){e<i.length-5&&(jq(this).hide(),e||jq(this).before('<li class="show-all"><a href="#'+t.attr("id")+'/show-all/">'+BP_DTheme.show_x_comments.replace("%d",a)+"</a></li>"))}))})}function checkAll(){for(var e=document.getElementsByTagName("input"),t=0;t<e.length;t++)"checkbox"===e[t].type&&(""===$("check_all").checked?e[t].checked="":e[t].checked="checked")}function clear(e){if(e=document.getElementById(e)){var t=e.getElementsByTagName("INPUT"),i=e.getElementsByTagName("OPTION"),a=0;if(t)for(a=0;a<t.length;a++)t[a].checked="";if(i)for(a=0;a<i.length;a++)i[a].selected=!1}}function bp_get_cookies(){for(var e,t,i,a=document.cookie.split(";"),s={},n=0;n<a.length;n++)i=(e=a[n]).indexOf("="),t=jq.trim(unescape(e.slice(0,i))),i=unescape(e.slice(i+1)),0===t.indexOf("bp-")&&(s[t]=i);return encodeURIComponent(jq.param(s))}function bp_get_query_var(e,t){var i={};return(t=(void 0===t?location.search.substr(1):t.split("?")[1]).split("&")).forEach(function(e){i[e.split("=")[0]]=e.split("=")[1]&&decodeURIComponent(e.split("=")[1])}),!(!i.hasOwnProperty(e)||null==i[e])&&i[e]}jq(function(){var l=1;bp_init_activity();var e,i=jq("#whats-new");bp_init_objects(["members","groups","blogs","group_members"]),i.length&&bp_get_querystring("r")?(e=i.val(),jq("#whats-new-options").slideDown(),i.animate({height:"3.8em"}),jq.scrollTo(i,500,{offset:-125,easing:"swing"}),i.val("").trigger("focus").val(e)):jq("#whats-new-options").hide(),i.on("focus",function(){jq("#whats-new-options").slideDown(),jq(this).animate({height:"3.8em"}),jq("#aw-whats-new-submit").prop("disabled",!1),jq(this).parent().addClass("active"),jq("#whats-new-content").addClass("active");var e=jq("form#whats-new-form"),t=jq("#activity-all");e.hasClass("submitted")&&e.removeClass("submitted"),t.length&&(t.hasClass("selected")?"-1"!==jq("#activity-filter-select select").val()&&(jq("#activity-filter-select select").val("-1"),jq("#activity-filter-select select").trigger("change")):(jq("#activity-filter-select select").val("-1"),t.children("a").trigger("click")))}),jq("#whats-new-form").on("focusout",function(e){var t=jq(this);setTimeout(function(){t.find(":hover").length||""===i.val()&&(i.animate({height:"2.2em"}),jq("#whats-new-options").slideUp(),jq("#aw-whats-new-submit").prop("disabled",!0),jq("#whats-new-content").removeClass("active"),i.parent().removeClass("active"))},0)}),jq("#aw-whats-new-submit").on("click",function(){var a=0,e=jq(this),s=e.closest("form#whats-new-form"),i={};return jq.each(s.serializeArray(),function(e,t){"_"!==t.name.substr(0,1)&&"whats-new"!==t.name.substr(0,9)&&(i[t.name]?Array.isArray(i[t.name])?i[t.name].push(t.value):i[t.name]=new Array(i[t.name],t.value):i[t.name]=t.value)}),s.find("*").each(function(e,t){"textarea"!==t.nodeName.toLowerCase()&&"input"!==t.nodeName.toLowerCase()||jq(t).prop("disabled",!0)}),jq("div.error").remove(),e.addClass("loading"),e.prop("disabled",!0),s.addClass("submitted"),object="",item_id=jq("#whats-new-post-in").val(),content=jq("#whats-new").val(),firstrow=jq("#buddypress ul.activity-list li").first(),activity_row=firstrow,timestamp=null,firstrow.length&&(activity_row.hasClass("load-newest")&&(activity_row=firstrow.next()),timestamp=activity_row.prop("class").match(/date-recorded-([0-9]+)/)),timestamp&&(a=timestamp[1]),0<item_id&&(object=jq("#whats-new-post-object").val()),e=jq.extend({action:"post_update",cookie:bp_get_cookies(),_wpnonce_post_update:jq("#_wpnonce_post_update").val(),content:content,object:object,item_id:item_id,since:a,_bp_as_nonce:jq("#_bp_as_nonce").val()||""},i),jq.post(ajaxurl,e,function(e){var t,i;s.find("*").each(function(e,t){"textarea"!==t.nodeName.toLowerCase()&&"input"!==t.nodeName.toLowerCase()||jq(t).prop("disabled",!1)}),e[0]+e[1]==="-1"?(s.prepend(e.substr(2,e.length)),jq("#"+s.attr("id")+" div.error").hide().fadeIn(200)):(0===jq("ul.activity-list").length&&(jq("div.error").slideUp(100).remove(),jq("#message").slideUp(100).remove(),jq("div.activity").append('<ul id="activity-stream" class="activity-list item-list">')),firstrow.hasClass("load-newest")&&firstrow.remove(),jq("#activity-stream").prepend(e),a||jq("#activity-stream li:first").addClass("new-update just-posted"),0!==jq("#latest-update").length&&(t=jq("#activity-stream li.new-update .activity-content .activity-inner p").html(),e=jq("#activity-stream li.new-update .activity-content .activity-header p a.view").attr("href"),i=""!==jq("#activity-stream li.new-update .activity-content .activity-inner p").text()?t+" ":"",i+='<a href="'+e+'" rel="nofollow">'+BP_DTheme.view+"</a>",jq("#latest-update").slideUp(300,function(){jq("#latest-update").html(i),jq("#latest-update").slideDown(300)})),jq("li.new-update").hide().slideDown(300),jq("li.new-update").removeClass("new-update"),jq("#whats-new").val(""),s.get(0).reset(),newest_activities="",activity_last_recorded=0),jq("#whats-new-options").slideUp(),jq("#whats-new-form textarea").animate({height:"2.2em"}),jq("#aw-whats-new-submit").prop("disabled",!0).removeClass("loading"),jq("#whats-new-content").removeClass("active")}),!1}),jq("div.activity-type-tabs").on("click",function(e){var t,i=jq(e.target).parent();if("STRONG"===e.target.nodeName||"SPAN"===e.target.nodeName)i=i.parent();else if("A"!==e.target.nodeName)return!1;return t=i.attr("id").substr(9,i.attr("id").length),e=jq("#activity-filter-select select").val(),"mentions"===t&&jq("#"+i.attr("id")+" a strong").remove(),bp_activity_request(t,e),!1}),jq("#activity-filter-select select").on("change",function(){var e=jq("div.activity-type-tabs li.selected"),t=jq(this).val(),e=e.length?e.attr("id").substr(9,e.attr("id").length):null;return bp_activity_request(e,t),!1}),jq("div.activity").on("click",function(e){var t,i,a,s,n,r,o,c=jq(e.target);return c.hasClass("fav")||c.hasClass("unfav")?(c.hasClass("loading")||(t=c.hasClass("fav")?"fav":"unfav",a=(s=c.closest(".activity-item")).attr("id").substr(9,s.attr("id").length),s=bp_get_query_var("_wpnonce",c.attr("href")),c.addClass("loading"),jq.post(ajaxurl,{action:"activity_mark_"+t,cookie:bp_get_cookies(),id:a,nonce:s},function(e){c.removeClass("loading"),c.fadeOut(200,function(){jq(this).html(e),jq(this).attr("title","fav"==t?BP_DTheme.remove_fav:BP_DTheme.mark_as_fav),jq(this).fadeIn(200)}),"fav"==t?(jq(".item-list-tabs #activity-favs-personal-li").length||(jq(".item-list-tabs #activity-favorites").length||jq(".item-list-tabs ul #activity-mentions").before('<li id="activity-favorites"><a href="#">'+BP_DTheme.my_favs+" <span>0</span></a></li>"),jq(".item-list-tabs ul #activity-favorites span").html(Number(jq(".item-list-tabs ul #activity-favorites span").html())+1)),c.removeClass("fav"),c.addClass("unfav")):(c.removeClass("unfav"),c.addClass("fav"),jq(".item-list-tabs ul #activity-favorites span").html(Number(jq(".item-list-tabs ul #activity-favorites span").html())-1),Number(jq(".item-list-tabs ul #activity-favorites span").html())||(jq(".item-list-tabs ul #activity-favorites").hasClass("selected")&&bp_activity_request(null,null),jq(".item-list-tabs ul #activity-favorites").remove())),"activity-favorites"===jq(".item-list-tabs li.selected").attr("id")&&c.closest(".activity-item").slideUp(100)})),!1):c.hasClass("delete-activity")?(a=(i=c.parents("div.activity ul li")).attr("id").substr(9,i.attr("id").length),s=c.attr("href").split("_wpnonce="),n=i.prop("class").match(/date-recorded-([0-9]+)/),s=s[1],c.addClass("loading"),jq.post(ajaxurl,{action:"delete_activity",cookie:bp_get_cookies(),id:a,_wpnonce:s},function(e){e[0]+e[1]==="-1"?(i.prepend(e.substr(2,e.length)),i.children("#message").hide().fadeIn(300)):(i.slideUp(300),n&&activity_last_recorded===n[1]&&(newest_activities="",activity_last_recorded=0))}),!1):c.hasClass("spam-activity")?(i=c.parents("div.activity ul li"),n=i.prop("class").match(/date-recorded-([0-9]+)/),c.addClass("loading"),jq.post(ajaxurl,{action:"bp_spam_activity",cookie:encodeURIComponent(document.cookie),id:i.attr("id").substr(9,i.attr("id").length),_wpnonce:c.attr("href").split("_wpnonce=")[1]},function(e){e[0]+e[1]==="-1"?(i.prepend(e.substr(2,e.length)),i.children("#message").hide().fadeIn(300)):(i.slideUp(300),n&&activity_last_recorded===n[1]&&(newest_activities="",activity_last_recorded=0))}),!1):c.parent().hasClass("load-more")?(bp_ajax_request&&bp_ajax_request.abort(),jq("#buddypress li.load-more").addClass("loading"),r=l+1,o=[],jq(".activity-list li.just-posted").each(function(){o.push(jq(this).attr("id").replace("activity-",""))}),load_more_args={action:"activity_get_older_updates",cookie:bp_get_cookies(),page:r,exclude_just_posted:o.join(",")},load_more_search=bp_get_querystring("s"),load_more_search&&(load_more_args.search_terms=load_more_search),bp_ajax_request=jq.post(ajaxurl,load_more_args,function(e){jq("#buddypress li.load-more").removeClass("loading"),l=r,jq("#buddypress ul.activity-list").append(e.contents),c.parent().hide()},"json"),!1):void(c.parent().hasClass("load-newest")&&(e.preventDefault(),c.parent().hide(),activity_html=jq.parseHTML(newest_activities),jq.each(activity_html,function(e,t){"LI"===t.nodeName&&jq(t).hasClass("just-posted")&&jq("#"+jq(t).attr("id")).length&&jq("#"+jq(t).attr("id")).remove()}),jq("#buddypress ul.activity-list").prepend(newest_activities),newest_activities=""))}),jq("div.activity").on("click",".activity-read-more a",function(e){var t=jq(e.target),i=t.parent().attr("id").split("-"),e=i[3],i=i[0],a=jq("#"+i+"-"+e+" ."+("acomment"===i?"acomment-content":"activity-inner")+":first");return jq(t).addClass("loading"),jq.post(ajaxurl,{action:"get_single_activity_content",activity_id:e},function(e){jq(a).slideUp(300).html(e).slideDown(300)}),!1}),jq("form.ac-form").hide(),jq(".activity-comments").length&&bp_legacy_theme_hide_comments(),jq("div.activity").on("click",function(e){var t,a,s,i,n,r,o,c,l,d=jq(e.target);if(d.hasClass("acomment-reply")||d.parent().hasClass("acomment-reply")){if(t=(p=(d=d.parent().hasClass("acomment-reply")?d.parent():d).attr("id").split("-"))[2],e=d.attr("href").substr(10,d.attr("href").length),(a=jq("#ac-form-"+t)).length)return a.css("display","none"),a.removeClass("root"),jq(".ac-form").hide(),a.children("div").each(function(){jq(this).hasClass("error")&&jq(this).hide()}),("comment"!==p[1]?jq("#acomment-"+e):jq("#activity-"+t+" .activity-comments")).append(a),a.parent().hasClass("activity-comments")&&a.addClass("root"),a.slideDown(200),jq.scrollTo(a,500,{offset:-100,easing:"swing"}),jq("#ac-form-"+p[2]+" textarea").trigger("focus"),!1;var p=d.closest("li.activity").find(".activity-meta a.view").prop("href");return p&&(window.location.href=p),!1}return"ac_form_submit"===d.attr("name")?(p=(a=d.parents("form")).parent(),s=a.attr("id").split("-"),i=p.hasClass("activity-comments")?s[2]:p.attr("id").split("-")[1],content=jq("#"+a.attr("id")+" textarea"),jq("#"+a.attr("id")+" div.error").hide(),d.addClass("loading").prop("disabled",!0),content.addClass("loading").prop("disabled",!0),l={action:"new_activity_comment",cookie:bp_get_cookies(),_wpnonce_new_activity_comment:jq("#_wpnonce_new_activity_comment_"+s[2]).val(),comment_id:i,form_id:s[2],content:content.val()},(p=jq("#_bp_as_nonce_"+i).val())&&(l["_bp_as_nonce_"+i]=p),jq.post(ajaxurl,l,function(t){var i;d.removeClass("loading"),content.removeClass("loading"),t[0]+t[1]==="-1"?a.append(jq(t.substr(2,t.length)).hide().fadeIn(200)):(i=a.parent(),a.fadeOut(200,function(){0===i.children("ul").length&&(i.hasClass("activity-comments")?i.prepend("<ul></ul>"):i.append("<ul></ul>"));var e=jq.trim(t);i.children("ul").append(jq(e).hide().fadeIn(200)),a.children("textarea").val(""),i.parent().addClass("has-comments")}),jq("#"+a.attr("id")+" textarea").val(""),r=Number(jq("#activity-"+s[2]+" a.acomment-reply span").html())+1,jq("#activity-"+s[2]+" a.acomment-reply span").html(r),(n=i.parents(".activity-comments").find(".show-all a"))&&n.html(BP_DTheme.show_x_comments.replace("%d",r))),jq(d).prop("disabled",!1),jq(content).prop("disabled",!1)}),!1):d.hasClass("acomment-delete")?(o=d.attr("href"),c=d.closest("li"),a=c.find("form.ac-form"),l=(l=o.split("_wpnonce="))[1],i=(i=(i=o.split("cid="))[1].split("&"))[0],d.addClass("loading"),jq(".activity-comments ul .error").remove(),a&&a.length&&c.closest(".activity-comments").append(a),jq.post(ajaxurl,{action:"delete_activity_comment",cookie:bp_get_cookies(),_wpnonce:l,id:i},function(e){var t,i;e[0]+e[1]==="-1"?c.prepend(jq(e.substr(2,e.length)).hide().fadeIn(200)):(i=jq("#"+c.attr("id")+" ul").children("li"),t=0,jq(i).each(function(){jq(this).is(":hidden")||t++}),c.fadeOut(200,function(){c.remove()}),i=(e=jq("#"+c.parents("#activity-stream > li").attr("id")+" a.acomment-reply span")).html()-(1+t),e.html(i),(e=c.parents(".activity-comments").find(".show-all a"))&&e.html(BP_DTheme.show_x_comments.replace("%d",i)),0==i&&jq(c.parents("#activity-stream > li")).removeClass("has-comments"))}),!1):d.hasClass("spam-activity-comment")?(o=d.attr("href"),c=d.parent().parent(),d.addClass("loading"),jq(".activity-comments ul div.error").remove(),c.parents(".activity-comments").append(c.parents(".activity-comments").children("form")),jq.post(ajaxurl,{action:"bp_spam_activity_comment",cookie:encodeURIComponent(document.cookie),_wpnonce:o.split("_wpnonce=")[1],id:o.split("cid=")[1].split("&")[0]},function(e){var t;e[0]+e[1]==="-1"?c.prepend(jq(e.substr(2,e.length)).hide().fadeIn(200)):(e=jq("#"+c.attr("id")+" ul").children("li"),t=0,jq(e).each(function(){jq(this).is(":hidden")||t++}),c.fadeOut(200),e=c.parents("#activity-stream > li"),jq("#"+e.attr("id")+" a.acomment-reply span").html(jq("#"+e.attr("id")+" a.acomment-reply span").html()-(1+t)))}),!1):d.parent().hasClass("show-all")?(d.parent().addClass("loading"),setTimeout(function(){d.parent().parent().children("li").fadeIn(200,function(){d.parent().remove()})},600),!1):d.hasClass("ac-reply-cancel")?(jq(d).closest(".ac-form").slideUp(200),!1):void 0}),jq(document).on("keydown",function(e){(e=e||window.event).target?element=e.target:e.srcElement&&(element=e.srcElement),3===element.nodeType&&(element=element.parentNode),!0!==e.ctrlKey&&!0!==e.altKey&&!0!==e.metaKey&&27===(e.keyCode||e.which)&&"TEXTAREA"===element.tagName&&jq(element).hasClass("ac-input")&&jq(element).parent().parent().parent().slideUp(200)}),jq(".dir-search, .groups-members-search").on("click",function(e){if(!jq(this).hasClass("no-ajax")){var t,i,a=jq(e.target);if("submit"===a.attr("type")){t=jq(".item-list-tabs li.selected").attr("id").split("-")[0],i=null,a=a.parent().find("#"+t+"_search").val(),"groups-members-search"===e.currentTarget.className&&(t="group_members",i="groups/single/members");e=bp_get_directory_preference(t,"scope");return bp_filter_request(t,bp_get_directory_preference(t,"filter"),e,"div."+t,a,1,bp_get_directory_preference(t,"extras"),null,i),!1}}}),jq("div.item-list-tabs").on("click",function(e){if(jq("body").hasClass("type")&&jq("body").hasClass("directory")&&jq(this).addClass("no-ajax"),!jq(this).hasClass("no-ajax")&&!jq(e.target).hasClass("no-ajax")){var t="SPAN"===e.target.nodeName?e.target.parentNode:e.target,e=jq(t).parent();if("LI"===e[0].nodeName&&!e.hasClass("last")){if("activity"===(e=(t=e.attr("id").split("-"))[0]))return!1;t=t[1];return bp_filter_request(e,jq("#"+e+"-order-select select").val(),t,"div."+e,jq("#"+e+"_search").val(),1,bp_get_directory_preference(e,"extras")),!1}}}),jq("li.filter select").on("change",function(){var e=jq(".item-list-tabs li.selected").length?jq(".item-list-tabs li.selected"):jq(this),t=e.attr("id").split("-"),i=t[0],a=t[1],s=jq(this).val(),n=!1,e=null;return jq(".dir-search input").length&&(n=jq(".dir-search input").val()),(t=jq(".groups-members-search input")).length&&(n=t.val(),i="members",a="groups"),"members"===i&&"groups"===a&&(i="group_members",e="groups/single/members"),bp_filter_request(i="friends"===i?"members":i,s,a,"div."+i,n,1,bp_get_directory_preference(i,"extras"),null,e),!1}),jq("#buddypress").on("click",function(e){var t,i,a,s=jq(e.target);if(s.hasClass("button"))return!0;if(s.parent().parent().hasClass("pagination")&&!s.parent().parent().hasClass("no-ajax")){if(s.hasClass("dots")||s.hasClass("current"))return!1;t=(n=(jq(".item-list-tabs li.selected").length?jq(".item-list-tabs li.selected"):jq("li.filter select")).attr("id").split("-"))[0],i=!1,r=jq(s).closest(".pagination-links").attr("id"),a=null,jq("div.dir-search input").length&&(i=!(i=jq(".dir-search input")).val()&&bp_get_querystring(i.attr("name"))?jq(".dir-search input").prop("placeholder"):i.val()),e=(jq(s).hasClass("next")||jq(s).hasClass("prev")?jq(".pagination span.current"):jq(s)).html(),e=Number(e.replace(/\D/g,"")),jq(s).hasClass("next")?e++:jq(s).hasClass("prev")&&e--,(s=jq(".groups-members-search input")).length&&(i=s.val(),t="members"),"members"===t&&"groups"===n[1]&&(t="group_members",a="groups/single/members"),"admin"===t&&jq("body").hasClass("membership-requests")&&(t="requests");var n=-1!==r.indexOf("pag-bottom")?"pag-bottom":null,r=bp_get_directory_preference(t,"scope");return bp_filter_request(t,bp_get_directory_preference(t,"filter"),r,"div."+t,i,e,bp_get_directory_preference(t,"extras"),n,a),!1}}),jq("#send-invite-form").on("click","#invite-list input",function(){var t,i,a=jq("#send-invite-form > .invite").length;jq(".ajax-loader").toggle(),a&&jq(this).parents("ul").find("input").prop("disabled",!0),t=jq(this).val(),i=!0===jq(this).prop("checked")?"invite":"uninvite",a||jq(".item-list-tabs li.selected").addClass("loading"),jq.post(ajaxurl,{action:"groups_invite_user",friend_action:i,cookie:bp_get_cookies(),_wpnonce:jq("#_wpnonce_invite_uninvite_user").val(),friend_id:t,group_id:jq("#group_id").val()},function(e){jq("#message")&&jq("#message").hide(),a?bp_filter_request("invite","bp-invite-filter","bp-invite-scope","div.invite",!1,1,"","",""):(jq(".ajax-loader").toggle(),"invite"===i?jq("#friend-list").append(e):"uninvite"===i&&jq("#friend-list li#uid-"+t).remove(),jq(".item-list-tabs li.selected").removeClass("loading"))})}),jq("#send-invite-form").on("click","a.remove",function(){var e=jq("#send-invite-form > .invite").length,t=jq(this).attr("id");return jq(".ajax-loader").toggle(),t=(t=t.split("-"))[1],jq.post(ajaxurl,{action:"groups_invite_user",friend_action:"uninvite",cookie:bp_get_cookies(),_wpnonce:jq("#_wpnonce_invite_uninvite_user").val(),friend_id:t,group_id:jq("#group_id").val()},function(){e?bp_filter_request("invite","bp-invite-filter","bp-invite-scope","div.invite",!1,1,"","",""):(jq(".ajax-loader").toggle(),jq("#friend-list #uid-"+t).remove(),jq("#invite-list #f-"+t).prop("checked",!1))}),!1}),jq(".visibility-toggle-link").on("click",function(e){e.preventDefault(),jq(this).attr("aria-expanded","true").parent().hide().addClass("field-visibility-settings-hide").siblings(".field-visibility-settings").show().addClass("field-visibility-settings-open")}),jq(".field-visibility-settings-close").on("click",function(e){e.preventDefault(),jq(".visibility-toggle-link").attr("aria-expanded","false");var t=jq(this).parent(),e=t.find("input:checked").parent().text();t.hide().removeClass("field-visibility-settings-open").siblings(".field-visibility-settings-toggle").find(".current-visibility-level").text(e).end().show().removeClass("field-visibility-settings-hide")}),jq("#profile-edit-form input:not(:submit), #profile-edit-form textarea, #profile-edit-form select, #signup_form input:not(:submit), #signup_form textarea, #signup_form select").on("change",function(){var t=!0;jq("#profile-edit-form input:submit, #signup_form input:submit").on("click",function(){t=!1}),window.onbeforeunload=function(e){if(t)return BP_DTheme.unsaved_changes}}),jq("#friend-list a.accept, #friend-list a.reject").on("click",function(){var e,t=jq(this),i=jq(this).parents("#friend-list li"),a=jq(this).parents("li div.action"),s=i.attr("id").substr(11,i.attr("id").length),n=t.attr("href").split("_wpnonce=")[1];return jq(this).hasClass("accepted")||jq(this).hasClass("rejected")||(jq(this).hasClass("accept")?(e="accept_friendship",a.children("a.reject").css("visibility","hidden")):(e="reject_friendship",a.children("a.accept").css("visibility","hidden")),t.addClass("loading"),jq.post(ajaxurl,{action:e,cookie:bp_get_cookies(),id:s,_wpnonce:n},function(e){t.removeClass("loading"),e[0]+e[1]==="-1"?(i.prepend(e.substr(2,e.length)),i.children("#message").hide().fadeIn(200)):t.fadeOut(100,function(){jq(this).hasClass("accept")?(a.children("a.reject").hide(),jq(this).html(BP_DTheme.accepted).contents().unwrap()):(a.children("a.accept").hide(),jq(this).html(BP_DTheme.rejected).contents().unwrap())})})),!1}),jq("#members-dir-list, #members-group-list, #item-header").on("click",".friendship-button a",function(){jq(this).parent().addClass("loading");var e=jq(this).attr("id"),t=jq(this).attr("href"),i=jq(this);return e=(e=e.split("-"))[1],t=(t=(t=t.split("?_wpnonce="))[1].split("&"))[0],jq.post(ajaxurl,{action:"addremove_friend",cookie:bp_get_cookies(),fid:e,_wpnonce:t},function(e){var t=i.attr("rel");parentdiv=i.parent(),"add"===t?jq(parentdiv).fadeOut(200,function(){parentdiv.removeClass("add_friend"),parentdiv.removeClass("loading"),parentdiv.addClass("pending_friend"),parentdiv.fadeIn(200).html(e)}):"remove"===t&&jq(parentdiv).fadeOut(200,function(){parentdiv.removeClass("remove_friend"),parentdiv.removeClass("loading"),parentdiv.addClass("add"),parentdiv.fadeIn(200).html(e)})}),!1}),jq("#buddypress").on("click",".group-button .leave-group",function(){if(!1===confirm(BP_DTheme.leave_group_confirm))return!1}),jq("#groups-dir-list").on("click",".group-button a",function(){var e=jq(this).parent().attr("id"),t=jq(this).attr("href"),s=jq(this);return e=(e=e.split("-"))[1],t=(t=(t=t.split("?_wpnonce="))[1].split("&"))[0],s.hasClass("leave-group")&&!1===confirm(BP_DTheme.leave_group_confirm)||jq.post(ajaxurl,{action:"joinleave_group",cookie:bp_get_cookies(),gid:e,_wpnonce:t},function(i){var a=s.parent();jq("body.directory").length?jq(a).fadeOut(200,function(){a.fadeIn(200).html(i);var e=jq("#groups-personal span"),t=1;s.hasClass("leave-group")?(a.hasClass("hidden")&&a.closest("li").slideUp(200),t=0):s.hasClass("request-membership")&&(t=!1),e.length&&!1!==t&&(t?e.text(1+(e.text()>>0)):e.text((e.text()>>0)-1))}):window.location.reload()}),!1}),jq("#groups-list li.hidden").each(function(){"none"===jq(this).css("display")&&jq(this).css("cssText","display: list-item !important")}),jq("#buddypress").on("click",".pending",function(){return!1}),jq("body").hasClass("register")&&((e=jq("#signup_with_blog")).prop("checked")||jq("#blog-details").toggle(),e.on("change",function(){jq("#blog-details").toggle()})),jq(".message-search").on("click",function(e){if(!jq(this).hasClass("no-ajax")){var t=jq(e.target);if("submit"===t.attr("type")||"button"===t.attr("type")){var i,a=bp_get_directory_preference(i="messages","scope"),e=bp_get_directory_preference(i,"filter"),t=bp_get_directory_preference(i,"extras");return bp_filter_request(i,e,a,"div."+i,jq("#messages_search").val(),1,t),!1}}}),jq("#send_reply_button").on("click",function(){var t=jq("#messages_order").val()||"ASC",i=jq("#message-recipients").offset(),a=jq("#send_reply_button");return jq(a).addClass("loading").prop("disabled",!0),jq.post(ajaxurl,{action:"messages_send_reply",cookie:bp_get_cookies(),_wpnonce:jq("#send_message_nonce").val(),content:jq("#message_content").val(),send_to:jq("#send_to").val(),subject:jq("#subject").val(),thread_id:jq("#thread_id").val()},function(e){e[0]+e[1]==="-1"?jq("#send-reply").prepend(e.substr(2,e.length)):(jq("#send-reply #message").remove(),jq("#message_content").val(""),"ASC"===t?jq("#send-reply").before(e):(jq("#message-recipients").after(e),jq(window).scrollTop(i.top)),jq(".new-message").hide().slideDown(200,function(){jq(".new-message").removeClass("new-message")})),jq(a).removeClass("loading").prop("disabled",!1)}),!1}),jq("body.messages #item-body div.messages").on("change","#message-type-select",function(){var e=this.value,t=jq('td input[type="checkbox"]'),i="checked";switch(t.each(function(e){t[e].checked=""}),e){case"unread":t=jq('tr.unread td input[type="checkbox"]');break;case"read":t=jq('tr.read td input[type="checkbox"]');break;case"":i=""}t.each(function(e){t[e].checked=i})}),jq("#select-all-messages").on("click",function(){this.checked?jq(".message-check").each(function(){this.checked=!0}):jq(".message-check").each(function(){this.checked=!1})}),jq("#messages-bulk-manage").attr("disabled","disabled"),jq("#messages-select").on("change",function(){jq("#messages-bulk-manage").attr("disabled",jq(this).val().length<=0)}),starAction=function(){var t=jq(this);return jq.post(ajaxurl,{action:"messages_star",message_id:t.data("message-id"),star_status:t.data("star-status"),nonce:t.data("star-nonce"),bulk:t.data("star-bulk")},function(e){1===parseInt(e,10)&&("unstar"===t.data("star-status")?(t.data("star-status","star"),t.removeClass("message-action-unstar").addClass("message-action-star"),t.find(".bp-screen-reader-text").text(BP_PM_Star.strings.text_star),1===BP_PM_Star.is_single_thread?t.attr("data-bp-tooltip",BP_PM_Star.strings.title_star):t.attr("data-bp-tooltip",BP_PM_Star.strings.title_star_thread)):(t.data("star-status","unstar"),t.removeClass("message-action-star").addClass("message-action-unstar"),t.find(".bp-screen-reader-text").text(BP_PM_Star.strings.text_unstar),1===BP_PM_Star.is_single_thread?t.attr("data-bp-tooltip",BP_PM_Star.strings.title_unstar):t.attr("data-bp-tooltip",BP_PM_Star.strings.title_unstar_thread)))}),!1},jq("#message-threads").on("click","td.thread-star a",starAction),jq("#message-thread").on("click",".message-star-actions a",starAction),jq("#message-threads td.bulk-select-check :checkbox").on("change",function(){var e=jq(this),t=e.closest("tr").find(".thread-star a");e.prop("checked")?"unstar"===t.data("star-status")?BP_PM_Star.star_counter++:BP_PM_Star.unstar_counter++:"unstar"===t.data("star-status")?BP_PM_Star.star_counter--:BP_PM_Star.unstar_counter--,0<BP_PM_Star.star_counter&&0===parseInt(BP_PM_Star.unstar_counter,10)?jq('option[value="star"]').hide():jq('option[value="star"]').show(),0<BP_PM_Star.unstar_counter&&0===parseInt(BP_PM_Star.star_counter,10)?jq('option[value="unstar"]').hide():jq('option[value="unstar"]').show()}),jq("#select-all-notifications").on("click",function(){this.checked?jq(".notification-check").each(function(){this.checked=!0}):jq(".notification-check").each(function(){this.checked=!1})}),jq("#notification-bulk-manage").attr("disabled","disabled"),jq("#notification-select").on("change",function(){jq("#notification-bulk-manage").attr("disabled",jq(this).val().length<=0)}),jq("#select-all-invitations").on("click",function(){this.checked?jq(".invitation-check").each(function(){this.checked=!0}):jq(".invitation-check").each(function(){this.checked=!1})}),jq("#invitation-bulk-manage").attr("disabled","disabled"),jq("#invitation-select").on("change",function(){jq("#invitation-bulk-manage").attr("disabled",jq(this).val().length<=0)}),jq("#close-notice").on("click",function(){return jq(this).addClass("loading"),jq("#sidebar div.error").remove(),jq.post(ajaxurl,{action:"messages_close_notice",notice_id:jq(".notice").attr("rel").substr(2,jq(".notice").attr("rel").length),nonce:jq("#close-notice-nonce").val()},function(e){jq("#close-notice").removeClass("loading"),e[0]+e[1]==="-1"?(jq(".notice").prepend(e.substr(2,e.length)),jq("#sidebar div.error").hide().fadeIn(200)):jq(".notice").slideUp(100)}),!1}),jq("#wp-admin-bar ul.main-nav li, #nav li").on("mouseover",function(){jq(this).addClass("sfhover")}),jq("#wp-admin-bar ul.main-nav li, #nav li").on("mouseout",function(){jq(this).removeClass("sfhover")}),jq("#wp-admin-bar-logout, a.logout").on("click",function(){jq.removeCookie("bp-activity-scope",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-activity-filter",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-activity-oldestpage",{path:"/",secure:"https:"===window.location.protocol});var t=["members","groups","blogs","forums"];jq(t).each(function(e){jq.removeCookie("bp-"+t[e]+"-scope",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-"+t[e]+"-filter",{path:"/",secure:"https:"===window.location.protocol}),jq.removeCookie("bp-"+t[e]+"-extras",{path:"/",secure:"https:"===window.location.protocol})})}),jq("body").hasClass("no-js")&&jq("body").attr("class",jq("body").attr("class").replace(/no-js/,"js")),"undefined"!=typeof wp&&void 0!==wp.heartbeat&&void 0!==BP_DTheme.pulse&&(wp.heartbeat.interval(Number(BP_DTheme.pulse)),jq.fn.extend({"heartbeat-send":function(){return this.bind("heartbeat-send.buddypress")}}));var a=0;jq(document).on("heartbeat-send.buddypress",function(e,t){a=0,jq("#buddypress ul.activity-list li").first().prop("id")&&(timestamp=jq("#buddypress ul.activity-list li").first().prop("class").match(/date-recorded-([0-9]+)/),timestamp&&(a=timestamp[1])),(0===activity_last_recorded||Number(a)>activity_last_recorded)&&(activity_last_recorded=Number(a)),t.bp_activity_last_recorded=activity_last_recorded,last_recorded_search=bp_get_querystring("s"),last_recorded_search&&(t.bp_activity_last_recorded_search_terms=last_recorded_search)}),jq(document).on("heartbeat-tick",function(e,t){t.bp_activity_newest_activities&&(newest_activities=t.bp_activity_newest_activities.activities+newest_activities,activity_last_recorded=Number(t.bp_activity_newest_activities.last_recorded),jq("#buddypress ul.activity-list li").first().hasClass("load-newest")||jq("#buddypress ul.activity-list").prepend('<li class="load-newest"><a href="#newest">'+BP_DTheme.newest+"</a></li>"))})});
bp-templates/bp-legacy/js/password-verify.js CHANGED
@@ -1,12 +1,17 @@
1
  /* jshint undef: false */
2
  /* @since 1.7.0 */
3
- /* @version 8.0.0 */
4
  /* Password Verify */
5
  ( function( $ ){
6
- function check_pass_strength() {
7
  var pass1 = $( '.password-entry' ).val(),
8
  pass2 = $( '.password-entry-confirm' ).val(),
9
- strength;
 
 
 
 
 
10
 
11
  // Reset classes and result text
12
  $( '#pass-strength-result' ).removeClass( 'short bad good strong' );
@@ -39,6 +44,35 @@
39
  $( '#pass-strength-result' ).addClass( 'short' ).html( pwsL10n['short'] );
40
  break;
41
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  }
43
 
44
  // Bind check_pass_strength to keyup events in the password fields
1
  /* jshint undef: false */
2
  /* @since 1.7.0 */
3
+ /* @version 10.0.0 */
4
  /* Password Verify */
5
  ( function( $ ){
6
+ function check_pass_strength( event ) {
7
  var pass1 = $( '.password-entry' ).val(),
8
  pass2 = $( '.password-entry-confirm' ).val(),
9
+ currentForm = $( '.password-entry' ).closest( 'form' ),
10
+ strength, requiredStrength;
11
+
12
+ if ( 'undefined' !== typeof window.bpPasswordVerify && window.bpPasswordVerify.requiredPassStrength ) {
13
+ requiredStrength = parseInt( window.bpPasswordVerify.requiredPassStrength, 10 );
14
+ }
15
 
16
  // Reset classes and result text
17
  $( '#pass-strength-result' ).removeClass( 'short bad good strong' );
44
  $( '#pass-strength-result' ).addClass( 'short' ).html( pwsL10n['short'] );
45
  break;
46
  }
47
+
48
+ if ( requiredStrength && 4 >= requiredStrength ) {
49
+ var passwordWarningContainer = $( currentForm ).find( '#password-warning' );
50
+
51
+ if ( strength < requiredStrength ) {
52
+ if ( ! $( passwordWarningContainer ).length ) {
53
+ $( event.currentTarget ).before(
54
+ $( '<p></p>' ).prop( 'id', 'password-warning' )
55
+ .addClass( 'description' )
56
+ );
57
+ }
58
+
59
+ $( passwordWarningContainer ).html( bpPasswordVerify.tooWeakPasswordWarning );
60
+ } else if ( $( passwordWarningContainer ).length ) {
61
+ $( passwordWarningContainer ).remove();
62
+ }
63
+
64
+ if ( ! $( currentForm ).find( '#password-strength-score' ).length ) {
65
+ $( currentForm ).prepend(
66
+ $('<input></input>').prop( {
67
+ id: 'password-strength-score',
68
+ type: 'hidden',
69
+ 'name': '_password_strength_score'
70
+ } )
71
+ );
72
+ }
73
+
74
+ $( '#password-strength-score' ).val( strength );
75
+ }
76
  }
77
 
78
  // Bind check_pass_strength to keyup events in the password fields
bp-templates/bp-legacy/js/password-verify.min.js CHANGED
@@ -1 +1 @@
1
- !function(r){function s(){var s=r(".password-entry").val(),t=r(".password-entry-confirm").val();if(r("#pass-strength-result").removeClass("short bad good strong"),s)switch("function"==typeof wp.passwordStrength.userInputDisallowedList?wp.passwordStrength.meter(s,wp.passwordStrength.userInputDisallowedList(),t):wp.passwordStrength.meter(s,wp.passwordStrength.userInputBlacklist(),t)){case 2:r("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:r("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:r("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:r("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:r("#pass-strength-result").addClass("short").html(pwsL10n.short)}else r("#pass-strength-result").html(pwsL10n.empty)}r(function(){r(".password-entry").val("").on("keyup",s),r(".password-entry-confirm").val("").on("keyup",s)})}(jQuery);
1
+ !function(n){function s(s){var r,t=n(".password-entry").val(),e=n(".password-entry-confirm").val(),a=n(".password-entry").closest("form");if(void 0!==window.bpPasswordVerify&&window.bpPasswordVerify.requiredPassStrength&&(r=parseInt(window.bpPasswordVerify.requiredPassStrength,10)),n("#pass-strength-result").removeClass("short bad good strong"),t){switch(t="function"==typeof wp.passwordStrength.userInputDisallowedList?wp.passwordStrength.meter(t,wp.passwordStrength.userInputDisallowedList(),e):wp.passwordStrength.meter(t,wp.passwordStrength.userInputBlacklist(),e)){case 2:n("#pass-strength-result").addClass("bad").html(pwsL10n.bad);break;case 3:n("#pass-strength-result").addClass("good").html(pwsL10n.good);break;case 4:n("#pass-strength-result").addClass("strong").html(pwsL10n.strong);break;case 5:n("#pass-strength-result").addClass("short").html(pwsL10n.mismatch);break;default:n("#pass-strength-result").addClass("short").html(pwsL10n.short)}r&&r<=4&&(e=n(a).find("#password-warning"),t<r?(n(e).length||n(s.currentTarget).before(n("<p></p>").prop("id","password-warning").addClass("description")),n(e).html(bpPasswordVerify.tooWeakPasswordWarning)):n(e).length&&n(e).remove(),n(a).find("#password-strength-score").length||n(a).prepend(n("<input></input>").prop({id:"password-strength-score",type:"hidden",name:"_password_strength_score"})),n("#password-strength-score").val(t))}else n("#pass-strength-result").html(pwsL10n.empty)}n(function(){n(".password-entry").val("").on("keyup",s),n(".password-entry-confirm").val("").on("keyup",s)})}(jQuery);
bp-templates/bp-nouveau/buddypress-functions.php CHANGED
@@ -384,22 +384,6 @@ class BP_Nouveau extends BP_Theme_Compat {
384
  return;
385
  }
386
 
387
- // Add The password verify if needed.
388
- if ( bp_is_active( 'settings' ) || bp_get_signup_allowed() ) {
389
- /**
390
- * BP Nouveau is now directly using the `wp-admin/js/user-profile.js` script.
391
- *
392
- * Setting the user password is now more consistent with how WordPress handles it.
393
- *
394
- * @deprecated 5.0.0
395
- */
396
- $scripts['bp-nouveau-password-verify'] = array(
397
- 'file' => 'js/password-verify%s.js',
398
- 'dependencies' => array( 'bp-nouveau', 'password-strength-meter' ),
399
- 'footer' => true,
400
- );
401
- }
402
-
403
  foreach ( $scripts as $handle => $script ) {
404
  if ( ! isset( $script['file'] ) ) {
405
  continue;
@@ -532,6 +516,14 @@ class BP_Nouveau extends BP_Theme_Compat {
532
  $params['customizer_settings'] = bp_nouveau_get_temporary_setting( 'any' );
533
  }
534
 
 
 
 
 
 
 
 
 
535
  /**
536
  * Filters core JavaScript strings for internationalization before AJAX usage.
537
  *
384
  return;
385
  }
386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  foreach ( $scripts as $handle => $script ) {
388
  if ( ! isset( $script['file'] ) ) {
389
  continue;
516
  $params['customizer_settings'] = bp_nouveau_get_temporary_setting( 'any' );
517
  }
518
 
519
+ $required_password_strength = bp_members_user_pass_required_strength();
520
+ if ( $required_password_strength ) {
521
+ $params['bpPasswordVerify'] = array(
522
+ 'tooWeakPasswordWarning' => __( 'Your password is too weak, please use a stronger password.', 'buddypress' ),
523
+ 'requiredPassStrength' => bp_members_user_pass_required_strength(),
524
+ );
525
+ }
526
+
527
  /**
528
  * Filters core JavaScript strings for internationalization before AJAX usage.
529
  *
bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php CHANGED
@@ -6,27 +6,20 @@
6
  * dealing with a group's membership management.
7
  *
8
  * @since 5.0.0
9
- * @version 5.0.0
10
  */
11
- ?>
12
 
13
- <?php
14
- /**
15
- * Placeholder to inject elements of the UI
16
- * to manage Group members.
17
- *
18
- * @since 5.0.0
19
- * @version 5.0.0
20
- */
 
 
21
  ?>
22
- <div id="group-manage-members-ui" class="standard-form">
23
- <ul class="subnav-filters">
24
- <li id="group-roles-filter" class="last filter"><?php // Placeholder for the Group Role Tabs ?></li>
25
- <li id="group-members-pagination" class="left-menu"><?php // Placeholder for paginate links ?></li>
26
- <li id="group-members-search-form" class="bp-search"><?php // Placeholder for search form ?></li>
27
- </ul>
28
- <table id="group-members-list-table" class="<?php echo is_admin() ? 'widefat bp-group-members' : 'bp-list'; ?>"><?php // Placeholder to list members ?></table>
29
- </div>
30
 
31
  <script type="text/html" id="tmpl-bp-manage-members-updating">
32
  <# if ( ! data.type ) { #>
6
  * dealing with a group's membership management.
7
  *
8
  * @since 5.0.0
9
+ * @version 10.0.0
10
  */
 
11
 
12
+ // Backward Compatibility for plugins still needing the placeholders to be located into this file.
13
+ if ( ! did_action( '_bp_groups_print_manage_group_members_placeholders' ) ) {
14
+ /**
15
+ * Placeholders to inject elements of the UI
16
+ * to manage Group members.
17
+ *
18
+ * @since 5.0.0
19
+ */
20
+ bp_groups_print_manage_group_members_placeholders();
21
+ }
22
  ?>
 
 
 
 
 
 
 
 
23
 
24
  <script type="text/html" id="tmpl-bp-manage-members-updating">
25
  <# if ( ! data.type ) { #>
bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php CHANGED
@@ -6,35 +6,20 @@
6
  * dealing with invites.
7
  *
8
  * @since 3.0.0
9
- * @version 6.0.0
10
  */
11
- ?>
12
-
13
- <?php if ( bp_is_group_create() ) : ?>
14
-
15
- <h3 class="bp-screen-title creation-step-name">
16
- <?php esc_html_e( 'Invite Members', 'buddypress' ); ?>
17
- </h3>
18
-
19
- <?php else : ?>
20
-
21
- <h2 class="bp-screen-title">
22
- <?php esc_html_e( 'Invite Members', 'buddypress' ); ?>
23
- </h2>
24
-
25
- <?php endif; ?>
26
 
27
- <div id="group-invites-container">
28
-
29
- <nav class="<?php bp_nouveau_single_item_subnav_classes(); ?>" id="subnav" role="navigation" aria-label="<?php esc_attr_e( 'Group invitations menu', 'buddypress' ); ?>"></nav>
30
-
31
- <div class="group-invites-column">
32
- <div class="subnav-filters group-subnav-filters bp-invites-filters"></div>
33
- <div class="bp-invites-feedback"></div>
34
- <div class="members bp-invites-content"></div>
35
- </div>
36
-
37
- </div>
38
 
39
  <script type="text/html" id="tmpl-bp-group-invites-feedback">
40
  <div class="bp-feedback {{data.type}}">
@@ -57,10 +42,10 @@
57
  {{data.name}}
58
  </div>
59
 
60
- <# if ( undefined !== data.is_sent ) { #>
61
  <div class="item-meta">
62
 
63
- <# if ( undefined !== data.invited_by ) { #>
64
  <ul class="group-inviters">
65
  <li><?php esc_html_e( 'Invited by:', 'buddypress' ); ?></li>
66
  <# for ( i in data.invited_by ) { #>
@@ -82,7 +67,7 @@
82
  </div>
83
 
84
  <div class="action">
85
- <# if ( undefined === data.is_sent || ( false === data.is_sent && true === data.can_edit ) ) { #>
86
  <button type="button" class="button invite-button group-add-remove-invite-button bp-tooltip bp-icons<# if ( data.selected ) { #> selected<# } #>" data-bp-tooltip="<# if ( data.selected ) { #><?php esc_attr_e( 'Cancel invitation', 'buddypress' ); ?><# } else { #><?php echo esc_attr_x( 'Invite', 'button', 'buddypress' ); ?><# } #>">
87
  <span class="icons" aria-hidden="true"></span>
88
  <span class="bp-screen-reader-text">
@@ -95,7 +80,7 @@
95
  </button>
96
  <# } #>
97
 
98
- <# if ( undefined !== data.can_edit && true === data.can_edit ) { #>
99
  <button type="button" class="button invite-button group-remove-invite-button bp-tooltip bp-icons" data-bp-tooltip="<?php echo esc_attr_x( 'Cancel invitation', 'button', 'buddypress' ); ?>">
100
  <span class=" icons" aria-hidden="true"></span>
101
  <span class="bp-screen-reader-text"><?php echo esc_attr_x( 'Cancel invitation', 'button', 'buddypress' ); ?></span>
6
  * dealing with invites.
7
  *
8
  * @since 3.0.0
9
+ * @version 10.0.0
10
  */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
+ // Backward Compatibility for plugins still needing the placeholders to be located into this file.
13
+ if ( ! did_action( '_bp_nouveau_group_print_invites_placeholders' ) ) {
14
+ /**
15
+ * Placeholders to inject elements of the UI
16
+ * to manage Group members.
17
+ *
18
+ * @since 5.0.0
19
+ */
20
+ bp_nouveau_group_print_invites_placeholders();
21
+ }
22
+ ?>
23
 
24
  <script type="text/html" id="tmpl-bp-group-invites-feedback">
25
  <div class="bp-feedback {{data.type}}">
42
  {{data.name}}
43
  </div>
44
 
45
+ <# if ( 'invited' === data.scope ) { #>
46
  <div class="item-meta">
47
 
48
+ <# if ( data.invited_by.length > 0 ) { #>
49
  <ul class="group-inviters">
50
  <li><?php esc_html_e( 'Invited by:', 'buddypress' ); ?></li>
51
  <# for ( i in data.invited_by ) { #>
67
  </div>
68
 
69
  <div class="action">
70
+ <# if ( true === data.can_invite ) { #>
71
  <button type="button" class="button invite-button group-add-remove-invite-button bp-tooltip bp-icons<# if ( data.selected ) { #> selected<# } #>" data-bp-tooltip="<# if ( data.selected ) { #><?php esc_attr_e( 'Cancel invitation', 'buddypress' ); ?><# } else { #><?php echo esc_attr_x( 'Invite', 'button', 'buddypress' ); ?><# } #>">
72
  <span class="icons" aria-hidden="true"></span>
73
  <span class="bp-screen-reader-text">
80
  </button>
81
  <# } #>
82
 
83
+ <# if ( true === data.can_edit ) { #>
84
  <button type="button" class="button invite-button group-remove-invite-button bp-tooltip bp-icons" data-bp-tooltip="<?php echo esc_attr_x( 'Cancel invitation', 'button', 'buddypress' ); ?>">
85
  <span class=" icons" aria-hidden="true"></span>
86
  <span class="bp-screen-reader-text"><?php echo esc_attr_x( 'Cancel invitation', 'button', 'buddypress' ); ?></span>
bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php CHANGED
@@ -189,6 +189,12 @@
189
  <span class="bp-screen-reader-text"><?php esc_html_e( 'Delete conversation.', 'buddypress' ); ?></span>
190
  </button>
191
 
 
 
 
 
 
 
192
  <# if ( undefined !== data.star_link ) { #>
193
 
194
  <# if ( false !== data.is_starred ) { #>
@@ -250,6 +256,12 @@
250
  <button type="button" class="message-action-delete bp-tooltip bp-icons" data-bp-action="delete" data-bp-tooltip="<?php esc_attr_e( 'Delete conversation.', 'buddypress' ); ?>">
251
  <span class="bp-screen-reader-text"><?php esc_html_e( 'Delete conversation.', 'buddypress' ); ?></span>
252
  </button>
 
 
 
 
 
 
253
  </div>
254
  </header>
255
  </script>
189
  <span class="bp-screen-reader-text"><?php esc_html_e( 'Delete conversation.', 'buddypress' ); ?></span>
190
  </button>
191
 
192
+ <# if ( undefined !== data.recipients && data.recipients.length > 2 ) { #>
193
+ <button type="button" class="message-action-exit bp-tooltip bp-icons" data-bp-action="exit" data-bp-tooltip="<?php esc_attr_e( 'Exit conversation.', 'buddypress' ); ?>">
194
+ <span class="bp-screen-reader-text"><?php esc_html_e( 'Exit conversation.', 'buddypress' ); ?></span>
195
+ </button>
196
+ <# } #>
197
+
198
  <# if ( undefined !== data.star_link ) { #>
199
 
200
  <# if ( false !== data.is_starred ) { #>
256
  <button type="button" class="message-action-delete bp-tooltip bp-icons" data-bp-action="delete" data-bp-tooltip="<?php esc_attr_e( 'Delete conversation.', 'buddypress' ); ?>">
257
  <span class="bp-screen-reader-text"><?php esc_html_e( 'Delete conversation.', 'buddypress' ); ?></span>
258
  </button>
259
+
260
+ <# if ( undefined !== data.recipients && data.recipients.length > 2 ) { #>
261
+ <button type="button" class="message-action-exit bp-tooltip bp-icons" data-bp-action="exit" data-bp-tooltip="<?php esc_attr_e( 'Exit conversation.', 'buddypress' ); ?>">
262
+ <span class="bp-screen-reader-text"><?php esc_html_e( 'Exit conversation.', 'buddypress' ); ?></span>
263
+ </button>
264
+ <# } #>
265
  </div>
266
  </header>
267
  </script>
bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php CHANGED
@@ -10,13 +10,13 @@
10
  <?php if ( bp_is_group_create() ) : ?>
11
 
12
  <h3 class="bp-screen-title creation-step-name">
13
- <?php esc_html_e( 'Upload Group Avatar', 'buddypress' ); ?>
14
  </h3>
15
 
16
  <?php else : ?>
17
 
18
  <h2 class="bp-screen-title">
19
- <?php esc_html_e( 'Change Group Avatar', 'buddypress' ); ?>
20
  </h2>
21
 
22
  <?php endif; ?>
10
  <?php if ( bp_is_group_create() ) : ?>
11
 
12
  <h3 class="bp-screen-title creation-step-name">
13
+ <?php esc_html_e( 'Upload Group profile photo', 'buddypress' ); ?>
14
  </h3>
15
 
16
  <?php else : ?>
17
 
18
  <h2 class="bp-screen-title">
19
+ <?php esc_html_e( 'Change Group profile photo', 'buddypress' ); ?>
20
  </h2>
21
 
22
  <?php endif; ?>
bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php CHANGED
@@ -3,7 +3,7 @@
3
  * BP Nouveau Group's manage members template.
4
  *
5
  * @since 3.0.0
6
- * @version 5.0.0
7
  */
8
  ?>
9
 
@@ -14,12 +14,8 @@
14
  <p class="bp-help-text"><?php esc_html_e( 'Manage your group members; promote to moderators, admins or demote or ban.', 'buddypress' ); ?></p>
15
 
16
  <?php if ( bp_rest_api_is_available() ) :
17
- /**
18
- * Get the templates to manage Group Members using the BP REST API.
19
- *
20
- * @since 5.0.0
21
- */
22
- bp_get_template_part( 'common/js-templates/group-members/index' );
23
 
24
  else : ?>
25
 
3
  * BP Nouveau Group's manage members template.
4
  *
5
  * @since 3.0.0
6
+ * @version 10.0.0
7
  */
8
  ?>
9
 
14
  <p class="bp-help-text"><?php esc_html_e( 'Manage your group members; promote to moderators, admins or demote or ban.', 'buddypress' ); ?></p>
15
 
16
  <?php if ( bp_rest_api_is_available() ) :
17
+
18
+ bp_groups_manage_group_members_interface();
 
 
 
 
19
 
20
  else : ?>
21
 
bp-templates/bp-nouveau/css/buddypress-rtl.css CHANGED
@@ -3071,7 +3071,8 @@ body.register .buddypress-wrap .page ul {
3071
  .message-action-star:before,
3072
  .message-action-unstar:before,
3073
  .message-action-view:before,
3074
- .message-action-delete:before {
 
3075
  font-family: dashicons;
3076
  font-size: 18px;
3077
  }
@@ -3094,6 +3095,10 @@ body.register .buddypress-wrap .page ul {
3094
  content: "\f153";
3095
  }
3096
 
 
 
 
 
3097
  .message-action-delete:hover:before {
3098
  color: #a00;
3099
  }
3071
  .message-action-star:before,
3072
  .message-action-unstar:before,
3073
  .message-action-view:before,
3074
+ .message-action-delete:before,
3075
+ .message-action-exit:before {
3076
  font-family: dashicons;
3077
  font-size: 18px;
3078
  }
3095
  content: "\f153";
3096
  }
3097
 
3098
+ .message-action-exit:before {
3099
+ content: "\f14a";
3100
+ }
3101
+
3102
  .message-action-delete:hover:before {
3103
  color: #a00;
3104
  }
bp-templates/bp-nouveau/css/buddypress-rtl.min.css CHANGED
@@ -1 +1 @@
1
- body #buddypress * a{box-shadow:none;text-decoration:none}body #buddypress div,body #buddypress dl,body #buddypress input[type=reset],body #buddypress input[type=search],body #buddypress input[type=submit],body #buddypress li,body #buddypress select,body #buddypress textarea{border-radius:2px;background-clip:padding-box}body #buddypress #item-body blockquote,body #buddypress .bp-lists blockquote{margin-right:0}body #buddypress .bp-list .action{box-sizing:border-box}@media screen and (min-width:46.8em){body.buddypress .entry-content:not(.alignwide):not(.alignfull),body.buddypress .entry-header:not(.alignwide):not(.alignfull),body.buddypress .site-content .entry-header:not(.alignwide):not(.alignfull){max-width:none}body.buddypress .entry-header{float:none}body.buddypress .entry-content{float:none}body.buddypress .site-content{padding-top:2.5em}body.buddypress #page #primary{max-width:none}body.buddypress #page #primary .entry-content,body.buddypress #page #primary .entry-header{float:none;width:auto}}body.buddypress .buddypress-wrap h1,body.buddypress .buddypress-wrap h2,body.buddypress .buddypress-wrap h3,body.buddypress .buddypress-wrap h4,body.buddypress .buddypress-wrap h5,body.buddypress .buddypress-wrap h6{clear:none;margin:1em 0;padding:0}body.buddypress .buddypress-wrap h2:before{display:none}.bp-wrap:after,.bp-wrap:before{content:" ";display:table}.bp-wrap:after{clear:both}.buddypress-wrap.round-avatars .avatar{border-radius:50%}body.buddypress article.page>.entry-header{margin-bottom:2em;padding:0}body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:28px;font-weight:inherit;color:#767676}@media screen and (min-width:46.8em){body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:34px}}.buddypress-wrap dt.section-title{font-size:18px}@media screen and (min-width:46.8em){.buddypress-wrap dt.section-title{font-size:22px}}.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:16px}}.buddypress-wrap .activity-header{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-header{font-size:16px}}.buddypress-wrap .activity-inner{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-inner{font-size:18px}}.buddypress-wrap #whats-new-post-in{font-size:16px}.buddypress-wrap .acomment-meta,.buddypress-wrap .mini .activity-header{font-size:16px}.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:16px}}.buddypress-wrap .bp-tables-user th{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user th{font-size:16px}}.buddypress-wrap .bp-tables-user td{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user td{font-size:14px}}.buddypress-wrap .profile-fields th{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields th{font-size:18px}}.buddypress-wrap .profile-fields td{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields td{font-size:16px}}.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:14px}}.bp-navs{background:0 0;clear:both;overflow:hidden}.bp-navs ul{margin:0;padding:0}.bp-navs ul li{list-style:none;margin:0}.bp-navs ul li.last select{max-width:185px}.bp-navs ul li a,.bp-navs ul li span{border:0;display:block;padding:5px 10px;text-decoration:none}.bp-navs ul li .count{background:#eaeaea;border:1px solid #ccc;border-radius:50%;color:#555;display:inline;font-size:12px;margin-right:2px;padding:3px 6px;text-align:center;vertical-align:middle}.bp-navs ul li.current a,.bp-navs ul li.selected a{color:#333;opacity:1}.bp-navs.bp-invites-filters ul li a,.bp-navs.bp-messages-filters ul li a{border:1px solid #ccc;display:inline-block}.main-navs.dir-navs{margin-bottom:20px}.buddypress-wrap .bp-navs li a:hover a .count,.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count{background-color:#ccc}.buddypress-wrap .bp-navs li:not(.current) a:focus,.buddypress-wrap .bp-navs li:not(.current) a:hover,.buddypress-wrap .bp-navs li:not(.selected) a:focus,.buddypress-wrap .bp-navs li:not(.selected) a:hover{background:#ccc;color:#333}.buddypress-wrap .bp-navs li.current a,.buddypress-wrap .bp-navs li.current a:focus,.buddypress-wrap .bp-navs li.current a:hover,.buddypress-wrap .bp-navs li.selected a,.buddypress-wrap .bp-navs li.selected a:focus,.buddypress-wrap .bp-navs li.selected a:hover{background:#555;color:#fafafa}@media screen and (min-width:46.8em){.buddypress-wrap .main-navs:not(.dir-navs) li.current a,.buddypress-wrap .main-navs:not(.dir-navs) li.selected a{background:#fff;color:#333;font-weight:600}.buddypress-wrap .main-navs.vertical li.current a,.buddypress-wrap .main-navs.vertical li.selected a{background:#555;color:#fafafa;text-decoration:none}.buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border-bottom:1px solid #eee;border-top:1px solid #eee;box-shadow:0 2px 12px 0 #fafafa}}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.selected a{background:#fff;color:#333;font-weight:600}@media screen and (max-width:46.8em){.buddypress-wrap:not(.bp-single-vert-nav) .bp-navs li{background:#eaeaea}}.buddypress-wrap:not(.bp-single-vert-nav) .main-navs>ul>li>a{padding:.5em calc(.5em + 2px)}.buddypress-wrap:not(.bp-single-vert-nav) .group-subnav#subsubnav,.buddypress-wrap:not(.bp-single-vert-nav) .user-subnav#subsubnav{background:0 0}.buddypress-wrap .bp-subnavs,.buddypress-wrap ul.subnav{width:100%}.buddypress-wrap .bp-subnavs{margin:10px 0;overflow:hidden}.buddypress-wrap .bp-subnavs ul li{margin-top:0}.buddypress-wrap .bp-subnavs ul li.current :focus,.buddypress-wrap .bp-subnavs ul li.current :hover,.buddypress-wrap .bp-subnavs ul li.selected :focus,.buddypress-wrap .bp-subnavs ul li.selected :hover{background:0 0;color:#333}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap .bp-navs.bp-invites-filters#subsubnav ul li.last,.buddypress-wrap .bp-navs.bp-invites-nav#subnav ul li.last,.buddypress-wrap .bp-navs.bp-messages-filters#subsubnav ul li.last{margin-top:0}@media screen and (max-width:46.8em){.buddypress-wrap .single-screen-navs{border:1px solid #eee}.buddypress-wrap .single-screen-navs li{border-bottom:1px solid #eee}.buddypress-wrap .single-screen-navs li:last-child{border-bottom:none}.buddypress-wrap .bp-subnavs li a{font-size:14px}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.current a:focus,.buddypress-wrap .bp-subnavs li.current a:hover,.buddypress-wrap .bp-subnavs li.selected a,.buddypress-wrap .bp-subnavs li.selected a:focus,.buddypress-wrap .bp-subnavs li.selected a:hover{background:#555;color:#fff}}.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count,.buddypress_object_nav .bp-navs li.current a .count,.buddypress_object_nav .bp-navs li.selected a .count{background-color:#fff}.buddypress-wrap .bp-navs li.dynamic a .count,.buddypress-wrap .bp-navs li.dynamic.current a .count,.buddypress-wrap .bp-navs li.dynamic.selected a .count,.buddypress_object_nav .bp-navs li.dynamic a .count,.buddypress_object_nav .bp-navs li.dynamic.current a .count,.buddypress_object_nav .bp-navs li.dynamic.selected a .count{background-color:#5087e5;border:0;color:#fafafa}.buddypress-wrap .bp-navs li.dynamic a:hover .count,.buddypress_object_nav .bp-navs li.dynamic a:hover .count{background-color:#5087e5;border:0;color:#fff}.buddypress-wrap .bp-navs li a .count:empty,.buddypress_object_nav .bp-navs li a .count:empty{display:none}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current),.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current){color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:hover{background:0 0;color:#333}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li.current a,.buddypress_object_nav .bp-navs.group-create-links ul li.current a{text-align:center}@media screen and (min-width:46.8em){.buddypress-wrap .bp-navs li{float:right}.buddypress-wrap .subnav{float:right}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap #subsubnav .activity-search{float:right}.buddypress-wrap #subsubnav .filter{float:left}}.buddypress_object_nav .bp-navs li a .count{display:inline-block;float:left}@media screen and (min-width:46.8em){.bp-dir-vert-nav .bp-navs.dir-navs{background:0 0}.bp-dir-vert-nav .bp-navs.dir-navs a .count{float:left}}@media screen and (min-width:46.8em){.buddypress-wrap .tabbed-links ol,.buddypress-wrap .tabbed-links ul{border-bottom:1px solid #ccc;float:none;margin:20px 0 10px}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ol:before,.buddypress-wrap .tabbed-links ul:after,.buddypress-wrap .tabbed-links ul:before{content:" ";display:block}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ul:after{clear:both}.buddypress-wrap .tabbed-links ol li,.buddypress-wrap .tabbed-links ul li{float:right;list-style:none;margin:0 0 0 10px}.buddypress-wrap .tabbed-links ol li a,.buddypress-wrap .tabbed-links ol li span:not(.count),.buddypress-wrap .tabbed-links ul li a,.buddypress-wrap .tabbed-links ul li span:not(.count){background:0 0;border:none;display:block;padding:4px 10px}.buddypress-wrap .tabbed-links ol li a:focus,.buddypress-wrap .tabbed-links ol li a:hover,.buddypress-wrap .tabbed-links ul li a:focus,.buddypress-wrap .tabbed-links ul li a:hover{background:0 0}.buddypress-wrap .tabbed-links ol li:not(.current),.buddypress-wrap .tabbed-links ul li:not(.current){margin-bottom:2px}.buddypress-wrap .tabbed-links ol li.current,.buddypress-wrap .tabbed-links ul li.current{border-color:#ccc #ccc #fff;border-style:solid;border-top-right-radius:4px;border-top-left-radius:4px;border-width:1px;margin-bottom:-1px;padding:0 .5em 1px}.buddypress-wrap .tabbed-links ol li.current a,.buddypress-wrap .tabbed-links ul li.current a{background:0 0;color:#333}.buddypress-wrap .bp-subnavs.tabbed-links>ul{margin-top:0}.buddypress-wrap .bp-navs.tabbed-links{background:0 0;margin-top:2px}.buddypress-wrap .bp-navs.tabbed-links ul li a{border-left:0;font-size:inherit}.buddypress-wrap .bp-navs.tabbed-links ul li.last{float:left;margin:0}.buddypress-wrap .bp-navs.tabbed-links ul li.last a{margin-top:-.5em}.buddypress-wrap .bp-navs.tabbed-links ul li a,.buddypress-wrap .bp-navs.tabbed-links ul li a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li a:hover,.buddypress-wrap .bp-navs.tabbed-links ul li.current a,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:hover{background:0 0;border:0}.buddypress-wrap .bp-navs.tabbed-links ul li a:active,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:active{outline:0}}.buddypress-wrap .dir-component-filters .filter label{display:inline}.buddypress-wrap .subnav-filters:after,.buddypress-wrap .subnav-filters:before{content:" ";display:table}.buddypress-wrap .subnav-filters:after{clear:both}.buddypress-wrap .subnav-filters{background:0 0;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .subnav-filters div{margin:0}.buddypress-wrap .subnav-filters>ul{float:right;list-style:none}.buddypress-wrap .subnav-filters.bp-messages-filters ul{width:100%}.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:1em}@media screen and (min-width:46.8em){.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:0}}.buddypress-wrap .subnav-filters div{float:none}.buddypress-wrap .subnav-filters div input[type=search],.buddypress-wrap .subnav-filters div select{font-size:16px}.buddypress-wrap .subnav-filters div button.nouveau-search-submit{padding:5px .8em 6px}.buddypress-wrap .subnav-filters div button#user_messages_search_submit{padding:7px .8em}.buddypress-wrap .subnav-filters .component-filters{margin-top:10px}.buddypress-wrap .subnav-filters .feed{margin-left:15px}.buddypress-wrap .subnav-filters .last.filter label{display:inline}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:before{content:" ";display:table}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after{clear:both}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-show{display:inline-block}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-hide{display:none}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap{border:0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:focus,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:hover{outline:1px solid #d6d6d6}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions{float:right}.buddypress-wrap .subnav-filters .user-messages-bulk-actions label{display:inline-block;font-weight:300;margin-left:25px;padding:5px 0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions div select{-webkit-appearance:textfield}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply{border:0;border-radius:0;font-weight:400;line-height:1.8;margin:0 10px 0 0;padding:3px 5px;text-align:center;text-transform:none;width:auto}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}@media screen and (min-width:32em){.buddypress-wrap .subnav-filters li{margin-bottom:0}.buddypress-wrap .subnav-filters .bp-search,.buddypress-wrap .subnav-filters .dir-search,.buddypress-wrap .subnav-filters .feed,.buddypress-wrap .subnav-filters .group-act-search,.buddypress-wrap .subnav-filters .group-invites-search,.buddypress-wrap .subnav-filters .subnav-search,.buddypress-wrap .subnav-filters .subnav-search form,.buddypress-wrap .subnav-filters .user-messages-bulk-actions,.buddypress-wrap .subnav-filters .user-messages-search{float:right}.buddypress-wrap .subnav-filters .component-filters,.buddypress-wrap .subnav-filters .last{float:left;margin-top:0;width:auto}.buddypress-wrap .subnav-filters .component-filters select,.buddypress-wrap .subnav-filters .last select{max-width:250px}.buddypress-wrap .subnav-filters .user-messages-search{float:left}}.buddypress-wrap .invitations-options-nav input#invitation-bulk-manage,.buddypress-wrap .notifications-options-nav input#notification-bulk-manage{border:0;border-radius:0;line-height:1.6}.buddypress-wrap .group-subnav-filters .group-invites-search{margin-bottom:1em}.buddypress-wrap .group-subnav-filters .last{text-align:center}.buddypress-wrap .bp-pagination{background:0 0;border:0;color:#767676;float:right;font-size:small;margin:0;padding:.5em 0;position:relative;width:100%}.buddypress-wrap .bp-pagination .pag-count{float:right}.buddypress-wrap .bp-pagination .bp-pagination-links{float:left;margin-left:10px}.buddypress-wrap .bp-pagination .bp-pagination-links a,.buddypress-wrap .bp-pagination .bp-pagination-links span{font-size:small;padding:0 5px}.buddypress-wrap .bp-pagination .bp-pagination-links a:focus,.buddypress-wrap .bp-pagination .bp-pagination-links a:hover{opacity:1}.buddypress-wrap .bp-pagination p{margin:0}.bp-list:after,.bp-list:before{content:" ";display:table}.bp-list:after{clear:both}.bp-list{box-sizing:border-box;border-top:1px solid #eaeaea;clear:both;list-style:none;margin:20px 0;padding:.5em 0;width:100%}.bp-list li:after,.bp-list li:before{content:" ";display:table}.bp-list li:after{clear:both}.bp-list>li{border-bottom:1px solid #eaeaea}.bp-list li{list-style:none;margin:10px 0;padding:.5em 0;position:relative}.bp-list li .item-avatar{text-align:center}.bp-list li .item-avatar img.avatar{display:inline-block;width:auto;height:auto}.bp-list li .item .group-details,.bp-list li .item .item-avatar,.bp-list li .item .item-meta,.bp-list li .item .list-title{text-align:center}.bp-list li .item .list-title{clear:none;font-size:22px;font-weight:400;line-height:1.1;margin:0 auto}@media screen and (min-width:46.8em){.bp-list li .item .list-title{font-size:26px}}.bp-list li .item-meta,.bp-list li .meta{color:#737373;font-size:12px;margin-bottom:10px;margin-top:10px}.bp-list li .last-post{text-align:center}.bp-list li .action{margin:0;text-align:center}.bp-list li .action .generic-button{display:inline-block;font-size:12px;margin:0 0 0 10px}.bp-list li .action div.generic-button{margin:10px 0}@media screen and (min-width:46.8em){.bp-list li .item-avatar{float:right;margin-left:5%}.bp-list li .item{margin:0;overflow:hidden}.bp-list li .item .item-block{float:right;margin-left:2%;width:50%}.bp-list li .item .item-meta,.bp-list li .item .list-title{float:right;text-align:right}.bp-list li .item .group-details,.bp-list li .item .last-post{text-align:right}.bp-list li .group-desc,.bp-list li .last-post,.bp-list li .user-update{clear:none;overflow:hidden;width:auto}.bp-list li .action{clear:right;padding:0;text-align:right}.bp-list li .action li.generic-button{margin-left:0}.bp-list li .action div.generic-button{margin:0 0 10px}.bp-list li .generic-button{display:block;margin:0 0 5px 0}}@media screen and (min-width:32em){#activity-stream{clear:both;padding-top:1em}}.activity-list.bp-list{background:#fafafa;border:1px solid #eee}.activity-list.bp-list .activity-item{background:#fff;border:1px solid #b7b7b7;box-shadow:0 0 6px #d2d2d2;margin:20px 0}.activity-list.bp-list li:first-child{margin-top:0}.friends-list{list-style-type:none}.friends-request-list .item-title,.membership-requests-list .item-title{text-align:center}@media screen and (min-width:46.8em){.friends-request-list li,.membership-requests-list li{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap}.friends-request-list li .item,.membership-requests-list li .item{-moz-flex:1 1 auto;-o-flex:1 1 auto;flex:1 1 auto}.friends-request-list li .action,.membership-requests-list li .action{text-align:left}.friends-request-list li .item-title,.membership-requests-list li .item-title{font-size:22px;text-align:right}.friends-request-list li .item-title h3,.membership-requests-list li .item-title h3{margin:0}}#notifications-user-list{clear:both;padding-top:1em}@media screen and (min-width:46.8em){body:not(.logged-in) .bp-list .item{margin-left:0}}.activity-permalink .item-list,.activity-permalink .item-list li.activity-item{border:0}.activity-update-form{padding:10px 10px 0}.item-body .activity-update-form .activity-form{margin:0;padding:0}.activity-update-form{border:1px solid #ccc;box-shadow:inset 0 0 6px #eee;margin:15px 0}.activity-update-form #whats-new-avatar{margin:10px 0;text-align:center}.activity-update-form #whats-new-avatar img{box-shadow:none;display:inline-block;height:auto;width:auto}.activity-update-form #whats-new-content{padding:0 0 20px 0}.activity-update-form #whats-new-textarea textarea{background:#fff;box-sizing:border-box;color:#333;font-family:inherit;font-size:medium;height:2.2em;line-height:1.4;padding:6px;width:100%}.activity-update-form #whats-new-textarea textarea:focus{box-shadow:0 0 6px 0 #d6d6d6}.activity-update-form #whats-new-post-in-box{margin:10px 0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items{list-style:none;margin:10px 0;padding-right:0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:10px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item{margin-right:10px;height:auto}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete{padding:.3em;width:100%}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object{display:flex;align-items:center;padding:.2em}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar{width:30px;height:30px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object span{padding-right:10px;vertical-align:middle}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:focus,.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:hover{background:#eaeaea;cursor:pointer}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object.selected{border:1px solid #d6d6d6}.activity-update-form #whats-new-submit{margin:15px 0 10px}.activity-update-form #whats-new-submit input{font-size:14px;line-height:inherit;margin-bottom:10px;margin-left:10px;padding:.2em 0;text-align:center;width:100%}@media screen and (min-width:46.8em){.activity-update-form #whats-new-avatar{display:block;float:right;margin:0}.activity-update-form #whats-new-content,.activity-update-form #whats-new-post-in-box,.activity-update-form #whats-new-submit{margin-right:55px}.activity-update-form #whats-new-submit input{margin-bottom:0;margin-left:10px;width:8em}}.activity-list{padding:.5em}.activity-list .activity-item:after,.activity-list .activity-item:before{content:" ";display:table}.activity-list .activity-item:after{clear:both}.activity-list .activity-item{list-style:none;padding:1em}.activity-list .activity-item.has-comments{padding-bottom:1em}.activity-list .activity-item div.item-avatar{margin:0 auto;text-align:center;width:auto}.activity-list .activity-item div.item-avatar img{height:auto;max-width:40%}@media screen and (min-width:46.8em){.activity-list .activity-item div.item-avatar{margin:0 0 0 2%;text-align:right;width:15%}.activity-list .activity-item div.item-avatar img{max-width:80%}}.activity-list .activity-item.mini{font-size:13px;position:relative}.activity-list .activity-item.mini .activity-avatar{margin-right:0;text-align:center;width:auto}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:15%}@media screen and (min-width:46.8em){.activity-list .activity-item.mini .activity-avatar{margin-right:15px;text-align:right;width:15%}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:60%}}.activity-list .activity-item.new_forum_post .activity-inner,.activity-list .activity-item.new_forum_topic .activity-inner{border-right:2px solid #eaeaea;margin-right:10px;padding-right:1em}.activity-list .activity-item.newest_blogs_activity,.activity-list .activity-item.newest_friends_activity,.activity-list .activity-item.newest_groups_activity,.activity-list .activity-item.newest_mentions_activity{background:rgba(31,179,221,.1)}.activity-list .activity-item .activity-inreplyto{color:#767676;font-size:13px}.activity-list .activity-item .activity-inreplyto>p{display:inline;margin:0}.activity-list .activity-item .activity-inreplyto .activity-inner,.activity-list .activity-item .activity-inreplyto blockquote{background:0 0;border:0;display:inline;margin:0;overflow:hidden;padding:0}.activity-list .activity-item .activity-header{margin:0 auto;width:80%}.activity-list .activity-item .activity-header a,.activity-list .activity-item .activity-header img{display:inline}.activity-list .activity-item .activity-header .avatar{display:inline-block;margin:0 5px;vertical-align:text-top;width:20px;height:20px}.activity-list .activity-item .activity-header .time-since{font-size:14px;color:#767676;text-decoration:none}.activity-list .activity-item .activity-header .time-since:hover{color:#767676;cursor:pointer;text-decoration:underline}.activity-list .activity-item .activity-content .activity-header,.activity-list .activity-item .activity-content .comment-header{color:#767676;margin-bottom:10px}.activity-list .activity-item .activity-content .activity-inner,.activity-list .activity-item .activity-content blockquote{background:#fafafa;margin:15px 0 10px;overflow:hidden;padding:1em}.activity-list .activity-item .activity-content p{margin:0}.activity-list .activity-item .activity-inner p{word-wrap:break-word}.activity-list .activity-item .activity-read-more{margin-right:1em;white-space:nowrap}.activity-list .activity-item ul.activity-meta{margin:0;padding-right:0}.activity-list .activity-item ul.activity-meta li{border:0;display:inline-block}.activity-list .activity-item .activity-meta.action{border:1px solid transparent;background:#fafafa;padding:2px;position:relative;text-align:right}.activity-list .activity-item .activity-meta.action div.generic-button{margin:0}.activity-list .activity-item .activity-meta.action .button{background:0 0;color:#555}.activity-list .activity-item .activity-meta.action a{padding:4px 8px}.activity-list .activity-item .activity-meta.action .button:focus,.activity-list .activity-item .activity-meta.action .button:hover{background:0 0}.activity-list .activity-item .activity-meta.action .button:before,.activity-list .activity-item .activity-meta.action .icons:before{font-family:dashicons;font-size:18px;vertical-align:middle}.activity-list .activity-item .activity-meta.action .acomment-reply.button:before{content:"\f101"}.activity-list .activity-item .activity-meta.action .view:before{content:"\f125"}.activity-list .activity-item .activity-meta.action .fav:before{content:"\f154"}.activity-list .activity-item .activity-meta.action .unfav:before{content:"\f155"}.activity-list .activity-item .activity-meta.action .delete-activity:before{content:"\f153"}.activity-list .activity-item .activity-meta.action .delete-activity:hover{color:#800}.activity-list .activity-item .activity-meta.action .button{border:0;box-shadow:none}.activity-list .activity-item .activity-meta.action .button span{background:0 0;color:#555;font-weight:700}@media screen and (min-width:46.8em){.activity-list.bp-list{padding:30px}.activity-list .activity-item .activity-content{margin:0;position:relative}.activity-list .activity-item .activity-content:after{clear:both;content:"";display:table}.activity-list .activity-item .activity-header{margin:0 0 0 15px;width:auto}}.buddypress-wrap .activity-list .load-more,.buddypress-wrap .activity-list .load-newest{background:#fafafa;border:1px solid #eee;font-size:110%;margin:15px 0;padding:0;text-align:center}.buddypress-wrap .activity-list .load-more a,.buddypress-wrap .activity-list .load-newest a{color:#555;display:block;padding:.5em 0}.buddypress-wrap .activity-list .load-more a:focus,.buddypress-wrap .activity-list .load-more a:hover,.buddypress-wrap .activity-list .load-newest a:focus,.buddypress-wrap .activity-list .load-newest a:hover{background:#fff;color:#333}.buddypress-wrap .activity-list .load-more:focus,.buddypress-wrap .activity-list .load-more:hover,.buddypress-wrap .activity-list .load-newest:focus,.buddypress-wrap .activity-list .load-newest:hover{border-color:#e1e1e1;box-shadow:0 0 6px 0 #eaeaea}body.activity-permalink .activity-list li{border-width:1px;padding:1em 0 0 0}body.activity-permalink .activity-list li:first-child{padding-top:0}body.activity-permalink .activity-list li.has-comments{padding-bottom:0}body.activity-permalink .activity-list .activity-avatar{width:auto}body.activity-permalink .activity-list .activity-avatar a{display:block}body.activity-permalink .activity-list .activity-avatar img{max-width:100%;background-color:#eaeaea}body.activity-permalink .activity-list .activity-content{border:0;font-size:100%;line-height:1.5;padding:0}body.activity-permalink .activity-list .activity-content .activity-header{margin:0;padding:.5em 0 0 0;text-align:center;width:100%}body.activity-permalink .activity-list .activity-content .activity-inner,body.activity-permalink .activity-list .activity-content blockquote{margin-right:0;margin-top:10px}body.activity-permalink .activity-list .activity-meta{margin:10px 0 10px}body.activity-permalink .activity-list .activity-comments{margin-bottom:10px}@media screen and (min-width:46.8em){body.activity-permalink .activity-list .activity-avatar{right:-20px;margin-left:0;position:relative;top:-20px}body.activity-permalink .activity-list .activity-avatar img{box-shadow:0 0 0 8px #fff}body.activity-permalink .activity-list .activity-content{margin-left:10px}body.activity-permalink .activity-list .activity-content .activity-header p{text-align:right}}.bp-group-preview-cover,.bp-member-preview-cover{position:relative;min-height:150px;background:#c5c5c5}.bp-group-preview-cover img,.bp-member-preview-cover img{background:#c5c5c5;-o-object-fit:cover;object-fit:cover;border:0;display:block;margin:0;padding:0;width:100%;z-index:1;height:150px}.bp-group-short-description,.bp-member-short-description{position:relative;text-align:center}.bp-group-avatar-content,.bp-member-avatar-content{width:120px;position:relative;z-index:2;margin:auto}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{border:solid 2px #fff;background:rgba(255,255,255,.8);height:80px;width:80px}.bp-group-avatar-content.has-cover-image,.bp-member-avatar-content.has-cover-image{width:200px;margin-top:-75px}.bp-group-avatar-content.has-cover-image img.group-photo,.bp-group-avatar-content.has-cover-image img.profile-photo,.bp-member-avatar-content.has-cover-image img.group-photo,.bp-member-avatar-content.has-cover-image img.profile-photo{height:inherit;width:inherit}.bp-group-short-description-title a,.bp-member-short-description-title a{font-weight:600}@media screen and (max-width:46.8em){.bp-group-avatar-content,.bp-member-avatar-content{width:100%;margin-bottom:15px}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{margin:auto}.bp-profile-button{position:relative;margin-top:15px}}@media screen and (min-width:46.8em){.bp-profile-button{text-align:left}}.buddypress-wrap .activity-comments{clear:both;margin:0 5%;overflow:hidden;position:relative;width:auto}.buddypress-wrap .activity-comments ul{clear:both;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .activity-comments ul li{border-top:1px solid #eee;border-bottom:0;padding:1em 0 0}.buddypress-wrap .activity-comments ul li ul{margin-right:5%}.buddypress-wrap .activity-comments ul li:first-child{border-top:0}.buddypress-wrap .activity-comments ul li:last-child{margin-bottom:0}.buddypress-wrap .activity-comments div.acomment-avatar{width:auto}.buddypress-wrap .activity-comments div.acomment-avatar img{border-width:1px;float:right;height:25px;max-width:none;width:25px}.buddypress-wrap .activity-comments .acomment-content p,.buddypress-wrap .activity-comments .acomment-meta{font-size:14px}.buddypress-wrap .activity-comments .acomment-meta{color:#555;overflow:hidden;padding-right:2%}.buddypress-wrap .activity-comments .acomment-content{border-right:1px solid #ccc;margin:15px 10% 0 0;padding:.5em 1em}.buddypress-wrap .activity-comments .acomment-content p{margin-bottom:.5em}.buddypress-wrap .activity-comments .acomment-options{float:right;margin:10px 20px 10px 0}.buddypress-wrap .activity-comments .acomment-options a{color:#767676;font-size:14px}.buddypress-wrap .activity-comments .acomment-options a:focus,.buddypress-wrap .activity-comments .acomment-options a:hover{color:inherit}.buddypress-wrap .activity-comments .activity-meta.action{background:0 0;margin-top:10px}.buddypress-wrap .activity-comments .activity-meta.action button{font-size:14px;font-weight:400;text-transform:none}.buddypress-wrap .activity-comments .show-all button{font-size:14px;text-decoration:underline;padding-right:.5em}.buddypress-wrap .activity-comments .show-all button span{text-decoration:none}.buddypress-wrap .activity-comments .show-all button:focus span,.buddypress-wrap .activity-comments .show-all button:hover span{color:#5087e5}.buddypress-wrap .mini .activity-comments{clear:both;margin-top:0}body.activity-permalink .activity-comments{background:0 0;width:auto}body.activity-permalink .activity-comments>ul{padding:0 1em 0 .5em}body.activity-permalink .activity-comments ul li>ul{margin-top:10px}form.ac-form{display:none;padding:1em}form.ac-form .ac-reply-avatar{float:right}form.ac-form .ac-reply-avatar img{border:1px solid #eee}form.ac-form .ac-reply-content{color:#767676;padding-right:1em}form.ac-form .ac-reply-content a{text-decoration:none}form.ac-form .ac-reply-content .ac-textarea{margin-bottom:15px;padding:0 .5em;overflow:hidden}form.ac-form .ac-reply-content .ac-textarea textarea{background:0 0;box-shadow:none;color:#555;font-family:inherit;font-size:100%;height:60px;margin:0;outline:0;padding:.5em;width:100%}form.ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:0 0 6px #d6d6d6}form.ac-form .ac-reply-content input{margin-top:10px}.activity-comments li form.ac-form{clear:both;margin-left:15px}.activity-comments form.root{margin-right:0}.buddypress-wrap .blogs-list li .item-avatar img.avatar-150{max-width:150px;max-height:150px}.buddypress-wrap .blogs-list li .item-avatar img.avatar-50{max-width:50px;max-height:50px}@media screen and (min-width:46.8em){.buddypress-wrap .blogs-list li .item-block{float:none;width:auto}.buddypress-wrap .blogs-list li .item-meta{clear:right;float:none}}@media screen and (min-width:46.8em){.buddypress-wrap .bp-dir-vert-nav .blogs-list .list-title{width:auto}}.buddypress-wrap .groups-list li .list-title{text-align:center}.buddypress-wrap .groups-list li .group-details{clear:right}.buddypress-wrap .groups-list li .group-desc{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;font-size:13px;color:#737373;font-style:italic;margin:10px auto 0;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .group-desc{font-size:16px}}.buddypress-wrap .groups-list li p{margin:0 0 .5em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .item{margin-left:0}.buddypress-wrap .groups-list li .item-meta,.buddypress-wrap .groups-list li .list-title{text-align:right;width:auto}.buddypress-wrap .groups-list li .item-meta{margin-bottom:20px}.buddypress-wrap .groups-list li .last-activity{clear:right;margin-top:-20px}}.buddypress-wrap .groups-list li.group-no-avatar div.group-desc{margin-right:0}.buddypress-wrap .mygroups .groups-list.grid .wrap{min-height:450px;padding-bottom:0}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list.grid.four .group-desc,.buddypress-wrap .groups-list.grid.three .group-desc{font-size:14px}}@media screen and (min-width:46.8em){.buddypress .bp-vertical-navs .groups-list .item-avatar{margin-left:3%;width:15%}}.buddypress-wrap .members-list li .member-name{margin-bottom:10px}.buddypress-wrap .members-list li .item-extra-content{clear:both;font-size:14px}.buddypress-wrap .members-list li .user-update{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;color:#737373;font-style:italic;font-size:13px;margin:15px auto;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .user-update{font-size:16px}}.buddypress-wrap .members-list li .user-update .activity-read-more{display:block;font-size:12px;font-style:normal;margin-top:10px;padding-right:2px}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .last-activity{clear:right;margin-top:-10px}}@media screen and (min-width:46.8em){.buddypress-wrap .members-group-list li .joined{clear:right;float:none}}@media screen and (min-width:32em){body:not(.logged-in) .members-list .user-update{width:96%}}.register-page .register-section{box-sizing:border-box}.register-page .signup-form{margin-top:20px}.register-page .signup-form .default-profile input{margin-bottom:20px}.register-page .signup-form label,.register-page .signup-form legend{margin:10px 0 0}.register-page .signup-form .editfield{margin:15px 0}.register-page .signup-form .editfield fieldset{border:0;padding:0}.register-page .signup-form .editfield fieldset legend{margin:0 0 5px;text-indent:0}.register-page .signup-form .editfield .field-visibility-settings{padding:.5em}.register-page .signup-form .editfield .field-visibility-settings fieldset{margin:0 0 10px}.register-page .signup-form #signup-avatar img{margin:0 0 10px 15px}.register-page .signup-form .wp-pwd button{vertical-align:middle}.register-page .signup-form #pass-strength-result,.register-page .signup-form #pass1,.register-page .signup-form #pass1-text{width:10em}.register-page .signup-form #pass1{display:inline-block;margin-bottom:inherit}.register-page .signup-form #pass1-text,.register-page .signup-form .pw-weak{display:none}.register-page .signup-form .show-password #pass1-text{display:inline-block;margin-bottom:inherit}.register-page .signup-form .show-password #pass1{display:none}.register-page .signup-form .description.indicator-hint{font-size:14px}.register-page .signup-form #submit:disabled{color:#767676;opacity:.4}.register-page .signup-form .password-entry,.register-page .signup-form .password-entry-confirm{border:1px solid #eee}body.buddypress.register.js .user-pass2-wrap{display:none}body.buddypress.register.no-js .wp-hide-pw{display:none}@media screen and (min-width:46.8em){.buddypress-wrap .register-page .layout-wrap{display:flex;flex-flow:row wrap;justify-content:space-around}.buddypress-wrap .register-page .layout-wrap .default-profile{flex:1;padding-left:2em}.buddypress-wrap .register-page .layout-wrap .blog-details{flex:1;padding-right:2em}.buddypress-wrap .register-page .submit{clear:both}}@media screen and (min-width:46.8em){.buddypress-wrap.extended-default-reg .register-page .default-profile{min-width:14em;flex:1;padding-left:1em}.buddypress-wrap.extended-default-reg .register-page .extended-profile{flex:2;padding-right:1em}.buddypress-wrap.extended-default-reg .register-page .blog-details{flex:1 100%}}#group-create-body{padding:.5em}#group-create-body .creation-step-name{text-align:center}#group-create-body img.avatar{width:auto;height:auto}#group-create-body .avatar-nav-items{margin-top:15px}.single-headers:after,.single-headers:before{content:" ";display:table}.single-headers:after{clear:both}.single-headers{margin-bottom:15px}.single-headers #item-header-avatar a{display:block;text-align:center}.single-headers #item-header-avatar a img{float:none;width:auto;height:auto}.single-headers div#item-header-content{float:none}@media screen and (min-width:46.8em){.single-headers #item-header-avatar a{text-align:right}.single-headers #item-header-avatar a img{float:right}.single-headers #item-header-content{padding-right:2em}}.single-headers .activity,.single-headers .group-status{display:inline}.single-headers .group-status{font-size:18px;color:#333;padding-left:1em}.single-headers .activity{display:inline-block;font-size:12px;padding:0}.single-headers #sitewide-notice p,.single-headers div#message p{background-color:#ffd;border:1px solid #cb2;color:#440;font-weight:400;margin-top:3px;text-decoration:none}.single-headers h2{line-height:1.2;margin:0 0 5px}.single-headers h2 a{color:#767676;text-decoration:none}.single-headers h2 span.highlight{display:inline-block;font-size:60%;font-weight:400;line-height:1.7;vertical-align:middle}.single-headers h2 span.highlight span{background:#a1dcfa;color:#fff;cursor:pointer;font-size:80%;font-weight:700;margin-bottom:2px;padding:1px 4px;position:relative;left:-2px;top:-2px;vertical-align:middle}.single-headers img.avatar{float:right;margin:0 0 19px 15px}.single-headers .item-meta{color:#767676;font-size:14px;margin:15px 0 5px;padding-bottom:.5em}.single-headers ul{margin-bottom:15px}.single-headers ul li{float:left;list-style:none}.single-headers div.generic-button{text-align:center}.single-headers li.generic-button{display:inline-block;text-align:center}@media screen and (min-width:46.8em){.single-headers a.button,.single-headers div.generic-button,.single-headers li.generic-button{float:right}}.single-headers a.button,.single-headers div.generic-button{margin:10px 0 0 10px}.single-headers li.generic-button{margin:2px 10px}.single-headers li.generic-button:first-child{margin-right:0}.single-headers div#message.info{line-height:.8}body.no-js .single-item-header .js-self-profile-button{display:none}#cover-image-container{position:relative}#header-cover-image{background-color:#c5c5c5;background-position:center top;background-repeat:no-repeat;background-size:cover;border:0;display:block;right:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}#item-header-cover-image{position:relative;z-index:2}#item-header-cover-image #item-header-avatar{padding:0 1em}.groups-header .bp-group-type-list{font-size:18px;margin:0;color:#333;display:flex}.groups-header .bp-group-type-list strong{padding-left:1em;white-space:nowrap}.groups-header .bp-feedback{clear:both}.groups-header .group-item-actions{float:right;margin:0 15px 15px 0;padding-top:0;width:100%}.groups-header .moderators-lists{margin-top:0}.groups-header .moderators-lists .moderators-title{font-size:14px}.groups-header .moderators-lists .user-list{margin:0 0 5px}.groups-header .moderators-lists .user-list ul:after{clear:both;content:"";display:table}.groups-header .moderators-lists .user-list li{display:inline-block;float:none;margin-right:4px;padding:4px}.groups-header .moderators-lists img.avatar{box-shadow:none;float:none;height:30px;margin:0;max-width:100%;width:30px}@media screen and (min-width:46.8em){.groups-header div#item-header-content{float:right;margin-right:10%;text-align:right;padding-top:15px;width:42%}.groups-header .group-item-actions{float:left;margin:0 15px 15px 0;text-align:left;width:20%}.groups-header .groups-meta{clear:both}}.groups-header .desc-wrap{background:#eaeaea;border:1px solid #d6d6d6;margin:0 0 15px;padding:1em;text-align:center}.groups-header .desc-wrap .group-description{background:#fafafa;box-shadow:inset 0 0 9px #ccc;padding:1em;text-align:right}.groups-header .desc-wrap .group-description p{margin:0;padding:0}body.buddypress.bp-user .buddypress-wrap .users-header h2.user-nicename{margin-top:0;margin-bottom:5px}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list{padding-bottom:.5em;font-size:18px;margin:0;color:#333;display:flex}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list strong{padding-left:1em;white-space:nowrap}body.buddypress.bp-user .buddypress-wrap .member-header-actions{overflow:hidden;padding-right:0}body.buddypress.bp-user .buddypress-wrap .member-header-actions *>*{display:block}.buddypress-wrap .item-body{margin:20px 0}.buddypress-wrap .item-body .screen-heading{font-size:20px;font-weight:400}.buddypress-wrap .item-body .button-tabs{margin:30px 0 15px;list-style:none}.buddypress-wrap.bp-single-vert-nav .bp-list:not(.grid) .item-entry{padding-right:.5em}.single-item.group-members .item-body .filters:not(.no-subnav){border-top:5px solid #eaeaea;padding-top:1em}.single-item.group-members .item-body .filters{margin-top:0}.buddypress-wrap .group-status-type ul{margin:0 20px 20px 0}.groups-manage-members-list{padding:.5em 0}.groups-manage-members-list dd{margin:0;padding:1em 0}.groups-manage-members-list .section-title{background:#eaeaea;padding-right:.3em}.groups-manage-members-list ul{list-style:none;margin-bottom:0}.groups-manage-members-list ul li{border-bottom:1px solid #eee;margin-bottom:10px;padding:.5em .3em .3em}.groups-manage-members-list ul li:last-child,.groups-manage-members-list ul li:only-child{border-bottom:0}.groups-manage-members-list ul li:nth-child(even){background:#fafafa}.groups-manage-members-list ul li.banned-user{background:#fad3d3}.groups-manage-members-list ul .member-name{margin-bottom:0;text-align:center}.groups-manage-members-list ul img{display:block;margin:0 auto;width:20%}@media screen and (min-width:32em){.groups-manage-members-list ul .member-name{text-align:right}.groups-manage-members-list ul img{display:inline;width:50px}}.groups-manage-members-list ul .members-manage-buttons:after,.groups-manage-members-list ul .members-manage-buttons:before{content:" ";display:table}.groups-manage-members-list ul .members-manage-buttons:after{clear:both}.groups-manage-members-list ul .members-manage-buttons{margin:15px 0 5px}.groups-manage-members-list ul .members-manage-buttons a.button{color:#767676;display:block;font-size:13px}@media screen and (min-width:32em){.groups-manage-members-list ul .members-manage-buttons a.button{display:inline-block}}.groups-manage-members-list ul .members-manage-buttons.text-links-list{margin-bottom:0}@media screen and (max-width:32em){.groups-manage-members-list ul .members-manage-buttons.text-links-list a.button{background:#fafafa;border:1px solid #eee;display:block;margin-bottom:10px}}.groups-manage-members-list ul .action:not(.text-links-list) a.button{font-size:12px}@media screen and (min-width:46.8em){.groups-manage-members-list ul li .avatar,.groups-manage-members-list ul li .member-name{float:right}.groups-manage-members-list ul li .avatar{margin-left:15px}.groups-manage-members-list ul li .action{clear:both;float:right}}#group-manage-members-ui #group-members-search-form button[type=submit]{float:left;font-size:inherit;font-weight:400;line-height:1.5;text-align:center;text-transform:none}#group-manage-members-ui #group-members-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}#group-manage-members-ui #group-members-pagination button:last-child{margin-left:2em}#group-manage-members-ui #bp-no-group-members td{border:none}.buddypress .bp-invites-content ul.item-list{border-top:0}.buddypress .bp-invites-content ul.item-list li{border:1px solid #eaeaea;margin:0 0 1%;padding-right:5px;padding-left:5px;position:relative;width:auto}.buddypress .bp-invites-content ul.item-list li .list-title{margin:0 auto;width:80%}.buddypress .bp-invites-content ul.item-list li .action{position:absolute;top:10px;left:10px}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button{border:0}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:focus,.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:hover{color:#1fb3dd}.buddypress .bp-invites-content ul.item-list li.selected{box-shadow:inset 0 0 12px 0 rgba(237,187,52,.2)}.buddypress .bp-invites-content .group-inviters li,.buddypress .bp-invites-content .item-list .item-meta span{color:#767676}.buddypress .bp-invites-content li ul.group-inviters{clear:both;margin:0}.buddypress .bp-invites-content li ul.group-inviters li{border:0;float:right;font-size:20px;width:inherit}.buddypress .bp-invites-content li .status{font-size:20px;font-style:italic;clear:both;color:#555;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul:after,.buddypress .bp-invites-content #send-invites-editor ul:before{content:" ";display:table}.buddypress .bp-invites-content #send-invites-editor ul:after{clear:both}.buddypress .bp-invites-content #send-invites-editor textarea{width:100%}.buddypress .bp-invites-content #send-invites-editor ul{clear:both;list-style:none;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul li{float:right;margin:.5%;max-height:50px;max-width:50px}.buddypress .bp-invites-content #send-invites-editor #bp-send-invites-form{clear:both;margin-top:10px}.buddypress .bp-invites-content #send-invites-editor .action{margin-top:10px;padding-top:10px}.buddypress .bp-invites-content #send-invites-editor.bp-hide{display:none}@media screen and (min-width:46.8em){.buddypress .bp-invites-content ul.item-list>li{box-sizing:border-box;border:1px solid #eaeaea;float:right;padding-right:.5em;padding-left:.5em;width:49.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(odd){margin-left:.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(even){margin-right:.5%}.buddypress .bp-invites-content ul.item-list ul.group-inviters{float:right;width:auto}}@media screen and (min-width:46.8em){:not(.vertical)+.item-body #group-invites-container{display:grid;grid-template-columns:25% auto;grid-template-areas:"group-invites-nav group-invites-column"}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav{-ms-grid-row:1;-ms-grid-column:1;grid-area:group-invites-nav}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav li{display:block;float:none}:not(.vertical)+.item-body #group-invites-container .group-invites-column{-ms-grid-row:1;-ms-grid-column:2;grid-area:group-invites-column}}.buddypress.groups .activity-update-form{margin-top:0}.buddypress-wrap .profile{margin-top:30px}.buddypress-wrap .public .profile-fields td.label{width:30%}.buddypress-wrap .profile.edit ul.button-nav{list-style:none;margin:30px 0 10px;padding-right:0}.buddypress-wrap .profile.edit ul.button-nav li{display:inline-block;margin-left:10px}.buddypress-wrap .profile.edit ul.button-nav li a{padding:.5em}.buddypress-wrap .profile.edit .editfield{background:#fafafa;border:1px solid #eee;margin:15px 0;padding:1em}.buddypress-wrap .profile.edit .editfield fieldset{border:0}.buddypress-wrap .profile.edit .editfield fieldset label{font-weight:400}.buddypress-wrap .profile.edit .editfield fieldset label.xprofile-field-label{display:inline}.buddypress-wrap .profile.edit .editfield{display:flex;flex-direction:column}.buddypress-wrap .profile.edit .editfield .description{margin-top:10px;order:2}.buddypress-wrap .profile.edit .editfield>fieldset{order:1}.buddypress-wrap .profile.edit .editfield .field-visibility-settings,.buddypress-wrap .profile.edit .editfield .field-visibility-settings-toggle{order:3}body.no-js .buddypress-wrap .field-visibility-settings-close,body.no-js .buddypress-wrap .field-visibility-settings-toggle{display:none}body.no-js .buddypress-wrap .field-visibility-settings{display:block}.buddypress-wrap .field-visibility-settings{margin:10px 0}.buddypress-wrap .current-visibility-level{font-style:normal;font-weight:700}.buddypress-wrap .field-visibility-settings,.buddypress-wrap .field-visibility-settings-header{color:#737373}.buddypress-wrap .field-visibility-settings fieldset{margin:5px 0}.buddypress-wrap .standard-form .editfield fieldset{margin:0}.buddypress-wrap .standard-form .field-visibility-settings label{font-weight:400;margin:0}.buddypress-wrap .standard-form .field-visibility-settings .radio{list-style:none;margin-bottom:0}.buddypress-wrap .standard-form .field-visibility-settings .field-visibility-settings-close{font-size:12px}.buddypress-wrap .standard-form .wp-editor-container{border:1px solid #dedede}.buddypress-wrap .standard-form .wp-editor-container textarea{background:#fff;width:100%}.buddypress-wrap .standard-form .description{background:#fafafa;font-size:inherit}.buddypress-wrap .standard-form .field-visibility-settings legend,.buddypress-wrap .standard-form .field-visibility-settings-header{font-style:italic}.buddypress-wrap .standard-form .field-visibility-settings-header{font-size:14px}.buddypress-wrap .standard-form .field-visibility-settings label,.buddypress-wrap .standard-form .field-visibility-settings legend{font-size:14px}.buddypress-wrap .standard-form .field-visibility select{margin:0}.buddypress-wrap .html-active button.switch-html{background:#f5f5f5;border-bottom-color:transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.buddypress-wrap .tmce-active button.switch-tmce{background:#f5f5f5;border-bottom-color:transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.buddypress-wrap .profile.public .profile-group-title{border-bottom:1px solid #ccc}body.register .buddypress-wrap .page ul{list-style:none}.buddypress-wrap .profile .bp-avatar-nav{margin-top:20px}.message-action-delete:before,.message-action-star:before,.message-action-unstar:before,.message-action-view:before{font-family:dashicons;font-size:18px}.message-action-star:before{color:#aaa;content:"\f154"}.message-action-unstar:before{color:#fcdd77;content:"\f155"}.message-action-view:before{content:"\f473"}.message-action-delete:before{content:"\f153"}.message-action-delete:hover:before{color:#a00}.preview-content .actions a{text-decoration:none}.bp-messages-content{margin:15px 0}.bp-messages-content .avatar{box-shadow:none}.bp-messages-content .thread-participants{list-style:none}.bp-messages-content .thread-participants dd{margin-right:0}.bp-messages-content time{color:#737373;font-size:12px}#message-threads{border-top:1px solid #eaeaea;clear:both;list-style:none;margin:0;max-height:220px;overflow-x:hidden;overflow-y:auto;padding:0;width:100%}#message-threads li{border-bottom:1px solid #eaeaea;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;margin:0;overflow:hidden;padding:.5em 0}#message-threads li .thread-cb{display:flex;align-items:center;-moz-flex:1 2 5%;-o-flex:1 2 5%;flex:1 2 5%}#message-threads li .thread-from,#message-threads li .thread-to{-moz-flex:1 2 20%;-o-flex:1 2 20%;flex:1 2 20%}#message-threads li .thread-from img.avatar,#message-threads li .thread-to img.avatar{float:right;margin:0 0 0 10px}#message-threads li .thread-from .user-name,#message-threads li .thread-to .user-name{display:inline-block;line-height:1.1}#message-threads li .thread-from .num-recipients,#message-threads li .thread-to .num-recipients{color:#737373;font-weight:400;font-size:12px;margin:0}#message-threads li .thread-content{-moz-flex:1 2 60%;-o-flex:1 2 60%;flex:1 2 60%}#message-threads li .thread-date{-moz-flex:1 2 15%;-o-flex:1 2 15%;flex:1 2 15%}#message-threads li.selected{background-color:#fafafa}#message-threads li.selected .thread-subject .subject{color:#5087e5}#message-threads li.unread{font-weight:700}#message-threads li .thread-content .excerpt{color:#737373;font-size:12px;margin:0}#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:13px}@media screen and (min-width:46.8em){#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:16px}}#message-threads li .thread-content .thread-subject{vertical-align:top}#message-threads li .thread-content .thread-subject .excerpt{font-weight:400}#message-threads li .thread-date{padding-left:5px;text-align:left}.bp-messages-content .actions{float:left;max-width:30%;line-height:1}.bp-messages-content .actions .bp-icons:not(.bp-hide){display:inline-block;margin:0;padding:.3em .5em}.bp-messages-content .actions .bp-icons:not(.bp-hide):before{font-size:26px}.bp-messages-content #thread-preview{border:1px solid #eaeaea;margin-top:20px}.bp-messages-content #thread-preview .preview-message{overflow:hidden}.bp-messages-content #thread-preview .preview-content{margin:.5em}.bp-messages-content #thread-preview .preview-content .preview-message{background:#fafafa;margin:10px 0;padding:1em .3em .3em}.bp-messages-content #bp-message-thread-list{border-top:1px solid #eaeaea;clear:both;list-style:none;padding:1em 0 .3em}.bp-messages-content #bp-message-thread-list li{padding:.5em}.bp-messages-content #bp-message-thread-list li:nth-child(2n) .message-content{background:#fafafa}.bp-messages-content #bp-message-thread-list .message-metadata{border-bottom:1px solid #ccc;box-shadow:2px 1px 9px 0 #eee;display:table;padding:.2em;width:100%}.bp-messages-content #bp-message-thread-list .message-metadata .avatar{width:30px}.bp-messages-content #bp-message-thread-list .message-metadata .user-link{display:block;font-size:13px;float:right}@media screen and (min-width:46.8em){.bp-messages-content #bp-message-thread-list .message-metadata .user-link{font-size:16px}}.bp-messages-content #bp-message-thread-list .message-metadata time{color:#737373;font-size:12px;padding:0 .5em}.bp-messages-content #bp-message-thread-list .message-metadata button{padding:0 .3em}.bp-messages-content #bp-message-thread-list .message-metadata button:before{font-size:20px}.bp-messages-content #bp-message-thread-list .message-content{overflow:hidden;margin:1em auto 0;width:90%}.bp-messages-content #bp-message-thread-list img.avatar{float:right;margin:0 0 0 10px}.bp-messages-content #bp-message-thread-list .actions a:before{font-size:18px}.bp-messages-content form.send-reply .avatar-box{padding:.5em 0}.bp-messages-content .preview-pane-header,.bp-messages-content .single-message-thread-header{border-bottom:1px solid #eaeaea}.bp-messages-content .preview-pane-header:after,.bp-messages-content .single-message-thread-header:after{clear:both;content:"";display:table}.bp-messages-content .preview-thread-title,.bp-messages-content .single-thread-title{font-size:16px}.bp-messages-content .preview-thread-title .messages-title,.bp-messages-content .single-thread-title .messages-title{padding-right:2em}.bp-messages-content .thread-participants{float:right;margin:5px 0;width:70%}.bp-messages-content .thread-participants dd,.bp-messages-content .thread-participants ul{margin-bottom:10px}.bp-messages-content .thread-participants ul{list-style:none}.bp-messages-content .thread-participants ul:after{clear:both;content:"";display:table}.bp-messages-content .thread-participants li{float:right;margin-right:5px}.bp-messages-content .thread-participants img{width:30px;height:30px}.bp-messages-content #bp-message-thread-list li .message-content blockquote,.bp-messages-content #bp-message-thread-list li .message-content ol,.bp-messages-content #bp-message-thread-list li .message-content ul,.bp-messages-content #thread-preview .preview-message blockquote,.bp-messages-content #thread-preview .preview-message ol,.bp-messages-content #thread-preview .preview-message ul{list-style-position:inside;margin-right:0}.bp-messages-content #thread-preview:empty,.bp-messages-content ul#message-threads:empty{display:none}.bp-messages-content #bp-message-thread-header h2:first-child,.bp-messages-content #thread-preview h2:first-child{background-color:#eaeaea;color:#555;font-weight:700;margin:0;padding:.5em}.bp-messages-content #bp-message-thread-list li a.user-link,.bp-messages-content #message-threads .thread-content a{border:0;text-decoration:none}.bp-messages-content .standard-form #subject{margin-bottom:20px}div.bp-navs#subsubnav.bp-messages-filters .user-messages-bulk-actions{margin-left:15px;max-width:42.5%}.buddypress.settings .profile-settings.bp-tables-user select{width:100%}body.buddypress.settings .wp-pwd button{vertical-align:middle}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1,body.buddypress.settings #pass1-text{width:16em}body.buddypress.settings #pass1{display:inline-block;margin-bottom:inherit}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1-text,body.buddypress.settings .pw-weak{display:none}body.buddypress.settings .show-password #pass1-text{display:inline-block;margin-bottom:inherit}body.buddypress.settings .show-password #pass1{display:none}body.buddypress.settings #your-profile #submit:disabled{color:#767676;opacity:.4}body.buddypress.settings.js .user-pass2-wrap,body.buddypress.settings.js .wp-pwd{display:none}body.buddypress.settings.no-js .wp-cancel-pw,body.buddypress.settings.no-js .wp-generate-pw,body.buddypress.settings.no-js .wp-hide-pw{display:none}body.buddypress.settings.data #buddypress.buddypress-wrap .item-body p a{text-decoration:underline}.buddypress-wrap #whats-new-post-in-box select,.buddypress-wrap .filter select{border:1px solid #d6d6d6}.buddypress-wrap input.action[disabled]{cursor:pointer;opacity:.4}.buddypress-wrap #invitation-bulk-manage[disabled],.buddypress-wrap #notification-bulk-manage[disabled]{display:none}.buddypress-wrap fieldset legend{font-size:inherit;font-weight:600}.buddypress-wrap input[type=email]:focus,.buddypress-wrap input[type=password]:focus,.buddypress-wrap input[type=tel]:focus,.buddypress-wrap input[type=text]:focus,.buddypress-wrap input[type=url]:focus,.buddypress-wrap textarea:focus{box-shadow:0 0 8px #eaeaea}.buddypress-wrap select{height:auto}.buddypress-wrap textarea{resize:vertical}.buddypress-wrap .standard-form .bp-controls-wrap{margin:1em 0}.buddypress-wrap .standard-form .groups-members-search input[type=search],.buddypress-wrap .standard-form .groups-members-search input[type=text],.buddypress-wrap .standard-form [data-bp-search] input[type=search],.buddypress-wrap .standard-form [data-bp-search] input[type=text],.buddypress-wrap .standard-form input[type=color],.buddypress-wrap .standard-form input[type=date],.buddypress-wrap .standard-form input[type=datetime-local],.buddypress-wrap .standard-form input[type=datetime],.buddypress-wrap .standard-form input[type=email],.buddypress-wrap .standard-form input[type=month],.buddypress-wrap .standard-form input[type=number],.buddypress-wrap .standard-form input[type=password],.buddypress-wrap .standard-form input[type=range],.buddypress-wrap .standard-form input[type=search],.buddypress-wrap .standard-form input[type=tel],.buddypress-wrap .standard-form input[type=text],.buddypress-wrap .standard-form input[type=time],.buddypress-wrap .standard-form input[type=url],.buddypress-wrap .standard-form input[type=week],.buddypress-wrap .standard-form select,.buddypress-wrap .standard-form textarea{background-color:#fafafa;border:1px solid #d6d6d6;border-radius:0;font:inherit;font-size:100%;padding:.5em}.buddypress-wrap .standard-form input[required],.buddypress-wrap .standard-form select[required],.buddypress-wrap .standard-form textarea[required]{box-shadow:none;border-width:2px;outline:0}.buddypress-wrap .standard-form input[required]:invalid,.buddypress-wrap .standard-form select[required]:invalid,.buddypress-wrap .standard-form textarea[required]:invalid{border-color:#b71717}.buddypress-wrap .standard-form input[required]:valid,.buddypress-wrap .standard-form select[required]:valid,.buddypress-wrap .standard-form textarea[required]:valid{border-color:#91cc2c}.buddypress-wrap .standard-form input[required]:focus,.buddypress-wrap .standard-form select[required]:focus,.buddypress-wrap .standard-form textarea[required]:focus{border-color:#d6d6d6;border-width:1px}.buddypress-wrap .standard-form input.invalid[required],.buddypress-wrap .standard-form select.invalid[required],.buddypress-wrap .standard-form textarea.invalid[required]{border-color:#b71717}.buddypress-wrap .standard-form input:not(.small),.buddypress-wrap .standard-form textarea{width:100%}.buddypress-wrap .standard-form input[type=checkbox],.buddypress-wrap .standard-form input[type=radio]{margin-left:5px;width:auto}.buddypress-wrap .standard-form select{padding:3px}.buddypress-wrap .standard-form textarea{height:120px}.buddypress-wrap .standard-form textarea#message_content{height:200px}.buddypress-wrap .standard-form input[type=password]{margin-bottom:5px}.buddypress-wrap .standard-form input:focus,.buddypress-wrap .standard-form select:focus,.buddypress-wrap .standard-form textarea:focus{background-color:#fafafa;color:#555;outline:0}.buddypress-wrap .standard-form label,.buddypress-wrap .standard-form span.label{display:block;font-weight:600;margin:15px 0 5px;width:auto}.buddypress-wrap .standard-form a.clear-value{display:block;margin-top:5px;outline:0}.buddypress-wrap .standard-form .submit{clear:both;padding:15px 0 0}.buddypress-wrap .standard-form p.submit{margin-bottom:0}.buddypress-wrap .standard-form div.submit input{margin-left:15px}.buddypress-wrap .standard-form #invite-list label,.buddypress-wrap .standard-form p label{font-weight:400;margin:auto}.buddypress-wrap .standard-form p.description{color:#737373;margin:5px 0}.buddypress-wrap .standard-form div.checkbox label:nth-child(n+2),.buddypress-wrap .standard-form div.radio div label{color:#737373;font-size:100%;font-weight:400;margin:5px 0 0}.buddypress-wrap .standard-form#send-reply textarea{width:97.5%}.buddypress-wrap .standard-form#sidebar-login-form label{margin-top:5px}.buddypress-wrap .standard-form#sidebar-login-form input[type=password],.buddypress-wrap .standard-form#sidebar-login-form input[type=text]{padding:4px;width:95%}.buddypress-wrap .standard-form.profile-edit input:focus{background:#fff}@media screen and (min-width:46.8em){.buddypress-wrap .standard-form .left-menu{float:right}.buddypress-wrap .standard-form #invite-list ul{list-style:none;margin:1%}.buddypress-wrap .standard-form #invite-list ul li{margin:0 1% 0 0}.buddypress-wrap .standard-form .main-column{margin-right:190px}.buddypress-wrap .standard-form .main-column ul#friend-list{clear:none;float:right}.buddypress-wrap .standard-form .main-column ul#friend-list h4{clear:none}}.buddypress-wrap .standard-form .bp-tables-user label{margin:0}.buddypress-wrap .signup-form label,.buddypress-wrap .signup-form legend{font-weight:400}body.no-js .buddypress #delete_inbox_messages,body.no-js .buddypress #delete_sentbox_messages,body.no-js .buddypress #message-type-select,body.no-js .buddypress #messages-bulk-management #select-all-messages,body.no-js .buddypress #notifications-bulk-management #select-all-notifications,body.no-js .buddypress label[for=message-type-select]{display:none}.buddypress-wrap .wp-editor-wrap .wp-editor-wrap button,.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=button],.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=submit],.buddypress-wrap .wp-editor-wrap a.button,.buddypress-wrap .wp-editor-wrap input[type=reset]{padding:0 8px 1px}.buddypress-wrap .select-wrap{border:1px solid #eee}.buddypress-wrap .select-wrap label{display:inline}.buddypress-wrap .select-wrap select::-ms-expand{display:none}.buddypress-wrap .select-wrap select{-webkit-appearance:none;-o-appearance:none;appearance:none;border:0;cursor:pointer;margin-left:-25px;padding:6px 10px 6px 25px;position:relative;text-indent:-2px;z-index:1;width:auto}.buddypress-wrap .select-wrap select,.buddypress-wrap .select-wrap select:active,.buddypress-wrap .select-wrap select:focus{background:0 0}.buddypress-wrap .select-wrap span.select-arrow{display:inline-block;position:relative;z-index:0}.buddypress-wrap .select-wrap span.select-arrow:before{color:#ccc;content:"\25BC"}.buddypress-wrap .select-wrap:focus .select-arrow:before,.buddypress-wrap .select-wrap:hover .select-arrow:before{color:#a6a6a6}.buddypress-wrap .bp-search form:focus,.buddypress-wrap .bp-search form:hover,.buddypress-wrap .select-wrap:focus,.buddypress-wrap .select-wrap:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}@media screen and (min-width:32em){.buddypress-wrap .invitations-options-nav .select-wrap,.buddypress-wrap .notifications-options-nav .select-wrap{float:right}}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after,.buddypress-wrap .bp-messages-search-form:before{content:" ";display:table}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after{clear:both}.buddypress-wrap form#group-members-search,.buddypress-wrap form.bp-dir-search-form,.buddypress-wrap form.bp-messages-search-form,.buddypress-wrap form[data-bp-search].bp-invites-search-form{border:1px solid #eee;width:100%}.buddypress-wrap form#group-members-search label,.buddypress-wrap form.bp-dir-search-form label,.buddypress-wrap form.bp-messages-search-form label,.buddypress-wrap form[data-bp-search].bp-invites-search-form label{margin:0}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{background:0 0;border:0;border-radius:0;background-clip:padding-box}.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{float:right;line-height:2;padding:3px 10px;width:78%}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit]{float:left;font-size:inherit;font-weight:400;line-height:1.5;padding:3px .7em;text-align:center;text-transform:none;width:20%}.buddypress-wrap form#group-members-search button[type=submit] span,.buddypress-wrap form.bp-dir-search-form button[type=submit] span,.buddypress-wrap form.bp-messages-search-form button[type=submit] span,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}.buddypress-wrap form#group-members-search button[type=submit].bp-show,.buddypress-wrap form.bp-dir-search-form button[type=submit].bp-show,.buddypress-wrap form.bp-messages-search-form button[type=submit].bp-show,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit].bp-show{height:auto;right:0;overflow:visible;position:static;top:0}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-button,.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-decoration{display:none}.buddypress-wrap form#group-members-search:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}.buddypress-wrap ul.filters li form label input{line-height:1.4;padding:.1em .7em}.buddypress-wrap .current-group-type,.buddypress-wrap .current-member-type{font-style:italic}.buddypress-wrap .dir-form{clear:both}.budypress.no-js form.bp-dir-search-form button[type=submit]{height:auto;right:0;overflow:visible;position:static;top:0}.bp-user [data-bp-search] form input[type=search],.bp-user [data-bp-search] form input[type=text]{padding:6px 10px 7px}.buddypress-wrap .bp-tables-user,.buddypress-wrap table.forum,.buddypress-wrap table.wp-profile-fields{width:100%}.buddypress-wrap .bp-tables-user thead tr,.buddypress-wrap table.forum thead tr,.buddypress-wrap table.wp-profile-fields thead tr{background:0 0;border-bottom:2px solid #ccc}.buddypress-wrap .bp-tables-user tbody tr,.buddypress-wrap table.forum tbody tr,.buddypress-wrap table.wp-profile-fields tbody tr{background:#fafafa}.buddypress-wrap .bp-tables-user tr td,.buddypress-wrap .bp-tables-user tr th,.buddypress-wrap table.forum tr td,.buddypress-wrap table.forum tr th,.buddypress-wrap table.wp-profile-fields tr td,.buddypress-wrap table.wp-profile-fields tr th{padding:.5em;vertical-align:middle}.buddypress-wrap .bp-tables-user tr td.label,.buddypress-wrap table.forum tr td.label,.buddypress-wrap table.wp-profile-fields tr td.label{border-left:1px solid #eaeaea;font-weight:600;width:25%}.buddypress-wrap .bp-tables-user tr.alt td,.buddypress-wrap table.wp-profile-fields tr.alt td{background:#fafafa}.buddypress-wrap table.profile-fields .data{padding:.5em 1em}.buddypress-wrap table.profile-fields tr:last-child{border-bottom:none}.buddypress-wrap table.notifications td{padding:1em .5em}.buddypress-wrap table.notifications .bulk-select-all,.buddypress-wrap table.notifications .bulk-select-check{width:7%}.buddypress-wrap table.notifications .bulk-select-check{vertical-align:middle}.buddypress-wrap table.notifications .date,.buddypress-wrap table.notifications .notification-description,.buddypress-wrap table.notifications .notification-since,.buddypress-wrap table.notifications .title{width:39%}.buddypress-wrap table.notifications .actions,.buddypress-wrap table.notifications .notification-actions{width:15%}.buddypress-wrap table.notification-settings th.title,.buddypress-wrap table.profile-settings th.title{width:80%}.buddypress-wrap table.notifications .notification-actions a.delete,.buddypress-wrap table.notifications .notification-actions a.mark-read{display:inline-block}.buddypress-wrap table.notification-settings{margin-bottom:15px;text-align:right}.buddypress-wrap #groups-notification-settings{margin-bottom:0}.buddypress-wrap table.notification-settings td:first-child,.buddypress-wrap table.notification-settings th.icon,.buddypress-wrap table.notifications td:first-child,.buddypress-wrap table.notifications th.icon{display:none}.buddypress-wrap table.notification-settings .no,.buddypress-wrap table.notification-settings .yes{text-align:center;width:40px;vertical-align:middle}.buddypress-wrap table#message-threads{clear:both}.buddypress-wrap table#message-threads .thread-info{min-width:40%}.buddypress-wrap table#message-threads .thread-info p{margin:0}.buddypress-wrap table#message-threads .thread-info p.thread-excerpt{color:#737373;font-size:12px;margin-top:3px}.buddypress-wrap table.profile-fields{margin-bottom:20px}.buddypress-wrap table.profile-fields:last-child{margin-bottom:0}.buddypress-wrap table.profile-fields p{margin:0}.buddypress-wrap table.profile-fields p:last-child{margin-top:0}.bp-screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-vert{display:flex;align-items:center}.bp-hide{display:none}.bp-show{height:auto;right:0;overflow:visible;position:static;top:0}.buddypress .buddypress-wrap .activity-read-more a,.buddypress .buddypress-wrap .comment-reply-link,.buddypress .buddypress-wrap .generic-button a,.buddypress .buddypress-wrap a.bp-title-button,.buddypress .buddypress-wrap a.button,.buddypress .buddypress-wrap button,.buddypress .buddypress-wrap input[type=button],.buddypress .buddypress-wrap input[type=reset],.buddypress .buddypress-wrap input[type=submit],.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a{background:#fff;border-color:#ccc;border-style:solid;border-width:1px;border-radius:0;color:#555;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:400;outline:0;padding:.3em .5em;text-align:center;text-decoration:none;width:auto;line-height:1}.buddypress .buddypress-wrap a.button.dashicons,.buddypress .buddypress-wrap button.dashicons{font-family:dashicons}.buddypress .buddypress-wrap .button-small[type=button]{padding:0 8px 1px}.buddypress .buddypress-wrap .activity-read-more a:focus,.buddypress .buddypress-wrap .activity-read-more a:hover,.buddypress .buddypress-wrap .button-nav li a:focus,.buddypress .buddypress-wrap .button-nav li a:hover,.buddypress .buddypress-wrap .button-nav li.current a,.buddypress .buddypress-wrap .comment-reply-link:focus,.buddypress .buddypress-wrap .comment-reply-link:hover,.buddypress .buddypress-wrap .generic-button a:focus,.buddypress .buddypress-wrap .generic-button a:hover,.buddypress .buddypress-wrap a.button:focus,.buddypress .buddypress-wrap a.button:hover,.buddypress .buddypress-wrap button:focus,.buddypress .buddypress-wrap button:hover,.buddypress .buddypress-wrap input[type=button]:focus,.buddypress .buddypress-wrap input[type=button]:hover,.buddypress .buddypress-wrap input[type=reset]:focus,.buddypress .buddypress-wrap input[type=reset]:hover,.buddypress .buddypress-wrap input[type=submit]:focus,.buddypress .buddypress-wrap input[type=submit]:hover{background:#ededed;border-color:#999;color:#333;outline:0;text-decoration:none}.buddypress .buddypress-wrap a.disabled,.buddypress .buddypress-wrap button.disabled,.buddypress .buddypress-wrap button.pending,.buddypress .buddypress-wrap div.pending a,.buddypress .buddypress-wrap input[type=button].disabled,.buddypress .buddypress-wrap input[type=button].pending,.buddypress .buddypress-wrap input[type=reset].disabled,.buddypress .buddypress-wrap input[type=reset].pending,.buddypress .buddypress-wrap input[type=submit].pending,.buddypress .buddypress-wrap input[type=submit]:disabled,.buddypress .buddypress-wrap input[type=submit][disabled=disabled]{border-color:#eee;color:#767676;cursor:default}.buddypress .buddypress-wrap a.disabled:hover,.buddypress .buddypress-wrap button.disabled:hover,.buddypress .buddypress-wrap button.pending:hover,.buddypress .buddypress-wrap div.pending a:hover,.buddypress .buddypress-wrap input[type=button]:hover.disabled,.buddypress .buddypress-wrap input[type=button]:hover.pending,.buddypress .buddypress-wrap input[type=reset]:hover.disabled,.buddypress .buddypress-wrap input[type=reset]:hover.pending,.buddypress .buddypress-wrap input[type=submit]:hover.disabled,.buddypress .buddypress-wrap input[type=submit]:hover.pending{border-color:#eee;color:#767676}.buddypress .buddypress-wrap button.text-button,.buddypress .buddypress-wrap input.text-button{background:0 0;border:0;box-shadow:none;color:#767676}.buddypress .buddypress-wrap button.text-button.small,.buddypress .buddypress-wrap input.text-button.small{font-size:13px}.buddypress .buddypress-wrap button.text-button:focus,.buddypress .buddypress-wrap button.text-button:hover,.buddypress .buddypress-wrap input.text-button:focus,.buddypress .buddypress-wrap input.text-button:hover{background:0 0;text-decoration:underline}.buddypress .buddypress-wrap .activity-list a.button{border:none}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover{color:#1fb3dd}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.invite-button:hover{color:#a00}.buddypress .buddypress-wrap #item-buttons:empty{display:none}.buddypress .buddypress-wrap input:disabled:focus,.buddypress .buddypress-wrap input:disabled:hover{background:0 0}.buddypress .buddypress-wrap .text-links-list a.button{background:0 0;border:none;border-left:1px solid #eee;color:#737373;display:inline-block;padding:.3em 1em}.buddypress .buddypress-wrap .text-links-list a.button:visited{color:#d6d6d6}.buddypress .buddypress-wrap .text-links-list a.button:focus,.buddypress .buddypress-wrap .text-links-list a.button:hover{color:#5087e5}.buddypress .buddypress-wrap .text-links-list a:first-child{padding-right:0}.buddypress .buddypress-wrap .text-links-list a:last-child{border-left:none}.buddypress .buddypress-wrap .bp-list.grid .action a,.buddypress .buddypress-wrap .bp-list.grid .action button{border:1px solid #ccc;display:block;margin:0}.buddypress .buddypress-wrap .bp-list.grid .action a:focus,.buddypress .buddypress-wrap .bp-list.grid .action a:hover,.buddypress .buddypress-wrap .bp-list.grid .action button:focus,.buddypress .buddypress-wrap .bp-list.grid .action button:hover{background:#ededed}.buddypress #buddypress .create-button{background:0 0;text-align:center}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{text-decoration:underline}@media screen and (min-width:46.8em){.buddypress #buddypress .create-button{float:left}}.buddypress #buddypress .create-button a{border:1px solid #ccc;border-radius:5px;background-clip:padding-box;box-shadow:inset 0 0 6px 0 #eaeaea;margin:.2em 0;width:auto}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{background:0 0;border-color:#ccc;box-shadow:inset 0 0 12px 0 #eaeaea}@media screen and (min-width:46.8em){.buddypress #buddypress.bp-dir-vert-nav .create-button{float:none;padding-top:2em}.buddypress #buddypress.bp-dir-vert-nav .create-button a{margin-left:.5em}}.buddypress #buddypress.bp-dir-hori-nav .create-button{float:right}.buddypress #buddypress.bp-dir-hori-nav .create-button a,.buddypress #buddypress.bp-dir-hori-nav .create-button a:hover{background:0 0;border:0;box-shadow:none;margin:0}.buddypress-wrap button.ac-reply-cancel,.buddypress-wrap button.bp-icons{background:0 0;border:0}.buddypress-wrap button.bp-icons:focus,.buddypress-wrap button.bp-icons:hover{background:0 0}.buddypress-wrap button.ac-reply-cancel:focus,.buddypress-wrap button.ac-reply-cancel:hover{background:0 0;text-decoration:underline}.buddypress-wrap .bp-invites-content li .invite-button span.icons:before,.buddypress-wrap .bp-invites-filters .invite-button span.icons:before,.buddypress-wrap .bp-messages-filters li a.messages-button:before,.buddypress-wrap .feed a:before,.buddypress-wrap .filter label:before{font-family:dashicons;font-size:18px}.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:27px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:32px}}.buddypress-wrap .bp-list a.button.invite-button:focus,.buddypress-wrap .bp-list a.button.invite-button:hover{background:0 0}.buddypress-wrap .filter label:before{content:"\f536"}.buddypress-wrap div.feed a:before,.buddypress-wrap li.feed a:before{content:"\f303"}.buddypress-wrap ul.item-list li .invite-button:not(.group-remove-invite-button) span.icons:before{content:"\f502"}.buddypress-wrap ul.item-list li .group-remove-invite-button span.icons:before,.buddypress-wrap ul.item-list li.selected .invite-button span.icons:before{content:"\f153"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-next-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-next-page:before{content:"\f345"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-prev-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-prev-page:before{content:"\f341"}.buddypress-wrap .warn{color:#b71717}.buddypress-wrap .bp-messages{border:1px solid #ccc;margin:0 0 15px}.buddypress-wrap .bp-messages .sitewide-notices{display:block;margin:5px;padding:.5em}.buddypress-wrap .bp-messages.info{margin-bottom:0}.buddypress-wrap .bp-messages.updated{clear:both;display:block}.buddypress-wrap .bp-messages.bp-user-messages-feedback{border:0}.buddypress-wrap #group-create-body .bp-cover-image-status p.warning{background:#0b80a4;border:0;box-shadow:0 0 3px 0 rgba(0,0,0,.2);color:#fff}.buddypress-wrap .bp-feedback:not(.custom-homepage-info){display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;align-items:stretch;align-items:center}.buddypress-wrap .bp-feedback{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;margin:10px 0;position:relative}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback span.bp-icon{color:#fff;display:block;font-family:dashicons;right:0;margin-left:10px;position:relative;padding:0 .5em}.buddypress-wrap .bp-feedback .bp-help-text{font-style:italic}.buddypress-wrap .bp-feedback .text{font-size:14px;margin:0;padding:.5em 0}.buddypress-wrap .bp-feedback.no-icon{padding:.5em}.buddypress-wrap .bp-feedback.small:before{line-height:inherit}.buddypress-wrap a[data-bp-close] span:before,.buddypress-wrap button[data-bp-close] span:before{font-size:32px}.buddypress-wrap a[data-bp-close],.buddypress-wrap button[data-bp-close]{border:0;position:absolute;top:10px;left:10px;width:32px}.buddypress-wrap .bp-feedback.no-icon a[data-bp-close],.buddypress-wrap .bp-feedback.no-icon button[data-bp-close]{top:-6px;left:6px}.buddypress-wrap button[data-bp-close]:hover{background-color:transparent}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback .bp-icon{font-size:20px;padding:0 2px}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon,.buddypress-wrap .bp-feedback.loading .bp-icon,.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{display:flex;align-items:center;align-self:stretch}.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon{background-color:#0b80a4}.buddypress-wrap .bp-feedback.help .bp-icon:before,.buddypress-wrap .bp-feedback.info .bp-icon:before{content:"\f348"}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{background-color:#d33}.buddypress-wrap .bp-feedback.error .bp-icon:before,.buddypress-wrap .bp-feedback.warning .bp-icon:before{content:"\f534"}.buddypress-wrap .bp-feedback.loading .bp-icon{background-color:#ffd087}.buddypress-wrap .bp-feedback.loading .bp-icon:before{content:"\f469"}.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon{background-color:#8a2}.buddypress-wrap .bp-feedback.success .bp-icon:before,.buddypress-wrap .bp-feedback.updated .bp-icon:before{content:"\f147"}.buddypress-wrap .bp-feedback.help .bp-icon:before{content:"\f468"}.buddypress-wrap #pass-strength-result{background-color:#eee;border-color:#ddd;border-style:solid;border-width:1px;display:none;font-weight:700;margin:10px 0 10px 0;padding:.5em;text-align:center;width:auto}.buddypress-wrap #pass-strength-result.show{display:block}.buddypress-wrap #pass-strength-result.mismatch{background-color:#333;border-color:transparent;color:#fff}.buddypress-wrap #pass-strength-result.bad,.buddypress-wrap #pass-strength-result.error{background-color:#ffb78c;border-color:#ff853c;color:#333}.buddypress-wrap #pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040;color:#333}.buddypress-wrap #pass-strength-result.good{background-color:#ffec8b;border-color:#fc0;color:#333}.buddypress-wrap #pass-strength-result.strong{background-color:#66d66e;border-color:#438c48;color:#333}.buddypress-wrap .standard-form#signup_form div div.error{background:#faa;color:#a00;margin:0 0 10px 0;padding:.5em;width:90%}.buddypress-wrap .accept,.buddypress-wrap .reject{float:right;margin-right:10px}.buddypress-wrap .members-list.grid .bp-ajax-message{background:rgba(255,255,255,.9);border:1px solid #eee;font-size:14px;right:2%;position:absolute;padding:.5em 1em;left:2%;top:30px}body.create-blog #buddypress .error,body.create-blog #buddypress .success{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;padding:10px 15px;background-color:#fff}body.create-blog #buddypress .error{border-right:4px solid #d33}body.create-blog #buddypress .success{border-right:4px solid #8a2}.buddypress.widget .item-options{font-size:12px;margin:0 0 1em;padding:1em 0}.buddypress.widget .bp-login-widget-user-avatar{float:right}.buddypress.widget .bp-login-widget-user-links{margin-right:70px}.buddypress.widget ul.item-list{list-style:none;margin:10px 0}.buddypress.widget ul.activity-list{padding:0}.buddypress.widget ul.activity-list blockquote{margin:0 0 1.5em;overflow:visible;padding:0 .75em .75em 0}.buddypress.widget ul.activity-list img{margin-bottom:.5em}.buddypress.widget ul.activity-list li{border-bottom:1px solid #ccc;margin-bottom:1em}.buddypress.widget ul.activity-list li .activity-header p{margin-bottom:.5em}.buddypress.widget ul.activity-list li:last-child{border-bottom:0}.buddypress.widget div.activity-list blockquote{padding:0;border:none}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini){position:relative;box-shadow:-1px 0 4px rgba(0,0,0,.15);padding:0 1em}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after,.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{position:absolute;right:15px;display:block;width:0;height:0;border-style:solid;border-color:transparent;content:""}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{bottom:-18px;border-top-color:rgba(0,0,0,.15);border-width:9px;right:14px}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after{bottom:-16px;border-top-color:#fff;border-width:8px}.buddypress.widget div.activity-list blockquote .activity-item.mini .avatar{display:inline-block;width:20px;height:20px;vertical-align:middle;margin-left:2px}.buddypress.widget div.activity-list footer{display:flex;align-items:center}.buddypress.widget div.activity-list footer img.avatar{display:inline-block;border:none;margin-left:.5em}.buddypress.widget div.activity-list footer .activity-time-since{font-size:90%}.buddypress.widget .avatar-block{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}.buddypress.widget .avatar-block img{margin:.5em}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#friends-list li:before,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#groups-list li:before,.buddypress.widget ul#members-list li:after,.buddypress.widget ul#members-list li:before{content:" ";display:table}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#members-list li:after{clear:both}.buddypress.widget ul#friends-list li,.buddypress.widget ul#groups-list li,.buddypress.widget ul#members-list li{margin-bottom:1em}.buddypress.widget ul#friends-list li .item-avatar,.buddypress.widget ul#groups-list li .item-avatar,.buddypress.widget ul#members-list li .item-avatar{float:right;width:60px}.buddypress.widget ul#friends-list li .item,.buddypress.widget ul#groups-list li .item,.buddypress.widget ul#members-list li .item{margin-right:70px}.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:column nowrap;flex-flow:column nowrap}@media screen and (min-width:32em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{border:1px solid #eee;align-items:stretch;-moz-flex:1 1 46%;-o-flex:1 1 46%;flex:1 1 46%;margin:2%}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 20%;-o-flex:0 1 20%;flex:0 1 20%}}.buddypress-wrap .buddypress.widget ul#friends-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#groups-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#members-list li .item-avatar{padding:.5em;text-align:center}.buddypress-wrap .buddypress.widget ul#friends-list li .item,.buddypress-wrap .buddypress.widget ul#groups-list li .item,.buddypress-wrap .buddypress.widget ul#members-list li .item{padding:.5em}.buddypress-wrap .buddypress.widget ul#friends-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#groups-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#members-list li .item .item-meta{font-size:12px;overflow-wrap:break-word}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{margin:10px -2%;width:100%}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 auto;-o-flex:0 1 auto;flex:0 1 auto;margin:10px 2% 1%;width:46%}}.buddypress-wrap .buddypress.widget blockquote{margin:0 0 1.5em;overflow:visible;padding:0 .75em .75em 0}#buddypress-wrap *{transition:opacity .1s ease-in-out .1s}#buddypress-wrap a.button,#buddypress-wrap a.generic-button,#buddypress-wrap button,#buddypress-wrap input[type=reset],#buddypress-wrap input[type=submit]{transition:background .1s ease-in-out .1s,color .1s ease-in-out .1s,border-color .1s ease-in-out .1s}.buddypress-wrap a.loading,.buddypress-wrap input.loading{animation:loader-pulsate .5s infinite ease-in-out alternate;border-color:#aaa}@keyframes loader-pulsate{from{border-color:#aaa;box-shadow:0 0 6px #ccc}to{border-color:#ccc;box-shadow:0 0 6px #f8f8f8}}.buddypress-wrap a.loading:hover,.buddypress-wrap input.loading:hover{color:#777}[data-bp-tooltip]{position:relative}[data-bp-tooltip]:after{background-color:#fff;display:none;opacity:0;position:absolute;transform:translate3d(0,0,0);visibility:hidden}[data-bp-tooltip]:after{border:1px solid #737373;border-radius:1px;box-shadow:-4px 4px 8px rgba(0,0,0,.2);color:#333;content:attr(data-bp-tooltip);font-family:"Helvetica Neue",helvetica,arial,san-serif;font-size:12px;font-weight:400;letter-spacing:normal;line-height:1.25;max-width:200px;padding:5px 8px;pointer-events:none;text-shadow:none;text-transform:none;transition:all 1.5s ease;white-space:nowrap;word-wrap:break-word;z-index:100000}[data-bp-tooltip]:active:after,[data-bp-tooltip]:focus:after,[data-bp-tooltip]:hover:after{display:block;opacity:1;overflow:visible;visibility:visible}[data-bp-tooltip=""]{display:none;opacity:0;visibility:hidden}.bp-tooltip:after{right:50%;margin-top:7px;top:110%;transform:translate(50%,0)}.user-list .bp-tooltip:after{right:0;transform:translate(0,0)}@media screen and (min-width:46.8em){.user-list .bp-tooltip:after{right:auto;left:0;transform:translate(0,0)}}.activity-list .bp-tooltip:after,.activity-meta-action .bp-tooltip:after,.avatar-block .item-avatar .bp-tooltip:after,.notification-actions .bp-tooltip:after,.participants-list .bp-tooltip:after{right:0;transform:translate(0,0)}.bp-invites-content .bp-tooltip:after,.message-metadata .actions .bp-tooltip:after,.single-message-thread-header .actions .bp-tooltip:after{right:auto;left:0;transform:translate(0,0)}.bp-invites-content #send-invites-editor .bp-tooltip:after{right:0;left:auto}#item-body,.single-screen-navs{box-sizing:border-box}.grid>li,.grid>li .generic-button a{box-sizing:border-box}.grid>li{border-bottom:0;padding-bottom:10px;padding-top:0}.grid>li .list-wrap{background:#fafafa;border:1px solid #eee;padding-bottom:15px;position:relative;overflow:hidden;padding-top:14px}.grid>li .list-wrap .list-title{padding:.5em}.grid>li .list-wrap .update{color:#737373;padding:.5em 2em}.grid>li .item-avatar{text-align:center}.grid>li .item-avatar .avatar{border-radius:50%;display:inline-block;width:50%}@media screen and (min-width:24em){.grid.members-list .list-wrap{min-height:340px}.grid.members-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.members-group-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.groups-list .list-wrap{min-height:470px}.grid.groups-list .list-wrap .item-block{min-height:6rem}.grid.groups-list .list-wrap .group-desc{margin:15px auto 0;min-height:5em;overflow:hidden}.grid.groups-list .list-wrap .group-details,.grid.groups-list .list-wrap .item-desc,.grid.groups-list .list-wrap .last-activity{margin-bottom:0}.grid.groups-list .list-wrap .group-details p,.grid.groups-list .list-wrap .item-desc p,.grid.groups-list .list-wrap .last-activity p{margin-bottom:0}.grid.blogs-list .list-wrap{min-height:350px}.grid.blogs-list .list-wrap .item-block{margin:0 auto;min-height:7rem}}@media screen and (min-width:24em){.grid>li.item-entry{float:right;margin:0}.grid.two>li{padding-bottom:20px}}@media screen and (min-width:24em) and (min-width:75em){.grid.two>li .list-wrap{max-width:500px;margin:0 auto}}@media screen and (min-width:24em){.grid.three>li,.grid.two>li{width:50%}.grid.three>li:nth-child(odd),.grid.two>li:nth-child(odd){padding-left:10px}.grid.three>li:nth-child(even),.grid.two>li:nth-child(even){padding-right:10px}.grid.three>li .item,.grid.two>li .item{margin:1rem auto 0;width:80%}.grid.three>li .item .item-title,.grid.two>li .item .item-title{width:auto}}@media screen and (min-width:46.8em){.grid.three>li{padding-top:0;width:33.333333%;width:calc(100% / 3)}.grid.three>li:nth-child(1n+1){padding-right:5px;padding-left:5px}.grid.three>li:nth-child(3n+3){padding-right:5px;padding-left:0}.grid.three>li:nth-child(3n+1){padding-right:0;padding-left:5px}}@media screen and (min-width:46.8em){.grid.four>li{width:25%}.grid.four>li:nth-child(1n+1){padding-right:5px;padding-left:5px}.grid.four>li:nth-child(4n+4){padding-right:5px;padding-left:0}.grid.four>li:nth-child(4n+1){padding-right:0;padding-left:5px}}.buddypress-wrap .grid.bp-list{padding-top:1em}.buddypress-wrap .grid.bp-list>li{border-bottom:none}.buddypress-wrap .grid.bp-list>li .list-wrap{padding-bottom:3em}.buddypress-wrap .grid.bp-list>li .item-avatar{margin:0;text-align:center;width:auto}.buddypress-wrap .grid.bp-list>li .item-avatar img.avatar{display:inline-block;height:auto;width:50%}.buddypress-wrap .grid.bp-list>li .item-meta,.buddypress-wrap .grid.bp-list>li .list-title{float:none;text-align:center}.buddypress-wrap .grid.bp-list>li .list-title{font-size:inherit;line-height:1.1}.buddypress-wrap .grid.bp-list>li .item{font-size:18px;right:0;margin:0 auto;text-align:center;width:96%}@media screen and (min-width:46.8em){.buddypress-wrap .grid.bp-list>li .item{font-size:22px}}.buddypress-wrap .grid.bp-list>li .item .group-desc,.buddypress-wrap .grid.bp-list>li .item .item-block{float:none;width:96%}.buddypress-wrap .grid.bp-list>li .item .item-block{margin-bottom:10px}.buddypress-wrap .grid.bp-list>li .item .last-activity{margin-top:5px}.buddypress-wrap .grid.bp-list>li .item .group-desc{clear:none}.buddypress-wrap .grid.bp-list>li .item .user-update{clear:both;text-align:right}.buddypress-wrap .grid.bp-list>li .item .activity-read-more a{display:inline}.buddypress-wrap .grid.bp-list>li .action{bottom:5px;float:none;height:auto;right:0;margin:0;padding:0 5px;position:absolute;text-align:center;top:auto;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button{float:none;margin:5px 0 0;text-align:center;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button a,.buddypress-wrap .grid.bp-list>li .action .generic-button button{width:100%}.buddypress-wrap .grid.bp-list>li .avatar,.buddypress-wrap .grid.bp-list>li .item,.buddypress-wrap .grid.bp-list>li .item-avatar{float:none}.buddypress-wrap .blogs-list.grid.two>li .blogs-title{min-height:5em}.buddypress-wrap .grid.four>li .group-desc,.buddypress-wrap .grid.three>li .group-desc{min-height:8em}.buddypress-wrap .blogs-list.grid.four>li,.buddypress-wrap .blogs-list.grid.three>li{min-height:350px}.buddypress-wrap .blogs-list.grid.four>li .last-activity,.buddypress-wrap .blogs-list.grid.three>li .last-activity{margin-bottom:0}.buddypress-wrap .blogs-list.grid.four>li .last-post,.buddypress-wrap .blogs-list.grid.three>li .last-post{margin-top:0}.buddypress:not(.logged-in) .grid.bp-list .list-wrap{padding-bottom:5px}.buddypress:not(.logged-in) .grid.groups-list .list-wrap{min-height:430px}.buddypress:not(.logged-in) .grid.members-list .list-wrap{min-height:300px}.buddypress:not(.logged-in) .grid.blogs-list .list-wrap{min-height:320px}@media screen and (min-width:46.8em){.bp-single-vert-nav .bp-navs.vertical{overflow:visible}.bp-single-vert-nav .bp-navs.vertical ul{border-left:1px solid #d6d6d6;border-bottom:0;float:right;margin-left:-1px;width:25%}.bp-single-vert-nav .bp-navs.vertical li{float:none;margin-left:0}.bp-single-vert-nav .bp-navs.vertical li.selected a{background:#ccc;color:#333}.bp-single-vert-nav .bp-navs.vertical li:focus,.bp-single-vert-nav .bp-navs.vertical li:hover{background:#ccc}.bp-single-vert-nav .bp-navs.vertical li span{background:#d6d6d6;border-radius:10%;float:left;margin-left:2px}.bp-single-vert-nav .bp-navs.vertical li:hover span{border-color:#eaeaea}.bp-single-vert-nav .bp-navs.vertical.tabbed-links li.selected a{padding-right:0}.bp-single-vert-nav .bp-wrap{margin-bottom:15px}.bp-single-vert-nav .bp-wrap .group-nav-tabs.groups-nav ul li,.bp-single-vert-nav .bp-wrap .user-nav-tabs.users-nav ul li{right:1px;position:relative}.bp-single-vert-nav .item-body:not(#group-create-body){background:#fff;border-right:1px solid #d6d6d6;float:left;margin:0;min-height:400px;padding:0 1em 0 0;width:calc(75% + 1px)}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:#eaeaea;margin:0 -5px 0 0;width:auto}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li{font-size:16px;margin:10px 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border-left:1px solid #ccc;padding:0 .5em}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:focus,.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:hover{background:0 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current a{background:0 0;color:#333;text-decoration:underline}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li:last-child a{border:none}.bp-dir-vert-nav .dir-navs{float:right;right:1px;position:relative;width:20%}.bp-dir-vert-nav .dir-navs ul li{float:none;overflow:hidden;width:auto}.bp-dir-vert-nav .dir-navs ul li.selected{border:1px solid #eee}.bp-dir-vert-nav .dir-navs ul li.selected a{background:#555;color:#fff}.bp-dir-vert-nav .dir-navs ul li.selected a span{background:#eaeaea;border-color:#ccc;color:#5087e5}.bp-dir-vert-nav .dir-navs ul li a:focus,.bp-dir-vert-nav .dir-navs ul li a:hover{background:#ccc;color:#333}.bp-dir-vert-nav .dir-navs ul li a:focus span,.bp-dir-vert-nav .dir-navs ul li a:hover span{border:1px solid #555}.bp-dir-vert-nav .screen-content{border-right:1px solid #d6d6d6;margin-right:20%;overflow:hidden;padding:0 1em 2em 0}.bp-dir-vert-nav .screen-content .subnav-filters{margin-top:0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:hover{background:0 0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected{background:0 0;border:1px solid #d6d6d6;border-left-color:#fff}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a{background:0 0;color:#333;font-weight:600}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a span{background:#555;border:1px solid #d6d6d6;color:#fff}}
1
+ body #buddypress * a{box-shadow:none;text-decoration:none}body #buddypress div,body #buddypress dl,body #buddypress input[type=reset],body #buddypress input[type=search],body #buddypress input[type=submit],body #buddypress li,body #buddypress select,body #buddypress textarea{border-radius:2px;background-clip:padding-box}body #buddypress #item-body blockquote,body #buddypress .bp-lists blockquote{margin-right:0}body #buddypress .bp-list .action{box-sizing:border-box}@media screen and (min-width:46.8em){body.buddypress .entry-content:not(.alignwide):not(.alignfull),body.buddypress .entry-header:not(.alignwide):not(.alignfull),body.buddypress .site-content .entry-header:not(.alignwide):not(.alignfull){max-width:none}body.buddypress .entry-header{float:none}body.buddypress .entry-content{float:none}body.buddypress .site-content{padding-top:2.5em}body.buddypress #page #primary{max-width:none}body.buddypress #page #primary .entry-content,body.buddypress #page #primary .entry-header{float:none;width:auto}}body.buddypress .buddypress-wrap h1,body.buddypress .buddypress-wrap h2,body.buddypress .buddypress-wrap h3,body.buddypress .buddypress-wrap h4,body.buddypress .buddypress-wrap h5,body.buddypress .buddypress-wrap h6{clear:none;margin:1em 0;padding:0}body.buddypress .buddypress-wrap h2:before{display:none}.bp-wrap:after,.bp-wrap:before{content:" ";display:table}.bp-wrap:after{clear:both}.buddypress-wrap.round-avatars .avatar{border-radius:50%}body.buddypress article.page>.entry-header{margin-bottom:2em;padding:0}body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:28px;font-weight:inherit;color:#767676}@media screen and (min-width:46.8em){body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:34px}}.buddypress-wrap dt.section-title{font-size:18px}@media screen and (min-width:46.8em){.buddypress-wrap dt.section-title{font-size:22px}}.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:16px}}.buddypress-wrap .activity-header{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-header{font-size:16px}}.buddypress-wrap .activity-inner{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-inner{font-size:18px}}.buddypress-wrap #whats-new-post-in{font-size:16px}.buddypress-wrap .acomment-meta,.buddypress-wrap .mini .activity-header{font-size:16px}.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:16px}}.buddypress-wrap .bp-tables-user th{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user th{font-size:16px}}.buddypress-wrap .bp-tables-user td{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user td{font-size:14px}}.buddypress-wrap .profile-fields th{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields th{font-size:18px}}.buddypress-wrap .profile-fields td{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields td{font-size:16px}}.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:14px}}.bp-navs{background:0 0;clear:both;overflow:hidden}.bp-navs ul{margin:0;padding:0}.bp-navs ul li{list-style:none;margin:0}.bp-navs ul li.last select{max-width:185px}.bp-navs ul li a,.bp-navs ul li span{border:0;display:block;padding:5px 10px;text-decoration:none}.bp-navs ul li .count{background:#eaeaea;border:1px solid #ccc;border-radius:50%;color:#555;display:inline;font-size:12px;margin-right:2px;padding:3px 6px;text-align:center;vertical-align:middle}.bp-navs ul li.current a,.bp-navs ul li.selected a{color:#333;opacity:1}.bp-navs.bp-invites-filters ul li a,.bp-navs.bp-messages-filters ul li a{border:1px solid #ccc;display:inline-block}.main-navs.dir-navs{margin-bottom:20px}.buddypress-wrap .bp-navs li a:hover a .count,.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count{background-color:#ccc}.buddypress-wrap .bp-navs li:not(.current) a:focus,.buddypress-wrap .bp-navs li:not(.current) a:hover,.buddypress-wrap .bp-navs li:not(.selected) a:focus,.buddypress-wrap .bp-navs li:not(.selected) a:hover{background:#ccc;color:#333}.buddypress-wrap .bp-navs li.current a,.buddypress-wrap .bp-navs li.current a:focus,.buddypress-wrap .bp-navs li.current a:hover,.buddypress-wrap .bp-navs li.selected a,.buddypress-wrap .bp-navs li.selected a:focus,.buddypress-wrap .bp-navs li.selected a:hover{background:#555;color:#fafafa}@media screen and (min-width:46.8em){.buddypress-wrap .main-navs:not(.dir-navs) li.current a,.buddypress-wrap .main-navs:not(.dir-navs) li.selected a{background:#fff;color:#333;font-weight:600}.buddypress-wrap .main-navs.vertical li.current a,.buddypress-wrap .main-navs.vertical li.selected a{background:#555;color:#fafafa;text-decoration:none}.buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border-bottom:1px solid #eee;border-top:1px solid #eee;box-shadow:0 2px 12px 0 #fafafa}}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.selected a{background:#fff;color:#333;font-weight:600}@media screen and (max-width:46.8em){.buddypress-wrap:not(.bp-single-vert-nav) .bp-navs li{background:#eaeaea}}.buddypress-wrap:not(.bp-single-vert-nav) .main-navs>ul>li>a{padding:.5em calc(.5em + 2px)}.buddypress-wrap:not(.bp-single-vert-nav) .group-subnav#subsubnav,.buddypress-wrap:not(.bp-single-vert-nav) .user-subnav#subsubnav{background:0 0}.buddypress-wrap .bp-subnavs,.buddypress-wrap ul.subnav{width:100%}.buddypress-wrap .bp-subnavs{margin:10px 0;overflow:hidden}.buddypress-wrap .bp-subnavs ul li{margin-top:0}.buddypress-wrap .bp-subnavs ul li.current :focus,.buddypress-wrap .bp-subnavs ul li.current :hover,.buddypress-wrap .bp-subnavs ul li.selected :focus,.buddypress-wrap .bp-subnavs ul li.selected :hover{background:0 0;color:#333}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap .bp-navs.bp-invites-filters#subsubnav ul li.last,.buddypress-wrap .bp-navs.bp-invites-nav#subnav ul li.last,.buddypress-wrap .bp-navs.bp-messages-filters#subsubnav ul li.last{margin-top:0}@media screen and (max-width:46.8em){.buddypress-wrap .single-screen-navs{border:1px solid #eee}.buddypress-wrap .single-screen-navs li{border-bottom:1px solid #eee}.buddypress-wrap .single-screen-navs li:last-child{border-bottom:none}.buddypress-wrap .bp-subnavs li a{font-size:14px}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.current a:focus,.buddypress-wrap .bp-subnavs li.current a:hover,.buddypress-wrap .bp-subnavs li.selected a,.buddypress-wrap .bp-subnavs li.selected a:focus,.buddypress-wrap .bp-subnavs li.selected a:hover{background:#555;color:#fff}}.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count,.buddypress_object_nav .bp-navs li.current a .count,.buddypress_object_nav .bp-navs li.selected a .count{background-color:#fff}.buddypress-wrap .bp-navs li.dynamic a .count,.buddypress-wrap .bp-navs li.dynamic.current a .count,.buddypress-wrap .bp-navs li.dynamic.selected a .count,.buddypress_object_nav .bp-navs li.dynamic a .count,.buddypress_object_nav .bp-navs li.dynamic.current a .count,.buddypress_object_nav .bp-navs li.dynamic.selected a .count{background-color:#5087e5;border:0;color:#fafafa}.buddypress-wrap .bp-navs li.dynamic a:hover .count,.buddypress_object_nav .bp-navs li.dynamic a:hover .count{background-color:#5087e5;border:0;color:#fff}.buddypress-wrap .bp-navs li a .count:empty,.buddypress_object_nav .bp-navs li a .count:empty{display:none}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current),.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current){color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:hover{background:0 0;color:#333}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li.current a,.buddypress_object_nav .bp-navs.group-create-links ul li.current a{text-align:center}@media screen and (min-width:46.8em){.buddypress-wrap .bp-navs li{float:right}.buddypress-wrap .subnav{float:right}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap #subsubnav .activity-search{float:right}.buddypress-wrap #subsubnav .filter{float:left}}.buddypress_object_nav .bp-navs li a .count{display:inline-block;float:left}@media screen and (min-width:46.8em){.bp-dir-vert-nav .bp-navs.dir-navs{background:0 0}.bp-dir-vert-nav .bp-navs.dir-navs a .count{float:left}}@media screen and (min-width:46.8em){.buddypress-wrap .tabbed-links ol,.buddypress-wrap .tabbed-links ul{border-bottom:1px solid #ccc;float:none;margin:20px 0 10px}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ol:before,.buddypress-wrap .tabbed-links ul:after,.buddypress-wrap .tabbed-links ul:before{content:" ";display:block}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ul:after{clear:both}.buddypress-wrap .tabbed-links ol li,.buddypress-wrap .tabbed-links ul li{float:right;list-style:none;margin:0 0 0 10px}.buddypress-wrap .tabbed-links ol li a,.buddypress-wrap .tabbed-links ol li span:not(.count),.buddypress-wrap .tabbed-links ul li a,.buddypress-wrap .tabbed-links ul li span:not(.count){background:0 0;border:none;display:block;padding:4px 10px}.buddypress-wrap .tabbed-links ol li a:focus,.buddypress-wrap .tabbed-links ol li a:hover,.buddypress-wrap .tabbed-links ul li a:focus,.buddypress-wrap .tabbed-links ul li a:hover{background:0 0}.buddypress-wrap .tabbed-links ol li:not(.current),.buddypress-wrap .tabbed-links ul li:not(.current){margin-bottom:2px}.buddypress-wrap .tabbed-links ol li.current,.buddypress-wrap .tabbed-links ul li.current{border-color:#ccc #ccc #fff;border-style:solid;border-top-right-radius:4px;border-top-left-radius:4px;border-width:1px;margin-bottom:-1px;padding:0 .5em 1px}.buddypress-wrap .tabbed-links ol li.current a,.buddypress-wrap .tabbed-links ul li.current a{background:0 0;color:#333}.buddypress-wrap .bp-subnavs.tabbed-links>ul{margin-top:0}.buddypress-wrap .bp-navs.tabbed-links{background:0 0;margin-top:2px}.buddypress-wrap .bp-navs.tabbed-links ul li a{border-left:0;font-size:inherit}.buddypress-wrap .bp-navs.tabbed-links ul li.last{float:left;margin:0}.buddypress-wrap .bp-navs.tabbed-links ul li.last a{margin-top:-.5em}.buddypress-wrap .bp-navs.tabbed-links ul li a,.buddypress-wrap .bp-navs.tabbed-links ul li a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li a:hover,.buddypress-wrap .bp-navs.tabbed-links ul li.current a,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:hover{background:0 0;border:0}.buddypress-wrap .bp-navs.tabbed-links ul li a:active,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:active{outline:0}}.buddypress-wrap .dir-component-filters .filter label{display:inline}.buddypress-wrap .subnav-filters:after,.buddypress-wrap .subnav-filters:before{content:" ";display:table}.buddypress-wrap .subnav-filters:after{clear:both}.buddypress-wrap .subnav-filters{background:0 0;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .subnav-filters div{margin:0}.buddypress-wrap .subnav-filters>ul{float:right;list-style:none}.buddypress-wrap .subnav-filters.bp-messages-filters ul{width:100%}.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:1em}@media screen and (min-width:46.8em){.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:0}}.buddypress-wrap .subnav-filters div{float:none}.buddypress-wrap .subnav-filters div input[type=search],.buddypress-wrap .subnav-filters div select{font-size:16px}.buddypress-wrap .subnav-filters div button.nouveau-search-submit{padding:5px .8em 6px}.buddypress-wrap .subnav-filters div button#user_messages_search_submit{padding:7px .8em}.buddypress-wrap .subnav-filters .component-filters{margin-top:10px}.buddypress-wrap .subnav-filters .feed{margin-left:15px}.buddypress-wrap .subnav-filters .last.filter label{display:inline}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:before{content:" ";display:table}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after{clear:both}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-show{display:inline-block}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-hide{display:none}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap{border:0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:focus,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:hover{outline:1px solid #d6d6d6}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions{float:right}.buddypress-wrap .subnav-filters .user-messages-bulk-actions label{display:inline-block;font-weight:300;margin-left:25px;padding:5px 0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions div select{-webkit-appearance:textfield}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply{border:0;border-radius:0;font-weight:400;line-height:1.8;margin:0 10px 0 0;padding:3px 5px;text-align:center;text-transform:none;width:auto}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}@media screen and (min-width:32em){.buddypress-wrap .subnav-filters li{margin-bottom:0}.buddypress-wrap .subnav-filters .bp-search,.buddypress-wrap .subnav-filters .dir-search,.buddypress-wrap .subnav-filters .feed,.buddypress-wrap .subnav-filters .group-act-search,.buddypress-wrap .subnav-filters .group-invites-search,.buddypress-wrap .subnav-filters .subnav-search,.buddypress-wrap .subnav-filters .subnav-search form,.buddypress-wrap .subnav-filters .user-messages-bulk-actions,.buddypress-wrap .subnav-filters .user-messages-search{float:right}.buddypress-wrap .subnav-filters .component-filters,.buddypress-wrap .subnav-filters .last{float:left;margin-top:0;width:auto}.buddypress-wrap .subnav-filters .component-filters select,.buddypress-wrap .subnav-filters .last select{max-width:250px}.buddypress-wrap .subnav-filters .user-messages-search{float:left}}.buddypress-wrap .invitations-options-nav input#invitation-bulk-manage,.buddypress-wrap .notifications-options-nav input#notification-bulk-manage{border:0;border-radius:0;line-height:1.6}.buddypress-wrap .group-subnav-filters .group-invites-search{margin-bottom:1em}.buddypress-wrap .group-subnav-filters .last{text-align:center}.buddypress-wrap .bp-pagination{background:0 0;border:0;color:#767676;float:right;font-size:small;margin:0;padding:.5em 0;position:relative;width:100%}.buddypress-wrap .bp-pagination .pag-count{float:right}.buddypress-wrap .bp-pagination .bp-pagination-links{float:left;margin-left:10px}.buddypress-wrap .bp-pagination .bp-pagination-links a,.buddypress-wrap .bp-pagination .bp-pagination-links span{font-size:small;padding:0 5px}.buddypress-wrap .bp-pagination .bp-pagination-links a:focus,.buddypress-wrap .bp-pagination .bp-pagination-links a:hover{opacity:1}.buddypress-wrap .bp-pagination p{margin:0}.bp-list:after,.bp-list:before{content:" ";display:table}.bp-list:after{clear:both}.bp-list{box-sizing:border-box;border-top:1px solid #eaeaea;clear:both;list-style:none;margin:20px 0;padding:.5em 0;width:100%}.bp-list li:after,.bp-list li:before{content:" ";display:table}.bp-list li:after{clear:both}.bp-list>li{border-bottom:1px solid #eaeaea}.bp-list li{list-style:none;margin:10px 0;padding:.5em 0;position:relative}.bp-list li .item-avatar{text-align:center}.bp-list li .item-avatar img.avatar{display:inline-block;width:auto;height:auto}.bp-list li .item .group-details,.bp-list li .item .item-avatar,.bp-list li .item .item-meta,.bp-list li .item .list-title{text-align:center}.bp-list li .item .list-title{clear:none;font-size:22px;font-weight:400;line-height:1.1;margin:0 auto}@media screen and (min-width:46.8em){.bp-list li .item .list-title{font-size:26px}}.bp-list li .item-meta,.bp-list li .meta{color:#737373;font-size:12px;margin-bottom:10px;margin-top:10px}.bp-list li .last-post{text-align:center}.bp-list li .action{margin:0;text-align:center}.bp-list li .action .generic-button{display:inline-block;font-size:12px;margin:0 0 0 10px}.bp-list li .action div.generic-button{margin:10px 0}@media screen and (min-width:46.8em){.bp-list li .item-avatar{float:right;margin-left:5%}.bp-list li .item{margin:0;overflow:hidden}.bp-list li .item .item-block{float:right;margin-left:2%;width:50%}.bp-list li .item .item-meta,.bp-list li .item .list-title{float:right;text-align:right}.bp-list li .item .group-details,.bp-list li .item .last-post{text-align:right}.bp-list li .group-desc,.bp-list li .last-post,.bp-list li .user-update{clear:none;overflow:hidden;width:auto}.bp-list li .action{clear:right;padding:0;text-align:right}.bp-list li .action li.generic-button{margin-left:0}.bp-list li .action div.generic-button{margin:0 0 10px}.bp-list li .generic-button{display:block;margin:0 0 5px 0}}@media screen and (min-width:32em){#activity-stream{clear:both;padding-top:1em}}.activity-list.bp-list{background:#fafafa;border:1px solid #eee}.activity-list.bp-list .activity-item{background:#fff;border:1px solid #b7b7b7;box-shadow:0 0 6px #d2d2d2;margin:20px 0}.activity-list.bp-list li:first-child{margin-top:0}.friends-list{list-style-type:none}.friends-request-list .item-title,.membership-requests-list .item-title{text-align:center}@media screen and (min-width:46.8em){.friends-request-list li,.membership-requests-list li{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap}.friends-request-list li .item,.membership-requests-list li .item{-moz-flex:1 1 auto;-o-flex:1 1 auto;flex:1 1 auto}.friends-request-list li .action,.membership-requests-list li .action{text-align:left}.friends-request-list li .item-title,.membership-requests-list li .item-title{font-size:22px;text-align:right}.friends-request-list li .item-title h3,.membership-requests-list li .item-title h3{margin:0}}#notifications-user-list{clear:both;padding-top:1em}@media screen and (min-width:46.8em){body:not(.logged-in) .bp-list .item{margin-left:0}}.activity-permalink .item-list,.activity-permalink .item-list li.activity-item{border:0}.activity-update-form{padding:10px 10px 0}.item-body .activity-update-form .activity-form{margin:0;padding:0}.activity-update-form{border:1px solid #ccc;box-shadow:inset 0 0 6px #eee;margin:15px 0}.activity-update-form #whats-new-avatar{margin:10px 0;text-align:center}.activity-update-form #whats-new-avatar img{box-shadow:none;display:inline-block;height:auto;width:auto}.activity-update-form #whats-new-content{padding:0 0 20px 0}.activity-update-form #whats-new-textarea textarea{background:#fff;box-sizing:border-box;color:#333;font-family:inherit;font-size:medium;height:2.2em;line-height:1.4;padding:6px;width:100%}.activity-update-form #whats-new-textarea textarea:focus{box-shadow:0 0 6px 0 #d6d6d6}.activity-update-form #whats-new-post-in-box{margin:10px 0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items{list-style:none;margin:10px 0;padding-right:0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:10px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item{margin-right:10px;height:auto}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete{padding:.3em;width:100%}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object{display:flex;align-items:center;padding:.2em}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar{width:30px;height:30px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object span{padding-right:10px;vertical-align:middle}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:focus,.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:hover{background:#eaeaea;cursor:pointer}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object.selected{border:1px solid #d6d6d6}.activity-update-form #whats-new-submit{margin:15px 0 10px}.activity-update-form #whats-new-submit input{font-size:14px;line-height:inherit;margin-bottom:10px;margin-left:10px;padding:.2em 0;text-align:center;width:100%}@media screen and (min-width:46.8em){.activity-update-form #whats-new-avatar{display:block;float:right;margin:0}.activity-update-form #whats-new-content,.activity-update-form #whats-new-post-in-box,.activity-update-form #whats-new-submit{margin-right:55px}.activity-update-form #whats-new-submit input{margin-bottom:0;margin-left:10px;width:8em}}.activity-list{padding:.5em}.activity-list .activity-item:after,.activity-list .activity-item:before{content:" ";display:table}.activity-list .activity-item:after{clear:both}.activity-list .activity-item{list-style:none;padding:1em}.activity-list .activity-item.has-comments{padding-bottom:1em}.activity-list .activity-item div.item-avatar{margin:0 auto;text-align:center;width:auto}.activity-list .activity-item div.item-avatar img{height:auto;max-width:40%}@media screen and (min-width:46.8em){.activity-list .activity-item div.item-avatar{margin:0 0 0 2%;text-align:right;width:15%}.activity-list .activity-item div.item-avatar img{max-width:80%}}.activity-list .activity-item.mini{font-size:13px;position:relative}.activity-list .activity-item.mini .activity-avatar{margin-right:0;text-align:center;width:auto}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:15%}@media screen and (min-width:46.8em){.activity-list .activity-item.mini .activity-avatar{margin-right:15px;text-align:right;width:15%}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:60%}}.activity-list .activity-item.new_forum_post .activity-inner,.activity-list .activity-item.new_forum_topic .activity-inner{border-right:2px solid #eaeaea;margin-right:10px;padding-right:1em}.activity-list .activity-item.newest_blogs_activity,.activity-list .activity-item.newest_friends_activity,.activity-list .activity-item.newest_groups_activity,.activity-list .activity-item.newest_mentions_activity{background:rgba(31,179,221,.1)}.activity-list .activity-item .activity-inreplyto{color:#767676;font-size:13px}.activity-list .activity-item .activity-inreplyto>p{display:inline;margin:0}.activity-list .activity-item .activity-inreplyto .activity-inner,.activity-list .activity-item .activity-inreplyto blockquote{background:0 0;border:0;display:inline;margin:0;overflow:hidden;padding:0}.activity-list .activity-item .activity-header{margin:0 auto;width:80%}.activity-list .activity-item .activity-header a,.activity-list .activity-item .activity-header img{display:inline}.activity-list .activity-item .activity-header .avatar{display:inline-block;margin:0 5px;vertical-align:text-top;width:20px;height:20px}.activity-list .activity-item .activity-header .time-since{font-size:14px;color:#767676;text-decoration:none}.activity-list .activity-item .activity-header .time-since:hover{color:#767676;cursor:pointer;text-decoration:underline}.activity-list .activity-item .activity-content .activity-header,.activity-list .activity-item .activity-content .comment-header{color:#767676;margin-bottom:10px}.activity-list .activity-item .activity-content .activity-inner,.activity-list .activity-item .activity-content blockquote{background:#fafafa;margin:15px 0 10px;overflow:hidden;padding:1em}.activity-list .activity-item .activity-content p{margin:0}.activity-list .activity-item .activity-inner p{word-wrap:break-word}.activity-list .activity-item .activity-read-more{margin-right:1em;white-space:nowrap}.activity-list .activity-item ul.activity-meta{margin:0;padding-right:0}.activity-list .activity-item ul.activity-meta li{border:0;display:inline-block}.activity-list .activity-item .activity-meta.action{border:1px solid transparent;background:#fafafa;padding:2px;position:relative;text-align:right}.activity-list .activity-item .activity-meta.action div.generic-button{margin:0}.activity-list .activity-item .activity-meta.action .button{background:0 0;color:#555}.activity-list .activity-item .activity-meta.action a{padding:4px 8px}.activity-list .activity-item .activity-meta.action .button:focus,.activity-list .activity-item .activity-meta.action .button:hover{background:0 0}.activity-list .activity-item .activity-meta.action .button:before,.activity-list .activity-item .activity-meta.action .icons:before{font-family:dashicons;font-size:18px;vertical-align:middle}.activity-list .activity-item .activity-meta.action .acomment-reply.button:before{content:"\f101"}.activity-list .activity-item .activity-meta.action .view:before{content:"\f125"}.activity-list .activity-item .activity-meta.action .fav:before{content:"\f154"}.activity-list .activity-item .activity-meta.action .unfav:before{content:"\f155"}.activity-list .activity-item .activity-meta.action .delete-activity:before{content:"\f153"}.activity-list .activity-item .activity-meta.action .delete-activity:hover{color:#800}.activity-list .activity-item .activity-meta.action .button{border:0;box-shadow:none}.activity-list .activity-item .activity-meta.action .button span{background:0 0;color:#555;font-weight:700}@media screen and (min-width:46.8em){.activity-list.bp-list{padding:30px}.activity-list .activity-item .activity-content{margin:0;position:relative}.activity-list .activity-item .activity-content:after{clear:both;content:"";display:table}.activity-list .activity-item .activity-header{margin:0 0 0 15px;width:auto}}.buddypress-wrap .activity-list .load-more,.buddypress-wrap .activity-list .load-newest{background:#fafafa;border:1px solid #eee;font-size:110%;margin:15px 0;padding:0;text-align:center}.buddypress-wrap .activity-list .load-more a,.buddypress-wrap .activity-list .load-newest a{color:#555;display:block;padding:.5em 0}.buddypress-wrap .activity-list .load-more a:focus,.buddypress-wrap .activity-list .load-more a:hover,.buddypress-wrap .activity-list .load-newest a:focus,.buddypress-wrap .activity-list .load-newest a:hover{background:#fff;color:#333}.buddypress-wrap .activity-list .load-more:focus,.buddypress-wrap .activity-list .load-more:hover,.buddypress-wrap .activity-list .load-newest:focus,.buddypress-wrap .activity-list .load-newest:hover{border-color:#e1e1e1;box-shadow:0 0 6px 0 #eaeaea}body.activity-permalink .activity-list li{border-width:1px;padding:1em 0 0 0}body.activity-permalink .activity-list li:first-child{padding-top:0}body.activity-permalink .activity-list li.has-comments{padding-bottom:0}body.activity-permalink .activity-list .activity-avatar{width:auto}body.activity-permalink .activity-list .activity-avatar a{display:block}body.activity-permalink .activity-list .activity-avatar img{max-width:100%;background-color:#eaeaea}body.activity-permalink .activity-list .activity-content{border:0;font-size:100%;line-height:1.5;padding:0}body.activity-permalink .activity-list .activity-content .activity-header{margin:0;padding:.5em 0 0 0;text-align:center;width:100%}body.activity-permalink .activity-list .activity-content .activity-inner,body.activity-permalink .activity-list .activity-content blockquote{margin-right:0;margin-top:10px}body.activity-permalink .activity-list .activity-meta{margin:10px 0 10px}body.activity-permalink .activity-list .activity-comments{margin-bottom:10px}@media screen and (min-width:46.8em){body.activity-permalink .activity-list .activity-avatar{right:-20px;margin-left:0;position:relative;top:-20px}body.activity-permalink .activity-list .activity-avatar img{box-shadow:0 0 0 8px #fff}body.activity-permalink .activity-list .activity-content{margin-left:10px}body.activity-permalink .activity-list .activity-content .activity-header p{text-align:right}}.bp-group-preview-cover,.bp-member-preview-cover{position:relative;min-height:150px;background:#c5c5c5}.bp-group-preview-cover img,.bp-member-preview-cover img{background:#c5c5c5;-o-object-fit:cover;object-fit:cover;border:0;display:block;margin:0;padding:0;width:100%;z-index:1;height:150px}.bp-group-short-description,.bp-member-short-description{position:relative;text-align:center}.bp-group-avatar-content,.bp-member-avatar-content{width:120px;position:relative;z-index:2;margin:auto}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{border:solid 2px #fff;background:rgba(255,255,255,.8);height:80px;width:80px}.bp-group-avatar-content.has-cover-image,.bp-member-avatar-content.has-cover-image{width:200px;margin-top:-75px}.bp-group-avatar-content.has-cover-image img.group-photo,.bp-group-avatar-content.has-cover-image img.profile-photo,.bp-member-avatar-content.has-cover-image img.group-photo,.bp-member-avatar-content.has-cover-image img.profile-photo{height:inherit;width:inherit}.bp-group-short-description-title a,.bp-member-short-description-title a{font-weight:600}@media screen and (max-width:46.8em){.bp-group-avatar-content,.bp-member-avatar-content{width:100%;margin-bottom:15px}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{margin:auto}.bp-profile-button{position:relative;margin-top:15px}}@media screen and (min-width:46.8em){.bp-profile-button{text-align:left}}.buddypress-wrap .activity-comments{clear:both;margin:0 5%;overflow:hidden;position:relative;width:auto}.buddypress-wrap .activity-comments ul{clear:both;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .activity-comments ul li{border-top:1px solid #eee;border-bottom:0;padding:1em 0 0}.buddypress-wrap .activity-comments ul li ul{margin-right:5%}.buddypress-wrap .activity-comments ul li:first-child{border-top:0}.buddypress-wrap .activity-comments ul li:last-child{margin-bottom:0}.buddypress-wrap .activity-comments div.acomment-avatar{width:auto}.buddypress-wrap .activity-comments div.acomment-avatar img{border-width:1px;float:right;height:25px;max-width:none;width:25px}.buddypress-wrap .activity-comments .acomment-content p,.buddypress-wrap .activity-comments .acomment-meta{font-size:14px}.buddypress-wrap .activity-comments .acomment-meta{color:#555;overflow:hidden;padding-right:2%}.buddypress-wrap .activity-comments .acomment-content{border-right:1px solid #ccc;margin:15px 10% 0 0;padding:.5em 1em}.buddypress-wrap .activity-comments .acomment-content p{margin-bottom:.5em}.buddypress-wrap .activity-comments .acomment-options{float:right;margin:10px 20px 10px 0}.buddypress-wrap .activity-comments .acomment-options a{color:#767676;font-size:14px}.buddypress-wrap .activity-comments .acomment-options a:focus,.buddypress-wrap .activity-comments .acomment-options a:hover{color:inherit}.buddypress-wrap .activity-comments .activity-meta.action{background:0 0;margin-top:10px}.buddypress-wrap .activity-comments .activity-meta.action button{font-size:14px;font-weight:400;text-transform:none}.buddypress-wrap .activity-comments .show-all button{font-size:14px;text-decoration:underline;padding-right:.5em}.buddypress-wrap .activity-comments .show-all button span{text-decoration:none}.buddypress-wrap .activity-comments .show-all button:focus span,.buddypress-wrap .activity-comments .show-all button:hover span{color:#5087e5}.buddypress-wrap .mini .activity-comments{clear:both;margin-top:0}body.activity-permalink .activity-comments{background:0 0;width:auto}body.activity-permalink .activity-comments>ul{padding:0 1em 0 .5em}body.activity-permalink .activity-comments ul li>ul{margin-top:10px}form.ac-form{display:none;padding:1em}form.ac-form .ac-reply-avatar{float:right}form.ac-form .ac-reply-avatar img{border:1px solid #eee}form.ac-form .ac-reply-content{color:#767676;padding-right:1em}form.ac-form .ac-reply-content a{text-decoration:none}form.ac-form .ac-reply-content .ac-textarea{margin-bottom:15px;padding:0 .5em;overflow:hidden}form.ac-form .ac-reply-content .ac-textarea textarea{background:0 0;box-shadow:none;color:#555;font-family:inherit;font-size:100%;height:60px;margin:0;outline:0;padding:.5em;width:100%}form.ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:0 0 6px #d6d6d6}form.ac-form .ac-reply-content input{margin-top:10px}.activity-comments li form.ac-form{clear:both;margin-left:15px}.activity-comments form.root{margin-right:0}.buddypress-wrap .blogs-list li .item-avatar img.avatar-150{max-width:150px;max-height:150px}.buddypress-wrap .blogs-list li .item-avatar img.avatar-50{max-width:50px;max-height:50px}@media screen and (min-width:46.8em){.buddypress-wrap .blogs-list li .item-block{float:none;width:auto}.buddypress-wrap .blogs-list li .item-meta{clear:right;float:none}}@media screen and (min-width:46.8em){.buddypress-wrap .bp-dir-vert-nav .blogs-list .list-title{width:auto}}.buddypress-wrap .groups-list li .list-title{text-align:center}.buddypress-wrap .groups-list li .group-details{clear:right}.buddypress-wrap .groups-list li .group-desc{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;font-size:13px;color:#737373;font-style:italic;margin:10px auto 0;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .group-desc{font-size:16px}}.buddypress-wrap .groups-list li p{margin:0 0 .5em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .item{margin-left:0}.buddypress-wrap .groups-list li .item-meta,.buddypress-wrap .groups-list li .list-title{text-align:right;width:auto}.buddypress-wrap .groups-list li .item-meta{margin-bottom:20px}.buddypress-wrap .groups-list li .last-activity{clear:right;margin-top:-20px}}.buddypress-wrap .groups-list li.group-no-avatar div.group-desc{margin-right:0}.buddypress-wrap .mygroups .groups-list.grid .wrap{min-height:450px;padding-bottom:0}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list.grid.four .group-desc,.buddypress-wrap .groups-list.grid.three .group-desc{font-size:14px}}@media screen and (min-width:46.8em){.buddypress .bp-vertical-navs .groups-list .item-avatar{margin-left:3%;width:15%}}.buddypress-wrap .members-list li .member-name{margin-bottom:10px}.buddypress-wrap .members-list li .item-extra-content{clear:both;font-size:14px}.buddypress-wrap .members-list li .user-update{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;color:#737373;font-style:italic;font-size:13px;margin:15px auto;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .user-update{font-size:16px}}.buddypress-wrap .members-list li .user-update .activity-read-more{display:block;font-size:12px;font-style:normal;margin-top:10px;padding-right:2px}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .last-activity{clear:right;margin-top:-10px}}@media screen and (min-width:46.8em){.buddypress-wrap .members-group-list li .joined{clear:right;float:none}}@media screen and (min-width:32em){body:not(.logged-in) .members-list .user-update{width:96%}}.register-page .register-section{box-sizing:border-box}.register-page .signup-form{margin-top:20px}.register-page .signup-form .default-profile input{margin-bottom:20px}.register-page .signup-form label,.register-page .signup-form legend{margin:10px 0 0}.register-page .signup-form .editfield{margin:15px 0}.register-page .signup-form .editfield fieldset{border:0;padding:0}.register-page .signup-form .editfield fieldset legend{margin:0 0 5px;text-indent:0}.register-page .signup-form .editfield .field-visibility-settings{padding:.5em}.register-page .signup-form .editfield .field-visibility-settings fieldset{margin:0 0 10px}.register-page .signup-form #signup-avatar img{margin:0 0 10px 15px}.register-page .signup-form .wp-pwd button{vertical-align:middle}.register-page .signup-form #pass-strength-result,.register-page .signup-form #pass1,.register-page .signup-form #pass1-text{width:10em}.register-page .signup-form #pass1{display:inline-block;margin-bottom:inherit}.register-page .signup-form #pass1-text,.register-page .signup-form .pw-weak{display:none}.register-page .signup-form .show-password #pass1-text{display:inline-block;margin-bottom:inherit}.register-page .signup-form .show-password #pass1{display:none}.register-page .signup-form .description.indicator-hint{font-size:14px}.register-page .signup-form #submit:disabled{color:#767676;opacity:.4}.register-page .signup-form .password-entry,.register-page .signup-form .password-entry-confirm{border:1px solid #eee}body.buddypress.register.js .user-pass2-wrap{display:none}body.buddypress.register.no-js .wp-hide-pw{display:none}@media screen and (min-width:46.8em){.buddypress-wrap .register-page .layout-wrap{display:flex;flex-flow:row wrap;justify-content:space-around}.buddypress-wrap .register-page .layout-wrap .default-profile{flex:1;padding-left:2em}.buddypress-wrap .register-page .layout-wrap .blog-details{flex:1;padding-right:2em}.buddypress-wrap .register-page .submit{clear:both}}@media screen and (min-width:46.8em){.buddypress-wrap.extended-default-reg .register-page .default-profile{min-width:14em;flex:1;padding-left:1em}.buddypress-wrap.extended-default-reg .register-page .extended-profile{flex:2;padding-right:1em}.buddypress-wrap.extended-default-reg .register-page .blog-details{flex:1 100%}}#group-create-body{padding:.5em}#group-create-body .creation-step-name{text-align:center}#group-create-body img.avatar{width:auto;height:auto}#group-create-body .avatar-nav-items{margin-top:15px}.single-headers:after,.single-headers:before{content:" ";display:table}.single-headers:after{clear:both}.single-headers{margin-bottom:15px}.single-headers #item-header-avatar a{display:block;text-align:center}.single-headers #item-header-avatar a img{float:none;width:auto;height:auto}.single-headers div#item-header-content{float:none}@media screen and (min-width:46.8em){.single-headers #item-header-avatar a{text-align:right}.single-headers #item-header-avatar a img{float:right}.single-headers #item-header-content{padding-right:2em}}.single-headers .activity,.single-headers .group-status{display:inline}.single-headers .group-status{font-size:18px;color:#333;padding-left:1em}.single-headers .activity{display:inline-block;font-size:12px;padding:0}.single-headers #sitewide-notice p,.single-headers div#message p{background-color:#ffd;border:1px solid #cb2;color:#440;font-weight:400;margin-top:3px;text-decoration:none}.single-headers h2{line-height:1.2;margin:0 0 5px}.single-headers h2 a{color:#767676;text-decoration:none}.single-headers h2 span.highlight{display:inline-block;font-size:60%;font-weight:400;line-height:1.7;vertical-align:middle}.single-headers h2 span.highlight span{background:#a1dcfa;color:#fff;cursor:pointer;font-size:80%;font-weight:700;margin-bottom:2px;padding:1px 4px;position:relative;left:-2px;top:-2px;vertical-align:middle}.single-headers img.avatar{float:right;margin:0 0 19px 15px}.single-headers .item-meta{color:#767676;font-size:14px;margin:15px 0 5px;padding-bottom:.5em}.single-headers ul{margin-bottom:15px}.single-headers ul li{float:left;list-style:none}.single-headers div.generic-button{text-align:center}.single-headers li.generic-button{display:inline-block;text-align:center}@media screen and (min-width:46.8em){.single-headers a.button,.single-headers div.generic-button,.single-headers li.generic-button{float:right}}.single-headers a.button,.single-headers div.generic-button{margin:10px 0 0 10px}.single-headers li.generic-button{margin:2px 10px}.single-headers li.generic-button:first-child{margin-right:0}.single-headers div#message.info{line-height:.8}body.no-js .single-item-header .js-self-profile-button{display:none}#cover-image-container{position:relative}#header-cover-image{background-color:#c5c5c5;background-position:center top;background-repeat:no-repeat;background-size:cover;border:0;display:block;right:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}#item-header-cover-image{position:relative;z-index:2}#item-header-cover-image #item-header-avatar{padding:0 1em}.groups-header .bp-group-type-list{font-size:18px;margin:0;color:#333;display:flex}.groups-header .bp-group-type-list strong{padding-left:1em;white-space:nowrap}.groups-header .bp-feedback{clear:both}.groups-header .group-item-actions{float:right;margin:0 15px 15px 0;padding-top:0;width:100%}.groups-header .moderators-lists{margin-top:0}.groups-header .moderators-lists .moderators-title{font-size:14px}.groups-header .moderators-lists .user-list{margin:0 0 5px}.groups-header .moderators-lists .user-list ul:after{clear:both;content:"";display:table}.groups-header .moderators-lists .user-list li{display:inline-block;float:none;margin-right:4px;padding:4px}.groups-header .moderators-lists img.avatar{box-shadow:none;float:none;height:30px;margin:0;max-width:100%;width:30px}@media screen and (min-width:46.8em){.groups-header div#item-header-content{float:right;margin-right:10%;text-align:right;padding-top:15px;width:42%}.groups-header .group-item-actions{float:left;margin:0 15px 15px 0;text-align:left;width:20%}.groups-header .groups-meta{clear:both}}.groups-header .desc-wrap{background:#eaeaea;border:1px solid #d6d6d6;margin:0 0 15px;padding:1em;text-align:center}.groups-header .desc-wrap .group-description{background:#fafafa;box-shadow:inset 0 0 9px #ccc;padding:1em;text-align:right}.groups-header .desc-wrap .group-description p{margin:0;padding:0}body.buddypress.bp-user .buddypress-wrap .users-header h2.user-nicename{margin-top:0;margin-bottom:5px}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list{padding-bottom:.5em;font-size:18px;margin:0;color:#333;display:flex}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list strong{padding-left:1em;white-space:nowrap}body.buddypress.bp-user .buddypress-wrap .member-header-actions{overflow:hidden;padding-right:0}body.buddypress.bp-user .buddypress-wrap .member-header-actions *>*{display:block}.buddypress-wrap .item-body{margin:20px 0}.buddypress-wrap .item-body .screen-heading{font-size:20px;font-weight:400}.buddypress-wrap .item-body .button-tabs{margin:30px 0 15px;list-style:none}.buddypress-wrap.bp-single-vert-nav .bp-list:not(.grid) .item-entry{padding-right:.5em}.single-item.group-members .item-body .filters:not(.no-subnav){border-top:5px solid #eaeaea;padding-top:1em}.single-item.group-members .item-body .filters{margin-top:0}.buddypress-wrap .group-status-type ul{margin:0 20px 20px 0}.groups-manage-members-list{padding:.5em 0}.groups-manage-members-list dd{margin:0;padding:1em 0}.groups-manage-members-list .section-title{background:#eaeaea;padding-right:.3em}.groups-manage-members-list ul{list-style:none;margin-bottom:0}.groups-manage-members-list ul li{border-bottom:1px solid #eee;margin-bottom:10px;padding:.5em .3em .3em}.groups-manage-members-list ul li:last-child,.groups-manage-members-list ul li:only-child{border-bottom:0}.groups-manage-members-list ul li:nth-child(even){background:#fafafa}.groups-manage-members-list ul li.banned-user{background:#fad3d3}.groups-manage-members-list ul .member-name{margin-bottom:0;text-align:center}.groups-manage-members-list ul img{display:block;margin:0 auto;width:20%}@media screen and (min-width:32em){.groups-manage-members-list ul .member-name{text-align:right}.groups-manage-members-list ul img{display:inline;width:50px}}.groups-manage-members-list ul .members-manage-buttons:after,.groups-manage-members-list ul .members-manage-buttons:before{content:" ";display:table}.groups-manage-members-list ul .members-manage-buttons:after{clear:both}.groups-manage-members-list ul .members-manage-buttons{margin:15px 0 5px}.groups-manage-members-list ul .members-manage-buttons a.button{color:#767676;display:block;font-size:13px}@media screen and (min-width:32em){.groups-manage-members-list ul .members-manage-buttons a.button{display:inline-block}}.groups-manage-members-list ul .members-manage-buttons.text-links-list{margin-bottom:0}@media screen and (max-width:32em){.groups-manage-members-list ul .members-manage-buttons.text-links-list a.button{background:#fafafa;border:1px solid #eee;display:block;margin-bottom:10px}}.groups-manage-members-list ul .action:not(.text-links-list) a.button{font-size:12px}@media screen and (min-width:46.8em){.groups-manage-members-list ul li .avatar,.groups-manage-members-list ul li .member-name{float:right}.groups-manage-members-list ul li .avatar{margin-left:15px}.groups-manage-members-list ul li .action{clear:both;float:right}}#group-manage-members-ui #group-members-search-form button[type=submit]{float:left;font-size:inherit;font-weight:400;line-height:1.5;text-align:center;text-transform:none}#group-manage-members-ui #group-members-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}#group-manage-members-ui #group-members-pagination button:last-child{margin-left:2em}#group-manage-members-ui #bp-no-group-members td{border:none}.buddypress .bp-invites-content ul.item-list{border-top:0}.buddypress .bp-invites-content ul.item-list li{border:1px solid #eaeaea;margin:0 0 1%;padding-right:5px;padding-left:5px;position:relative;width:auto}.buddypress .bp-invites-content ul.item-list li .list-title{margin:0 auto;width:80%}.buddypress .bp-invites-content ul.item-list li .action{position:absolute;top:10px;left:10px}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button{border:0}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:focus,.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:hover{color:#1fb3dd}.buddypress .bp-invites-content ul.item-list li.selected{box-shadow:inset 0 0 12px 0 rgba(237,187,52,.2)}.buddypress .bp-invites-content .group-inviters li,.buddypress .bp-invites-content .item-list .item-meta span{color:#767676}.buddypress .bp-invites-content li ul.group-inviters{clear:both;margin:0}.buddypress .bp-invites-content li ul.group-inviters li{border:0;float:right;font-size:20px;width:inherit}.buddypress .bp-invites-content li .status{font-size:20px;font-style:italic;clear:both;color:#555;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul:after,.buddypress .bp-invites-content #send-invites-editor ul:before{content:" ";display:table}.buddypress .bp-invites-content #send-invites-editor ul:after{clear:both}.buddypress .bp-invites-content #send-invites-editor textarea{width:100%}.buddypress .bp-invites-content #send-invites-editor ul{clear:both;list-style:none;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul li{float:right;margin:.5%;max-height:50px;max-width:50px}.buddypress .bp-invites-content #send-invites-editor #bp-send-invites-form{clear:both;margin-top:10px}.buddypress .bp-invites-content #send-invites-editor .action{margin-top:10px;padding-top:10px}.buddypress .bp-invites-content #send-invites-editor.bp-hide{display:none}@media screen and (min-width:46.8em){.buddypress .bp-invites-content ul.item-list>li{box-sizing:border-box;border:1px solid #eaeaea;float:right;padding-right:.5em;padding-left:.5em;width:49.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(odd){margin-left:.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(even){margin-right:.5%}.buddypress .bp-invites-content ul.item-list ul.group-inviters{float:right;width:auto}}@media screen and (min-width:46.8em){:not(.vertical)+.item-body #group-invites-container{display:grid;grid-template-columns:25% auto;grid-template-areas:"group-invites-nav group-invites-column"}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav{-ms-grid-row:1;-ms-grid-column:1;grid-area:group-invites-nav}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav li{display:block;float:none}:not(.vertical)+.item-body #group-invites-container .group-invites-column{-ms-grid-row:1;-ms-grid-column:2;grid-area:group-invites-column}}.buddypress.groups .activity-update-form{margin-top:0}.buddypress-wrap .profile{margin-top:30px}.buddypress-wrap .public .profile-fields td.label{width:30%}.buddypress-wrap .profile.edit ul.button-nav{list-style:none;margin:30px 0 10px;padding-right:0}.buddypress-wrap .profile.edit ul.button-nav li{display:inline-block;margin-left:10px}.buddypress-wrap .profile.edit ul.button-nav li a{padding:.5em}.buddypress-wrap .profile.edit .editfield{background:#fafafa;border:1px solid #eee;margin:15px 0;padding:1em}.buddypress-wrap .profile.edit .editfield fieldset{border:0}.buddypress-wrap .profile.edit .editfield fieldset label{font-weight:400}.buddypress-wrap .profile.edit .editfield fieldset label.xprofile-field-label{display:inline}.buddypress-wrap .profile.edit .editfield{display:flex;flex-direction:column}.buddypress-wrap .profile.edit .editfield .description{margin-top:10px;order:2}.buddypress-wrap .profile.edit .editfield>fieldset{order:1}.buddypress-wrap .profile.edit .editfield .field-visibility-settings,.buddypress-wrap .profile.edit .editfield .field-visibility-settings-toggle{order:3}body.no-js .buddypress-wrap .field-visibility-settings-close,body.no-js .buddypress-wrap .field-visibility-settings-toggle{display:none}body.no-js .buddypress-wrap .field-visibility-settings{display:block}.buddypress-wrap .field-visibility-settings{margin:10px 0}.buddypress-wrap .current-visibility-level{font-style:normal;font-weight:700}.buddypress-wrap .field-visibility-settings,.buddypress-wrap .field-visibility-settings-header{color:#737373}.buddypress-wrap .field-visibility-settings fieldset{margin:5px 0}.buddypress-wrap .standard-form .editfield fieldset{margin:0}.buddypress-wrap .standard-form .field-visibility-settings label{font-weight:400;margin:0}.buddypress-wrap .standard-form .field-visibility-settings .radio{list-style:none;margin-bottom:0}.buddypress-wrap .standard-form .field-visibility-settings .field-visibility-settings-close{font-size:12px}.buddypress-wrap .standard-form .wp-editor-container{border:1px solid #dedede}.buddypress-wrap .standard-form .wp-editor-container textarea{background:#fff;width:100%}.buddypress-wrap .standard-form .description{background:#fafafa;font-size:inherit}.buddypress-wrap .standard-form .field-visibility-settings legend,.buddypress-wrap .standard-form .field-visibility-settings-header{font-style:italic}.buddypress-wrap .standard-form .field-visibility-settings-header{font-size:14px}.buddypress-wrap .standard-form .field-visibility-settings label,.buddypress-wrap .standard-form .field-visibility-settings legend{font-size:14px}.buddypress-wrap .standard-form .field-visibility select{margin:0}.buddypress-wrap .html-active button.switch-html{background:#f5f5f5;border-bottom-color:transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.buddypress-wrap .tmce-active button.switch-tmce{background:#f5f5f5;border-bottom-color:transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.buddypress-wrap .profile.public .profile-group-title{border-bottom:1px solid #ccc}body.register .buddypress-wrap .page ul{list-style:none}.buddypress-wrap .profile .bp-avatar-nav{margin-top:20px}.message-action-delete:before,.message-action-exit:before,.message-action-star:before,.message-action-unstar:before,.message-action-view:before{font-family:dashicons;font-size:18px}.message-action-star:before{color:#aaa;content:"\f154"}.message-action-unstar:before{color:#fcdd77;content:"\f155"}.message-action-view:before{content:"\f473"}.message-action-delete:before{content:"\f153"}.message-action-exit:before{content:"\f14a"}.message-action-delete:hover:before{color:#a00}.preview-content .actions a{text-decoration:none}.bp-messages-content{margin:15px 0}.bp-messages-content .avatar{box-shadow:none}.bp-messages-content .thread-participants{list-style:none}.bp-messages-content .thread-participants dd{margin-right:0}.bp-messages-content time{color:#737373;font-size:12px}#message-threads{border-top:1px solid #eaeaea;clear:both;list-style:none;margin:0;max-height:220px;overflow-x:hidden;overflow-y:auto;padding:0;width:100%}#message-threads li{border-bottom:1px solid #eaeaea;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;margin:0;overflow:hidden;padding:.5em 0}#message-threads li .thread-cb{display:flex;align-items:center;-moz-flex:1 2 5%;-o-flex:1 2 5%;flex:1 2 5%}#message-threads li .thread-from,#message-threads li .thread-to{-moz-flex:1 2 20%;-o-flex:1 2 20%;flex:1 2 20%}#message-threads li .thread-from img.avatar,#message-threads li .thread-to img.avatar{float:right;margin:0 0 0 10px}#message-threads li .thread-from .user-name,#message-threads li .thread-to .user-name{display:inline-block;line-height:1.1}#message-threads li .thread-from .num-recipients,#message-threads li .thread-to .num-recipients{color:#737373;font-weight:400;font-size:12px;margin:0}#message-threads li .thread-content{-moz-flex:1 2 60%;-o-flex:1 2 60%;flex:1 2 60%}#message-threads li .thread-date{-moz-flex:1 2 15%;-o-flex:1 2 15%;flex:1 2 15%}#message-threads li.selected{background-color:#fafafa}#message-threads li.selected .thread-subject .subject{color:#5087e5}#message-threads li.unread{font-weight:700}#message-threads li .thread-content .excerpt{color:#737373;font-size:12px;margin:0}#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:13px}@media screen and (min-width:46.8em){#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:16px}}#message-threads li .thread-content .thread-subject{vertical-align:top}#message-threads li .thread-content .thread-subject .excerpt{font-weight:400}#message-threads li .thread-date{padding-left:5px;text-align:left}.bp-messages-content .actions{float:left;max-width:30%;line-height:1}.bp-messages-content .actions .bp-icons:not(.bp-hide){display:inline-block;margin:0;padding:.3em .5em}.bp-messages-content .actions .bp-icons:not(.bp-hide):before{font-size:26px}.bp-messages-content #thread-preview{border:1px solid #eaeaea;margin-top:20px}.bp-messages-content #thread-preview .preview-message{overflow:hidden}.bp-messages-content #thread-preview .preview-content{margin:.5em}.bp-messages-content #thread-preview .preview-content .preview-message{background:#fafafa;margin:10px 0;padding:1em .3em .3em}.bp-messages-content #bp-message-thread-list{border-top:1px solid #eaeaea;clear:both;list-style:none;padding:1em 0 .3em}.bp-messages-content #bp-message-thread-list li{padding:.5em}.bp-messages-content #bp-message-thread-list li:nth-child(2n) .message-content{background:#fafafa}.bp-messages-content #bp-message-thread-list .message-metadata{border-bottom:1px solid #ccc;box-shadow:2px 1px 9px 0 #eee;display:table;padding:.2em;width:100%}.bp-messages-content #bp-message-thread-list .message-metadata .avatar{width:30px}.bp-messages-content #bp-message-thread-list .message-metadata .user-link{display:block;font-size:13px;float:right}@media screen and (min-width:46.8em){.bp-messages-content #bp-message-thread-list .message-metadata .user-link{font-size:16px}}.bp-messages-content #bp-message-thread-list .message-metadata time{color:#737373;font-size:12px;padding:0 .5em}.bp-messages-content #bp-message-thread-list .message-metadata button{padding:0 .3em}.bp-messages-content #bp-message-thread-list .message-metadata button:before{font-size:20px}.bp-messages-content #bp-message-thread-list .message-content{overflow:hidden;margin:1em auto 0;width:90%}.bp-messages-content #bp-message-thread-list img.avatar{float:right;margin:0 0 0 10px}.bp-messages-content #bp-message-thread-list .actions a:before{font-size:18px}.bp-messages-content form.send-reply .avatar-box{padding:.5em 0}.bp-messages-content .preview-pane-header,.bp-messages-content .single-message-thread-header{border-bottom:1px solid #eaeaea}.bp-messages-content .preview-pane-header:after,.bp-messages-content .single-message-thread-header:after{clear:both;content:"";display:table}.bp-messages-content .preview-thread-title,.bp-messages-content .single-thread-title{font-size:16px}.bp-messages-content .preview-thread-title .messages-title,.bp-messages-content .single-thread-title .messages-title{padding-right:2em}.bp-messages-content .thread-participants{float:right;margin:5px 0;width:70%}.bp-messages-content .thread-participants dd,.bp-messages-content .thread-participants ul{margin-bottom:10px}.bp-messages-content .thread-participants ul{list-style:none}.bp-messages-content .thread-participants ul:after{clear:both;content:"";display:table}.bp-messages-content .thread-participants li{float:right;margin-right:5px}.bp-messages-content .thread-participants img{width:30px;height:30px}.bp-messages-content #bp-message-thread-list li .message-content blockquote,.bp-messages-content #bp-message-thread-list li .message-content ol,.bp-messages-content #bp-message-thread-list li .message-content ul,.bp-messages-content #thread-preview .preview-message blockquote,.bp-messages-content #thread-preview .preview-message ol,.bp-messages-content #thread-preview .preview-message ul{list-style-position:inside;margin-right:0}.bp-messages-content #thread-preview:empty,.bp-messages-content ul#message-threads:empty{display:none}.bp-messages-content #bp-message-thread-header h2:first-child,.bp-messages-content #thread-preview h2:first-child{background-color:#eaeaea;color:#555;font-weight:700;margin:0;padding:.5em}.bp-messages-content #bp-message-thread-list li a.user-link,.bp-messages-content #message-threads .thread-content a{border:0;text-decoration:none}.bp-messages-content .standard-form #subject{margin-bottom:20px}div.bp-navs#subsubnav.bp-messages-filters .user-messages-bulk-actions{margin-left:15px;max-width:42.5%}.buddypress.settings .profile-settings.bp-tables-user select{width:100%}body.buddypress.settings .wp-pwd button{vertical-align:middle}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1,body.buddypress.settings #pass1-text{width:16em}body.buddypress.settings #pass1{display:inline-block;margin-bottom:inherit}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1-text,body.buddypress.settings .pw-weak{display:none}body.buddypress.settings .show-password #pass1-text{display:inline-block;margin-bottom:inherit}body.buddypress.settings .show-password #pass1{display:none}body.buddypress.settings #your-profile #submit:disabled{color:#767676;opacity:.4}body.buddypress.settings.js .user-pass2-wrap,body.buddypress.settings.js .wp-pwd{display:none}body.buddypress.settings.no-js .wp-cancel-pw,body.buddypress.settings.no-js .wp-generate-pw,body.buddypress.settings.no-js .wp-hide-pw{display:none}body.buddypress.settings.data #buddypress.buddypress-wrap .item-body p a{text-decoration:underline}.buddypress-wrap #whats-new-post-in-box select,.buddypress-wrap .filter select{border:1px solid #d6d6d6}.buddypress-wrap input.action[disabled]{cursor:pointer;opacity:.4}.buddypress-wrap #invitation-bulk-manage[disabled],.buddypress-wrap #notification-bulk-manage[disabled]{display:none}.buddypress-wrap fieldset legend{font-size:inherit;font-weight:600}.buddypress-wrap input[type=email]:focus,.buddypress-wrap input[type=password]:focus,.buddypress-wrap input[type=tel]:focus,.buddypress-wrap input[type=text]:focus,.buddypress-wrap input[type=url]:focus,.buddypress-wrap textarea:focus{box-shadow:0 0 8px #eaeaea}.buddypress-wrap select{height:auto}.buddypress-wrap textarea{resize:vertical}.buddypress-wrap .standard-form .bp-controls-wrap{margin:1em 0}.buddypress-wrap .standard-form .groups-members-search input[type=search],.buddypress-wrap .standard-form .groups-members-search input[type=text],.buddypress-wrap .standard-form [data-bp-search] input[type=search],.buddypress-wrap .standard-form [data-bp-search] input[type=text],.buddypress-wrap .standard-form input[type=color],.buddypress-wrap .standard-form input[type=date],.buddypress-wrap .standard-form input[type=datetime-local],.buddypress-wrap .standard-form input[type=datetime],.buddypress-wrap .standard-form input[type=email],.buddypress-wrap .standard-form input[type=month],.buddypress-wrap .standard-form input[type=number],.buddypress-wrap .standard-form input[type=password],.buddypress-wrap .standard-form input[type=range],.buddypress-wrap .standard-form input[type=search],.buddypress-wrap .standard-form input[type=tel],.buddypress-wrap .standard-form input[type=text],.buddypress-wrap .standard-form input[type=time],.buddypress-wrap .standard-form input[type=url],.buddypress-wrap .standard-form input[type=week],.buddypress-wrap .standard-form select,.buddypress-wrap .standard-form textarea{background-color:#fafafa;border:1px solid #d6d6d6;border-radius:0;font:inherit;font-size:100%;padding:.5em}.buddypress-wrap .standard-form input[required],.buddypress-wrap .standard-form select[required],.buddypress-wrap .standard-form textarea[required]{box-shadow:none;border-width:2px;outline:0}.buddypress-wrap .standard-form input[required]:invalid,.buddypress-wrap .standard-form select[required]:invalid,.buddypress-wrap .standard-form textarea[required]:invalid{border-color:#b71717}.buddypress-wrap .standard-form input[required]:valid,.buddypress-wrap .standard-form select[required]:valid,.buddypress-wrap .standard-form textarea[required]:valid{border-color:#91cc2c}.buddypress-wrap .standard-form input[required]:focus,.buddypress-wrap .standard-form select[required]:focus,.buddypress-wrap .standard-form textarea[required]:focus{border-color:#d6d6d6;border-width:1px}.buddypress-wrap .standard-form input.invalid[required],.buddypress-wrap .standard-form select.invalid[required],.buddypress-wrap .standard-form textarea.invalid[required]{border-color:#b71717}.buddypress-wrap .standard-form input:not(.small),.buddypress-wrap .standard-form textarea{width:100%}.buddypress-wrap .standard-form input[type=checkbox],.buddypress-wrap .standard-form input[type=radio]{margin-left:5px;width:auto}.buddypress-wrap .standard-form select{padding:3px}.buddypress-wrap .standard-form textarea{height:120px}.buddypress-wrap .standard-form textarea#message_content{height:200px}.buddypress-wrap .standard-form input[type=password]{margin-bottom:5px}.buddypress-wrap .standard-form input:focus,.buddypress-wrap .standard-form select:focus,.buddypress-wrap .standard-form textarea:focus{background-color:#fafafa;color:#555;outline:0}.buddypress-wrap .standard-form label,.buddypress-wrap .standard-form span.label{display:block;font-weight:600;margin:15px 0 5px;width:auto}.buddypress-wrap .standard-form a.clear-value{display:block;margin-top:5px;outline:0}.buddypress-wrap .standard-form .submit{clear:both;padding:15px 0 0}.buddypress-wrap .standard-form p.submit{margin-bottom:0}.buddypress-wrap .standard-form div.submit input{margin-left:15px}.buddypress-wrap .standard-form #invite-list label,.buddypress-wrap .standard-form p label{font-weight:400;margin:auto}.buddypress-wrap .standard-form p.description{color:#737373;margin:5px 0}.buddypress-wrap .standard-form div.checkbox label:nth-child(n+2),.buddypress-wrap .standard-form div.radio div label{color:#737373;font-size:100%;font-weight:400;margin:5px 0 0}.buddypress-wrap .standard-form#send-reply textarea{width:97.5%}.buddypress-wrap .standard-form#sidebar-login-form label{margin-top:5px}.buddypress-wrap .standard-form#sidebar-login-form input[type=password],.buddypress-wrap .standard-form#sidebar-login-form input[type=text]{padding:4px;width:95%}.buddypress-wrap .standard-form.profile-edit input:focus{background:#fff}@media screen and (min-width:46.8em){.buddypress-wrap .standard-form .left-menu{float:right}.buddypress-wrap .standard-form #invite-list ul{list-style:none;margin:1%}.buddypress-wrap .standard-form #invite-list ul li{margin:0 1% 0 0}.buddypress-wrap .standard-form .main-column{margin-right:190px}.buddypress-wrap .standard-form .main-column ul#friend-list{clear:none;float:right}.buddypress-wrap .standard-form .main-column ul#friend-list h4{clear:none}}.buddypress-wrap .standard-form .bp-tables-user label{margin:0}.buddypress-wrap .signup-form label,.buddypress-wrap .signup-form legend{font-weight:400}body.no-js .buddypress #delete_inbox_messages,body.no-js .buddypress #delete_sentbox_messages,body.no-js .buddypress #message-type-select,body.no-js .buddypress #messages-bulk-management #select-all-messages,body.no-js .buddypress #notifications-bulk-management #select-all-notifications,body.no-js .buddypress label[for=message-type-select]{display:none}.buddypress-wrap .wp-editor-wrap .wp-editor-wrap button,.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=button],.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=submit],.buddypress-wrap .wp-editor-wrap a.button,.buddypress-wrap .wp-editor-wrap input[type=reset]{padding:0 8px 1px}.buddypress-wrap .select-wrap{border:1px solid #eee}.buddypress-wrap .select-wrap label{display:inline}.buddypress-wrap .select-wrap select::-ms-expand{display:none}.buddypress-wrap .select-wrap select{-webkit-appearance:none;-o-appearance:none;appearance:none;border:0;cursor:pointer;margin-left:-25px;padding:6px 10px 6px 25px;position:relative;text-indent:-2px;z-index:1;width:auto}.buddypress-wrap .select-wrap select,.buddypress-wrap .select-wrap select:active,.buddypress-wrap .select-wrap select:focus{background:0 0}.buddypress-wrap .select-wrap span.select-arrow{display:inline-block;position:relative;z-index:0}.buddypress-wrap .select-wrap span.select-arrow:before{color:#ccc;content:"\25BC"}.buddypress-wrap .select-wrap:focus .select-arrow:before,.buddypress-wrap .select-wrap:hover .select-arrow:before{color:#a6a6a6}.buddypress-wrap .bp-search form:focus,.buddypress-wrap .bp-search form:hover,.buddypress-wrap .select-wrap:focus,.buddypress-wrap .select-wrap:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}@media screen and (min-width:32em){.buddypress-wrap .invitations-options-nav .select-wrap,.buddypress-wrap .notifications-options-nav .select-wrap{float:right}}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after,.buddypress-wrap .bp-messages-search-form:before{content:" ";display:table}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after{clear:both}.buddypress-wrap form#group-members-search,.buddypress-wrap form.bp-dir-search-form,.buddypress-wrap form.bp-messages-search-form,.buddypress-wrap form[data-bp-search].bp-invites-search-form{border:1px solid #eee;width:100%}.buddypress-wrap form#group-members-search label,.buddypress-wrap form.bp-dir-search-form label,.buddypress-wrap form.bp-messages-search-form label,.buddypress-wrap form[data-bp-search].bp-invites-search-form label{margin:0}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{background:0 0;border:0;border-radius:0;background-clip:padding-box}.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{float:right;line-height:2;padding:3px 10px;width:78%}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit]{float:left;font-size:inherit;font-weight:400;line-height:1.5;padding:3px .7em;text-align:center;text-transform:none;width:20%}.buddypress-wrap form#group-members-search button[type=submit] span,.buddypress-wrap form.bp-dir-search-form button[type=submit] span,.buddypress-wrap form.bp-messages-search-form button[type=submit] span,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}.buddypress-wrap form#group-members-search button[type=submit].bp-show,.buddypress-wrap form.bp-dir-search-form button[type=submit].bp-show,.buddypress-wrap form.bp-messages-search-form button[type=submit].bp-show,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit].bp-show{height:auto;right:0;overflow:visible;position:static;top:0}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-button,.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-decoration{display:none}.buddypress-wrap form#group-members-search:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}.buddypress-wrap ul.filters li form label input{line-height:1.4;padding:.1em .7em}.buddypress-wrap .current-group-type,.buddypress-wrap .current-member-type{font-style:italic}.buddypress-wrap .dir-form{clear:both}.budypress.no-js form.bp-dir-search-form button[type=submit]{height:auto;right:0;overflow:visible;position:static;top:0}.bp-user [data-bp-search] form input[type=search],.bp-user [data-bp-search] form input[type=text]{padding:6px 10px 7px}.buddypress-wrap .bp-tables-user,.buddypress-wrap table.forum,.buddypress-wrap table.wp-profile-fields{width:100%}.buddypress-wrap .bp-tables-user thead tr,.buddypress-wrap table.forum thead tr,.buddypress-wrap table.wp-profile-fields thead tr{background:0 0;border-bottom:2px solid #ccc}.buddypress-wrap .bp-tables-user tbody tr,.buddypress-wrap table.forum tbody tr,.buddypress-wrap table.wp-profile-fields tbody tr{background:#fafafa}.buddypress-wrap .bp-tables-user tr td,.buddypress-wrap .bp-tables-user tr th,.buddypress-wrap table.forum tr td,.buddypress-wrap table.forum tr th,.buddypress-wrap table.wp-profile-fields tr td,.buddypress-wrap table.wp-profile-fields tr th{padding:.5em;vertical-align:middle}.buddypress-wrap .bp-tables-user tr td.label,.buddypress-wrap table.forum tr td.label,.buddypress-wrap table.wp-profile-fields tr td.label{border-left:1px solid #eaeaea;font-weight:600;width:25%}.buddypress-wrap .bp-tables-user tr.alt td,.buddypress-wrap table.wp-profile-fields tr.alt td{background:#fafafa}.buddypress-wrap table.profile-fields .data{padding:.5em 1em}.buddypress-wrap table.profile-fields tr:last-child{border-bottom:none}.buddypress-wrap table.notifications td{padding:1em .5em}.buddypress-wrap table.notifications .bulk-select-all,.buddypress-wrap table.notifications .bulk-select-check{width:7%}.buddypress-wrap table.notifications .bulk-select-check{vertical-align:middle}.buddypress-wrap table.notifications .date,.buddypress-wrap table.notifications .notification-description,.buddypress-wrap table.notifications .notification-since,.buddypress-wrap table.notifications .title{width:39%}.buddypress-wrap table.notifications .actions,.buddypress-wrap table.notifications .notification-actions{width:15%}.buddypress-wrap table.notification-settings th.title,.buddypress-wrap table.profile-settings th.title{width:80%}.buddypress-wrap table.notifications .notification-actions a.delete,.buddypress-wrap table.notifications .notification-actions a.mark-read{display:inline-block}.buddypress-wrap table.notification-settings{margin-bottom:15px;text-align:right}.buddypress-wrap #groups-notification-settings{margin-bottom:0}.buddypress-wrap table.notification-settings td:first-child,.buddypress-wrap table.notification-settings th.icon,.buddypress-wrap table.notifications td:first-child,.buddypress-wrap table.notifications th.icon{display:none}.buddypress-wrap table.notification-settings .no,.buddypress-wrap table.notification-settings .yes{text-align:center;width:40px;vertical-align:middle}.buddypress-wrap table#message-threads{clear:both}.buddypress-wrap table#message-threads .thread-info{min-width:40%}.buddypress-wrap table#message-threads .thread-info p{margin:0}.buddypress-wrap table#message-threads .thread-info p.thread-excerpt{color:#737373;font-size:12px;margin-top:3px}.buddypress-wrap table.profile-fields{margin-bottom:20px}.buddypress-wrap table.profile-fields:last-child{margin-bottom:0}.buddypress-wrap table.profile-fields p{margin:0}.buddypress-wrap table.profile-fields p:last-child{margin-top:0}.bp-screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-vert{display:flex;align-items:center}.bp-hide{display:none}.bp-show{height:auto;right:0;overflow:visible;position:static;top:0}.buddypress .buddypress-wrap .activity-read-more a,.buddypress .buddypress-wrap .comment-reply-link,.buddypress .buddypress-wrap .generic-button a,.buddypress .buddypress-wrap a.bp-title-button,.buddypress .buddypress-wrap a.button,.buddypress .buddypress-wrap button,.buddypress .buddypress-wrap input[type=button],.buddypress .buddypress-wrap input[type=reset],.buddypress .buddypress-wrap input[type=submit],.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a{background:#fff;border-color:#ccc;border-style:solid;border-width:1px;border-radius:0;color:#555;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:400;outline:0;padding:.3em .5em;text-align:center;text-decoration:none;width:auto;line-height:1}.buddypress .buddypress-wrap a.button.dashicons,.buddypress .buddypress-wrap button.dashicons{font-family:dashicons}.buddypress .buddypress-wrap .button-small[type=button]{padding:0 8px 1px}.buddypress .buddypress-wrap .activity-read-more a:focus,.buddypress .buddypress-wrap .activity-read-more a:hover,.buddypress .buddypress-wrap .button-nav li a:focus,.buddypress .buddypress-wrap .button-nav li a:hover,.buddypress .buddypress-wrap .button-nav li.current a,.buddypress .buddypress-wrap .comment-reply-link:focus,.buddypress .buddypress-wrap .comment-reply-link:hover,.buddypress .buddypress-wrap .generic-button a:focus,.buddypress .buddypress-wrap .generic-button a:hover,.buddypress .buddypress-wrap a.button:focus,.buddypress .buddypress-wrap a.button:hover,.buddypress .buddypress-wrap button:focus,.buddypress .buddypress-wrap button:hover,.buddypress .buddypress-wrap input[type=button]:focus,.buddypress .buddypress-wrap input[type=button]:hover,.buddypress .buddypress-wrap input[type=reset]:focus,.buddypress .buddypress-wrap input[type=reset]:hover,.buddypress .buddypress-wrap input[type=submit]:focus,.buddypress .buddypress-wrap input[type=submit]:hover{background:#ededed;border-color:#999;color:#333;outline:0;text-decoration:none}.buddypress .buddypress-wrap a.disabled,.buddypress .buddypress-wrap button.disabled,.buddypress .buddypress-wrap button.pending,.buddypress .buddypress-wrap div.pending a,.buddypress .buddypress-wrap input[type=button].disabled,.buddypress .buddypress-wrap input[type=button].pending,.buddypress .buddypress-wrap input[type=reset].disabled,.buddypress .buddypress-wrap input[type=reset].pending,.buddypress .buddypress-wrap input[type=submit].pending,.buddypress .buddypress-wrap input[type=submit]:disabled,.buddypress .buddypress-wrap input[type=submit][disabled=disabled]{border-color:#eee;color:#767676;cursor:default}.buddypress .buddypress-wrap a.disabled:hover,.buddypress .buddypress-wrap button.disabled:hover,.buddypress .buddypress-wrap button.pending:hover,.buddypress .buddypress-wrap div.pending a:hover,.buddypress .buddypress-wrap input[type=button]:hover.disabled,.buddypress .buddypress-wrap input[type=button]:hover.pending,.buddypress .buddypress-wrap input[type=reset]:hover.disabled,.buddypress .buddypress-wrap input[type=reset]:hover.pending,.buddypress .buddypress-wrap input[type=submit]:hover.disabled,.buddypress .buddypress-wrap input[type=submit]:hover.pending{border-color:#eee;color:#767676}.buddypress .buddypress-wrap button.text-button,.buddypress .buddypress-wrap input.text-button{background:0 0;border:0;box-shadow:none;color:#767676}.buddypress .buddypress-wrap button.text-button.small,.buddypress .buddypress-wrap input.text-button.small{font-size:13px}.buddypress .buddypress-wrap button.text-button:focus,.buddypress .buddypress-wrap button.text-button:hover,.buddypress .buddypress-wrap input.text-button:focus,.buddypress .buddypress-wrap input.text-button:hover{background:0 0;text-decoration:underline}.buddypress .buddypress-wrap .activity-list a.button{border:none}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover{color:#1fb3dd}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.invite-button:hover{color:#a00}.buddypress .buddypress-wrap #item-buttons:empty{display:none}.buddypress .buddypress-wrap input:disabled:focus,.buddypress .buddypress-wrap input:disabled:hover{background:0 0}.buddypress .buddypress-wrap .text-links-list a.button{background:0 0;border:none;border-left:1px solid #eee;color:#737373;display:inline-block;padding:.3em 1em}.buddypress .buddypress-wrap .text-links-list a.button:visited{color:#d6d6d6}.buddypress .buddypress-wrap .text-links-list a.button:focus,.buddypress .buddypress-wrap .text-links-list a.button:hover{color:#5087e5}.buddypress .buddypress-wrap .text-links-list a:first-child{padding-right:0}.buddypress .buddypress-wrap .text-links-list a:last-child{border-left:none}.buddypress .buddypress-wrap .bp-list.grid .action a,.buddypress .buddypress-wrap .bp-list.grid .action button{border:1px solid #ccc;display:block;margin:0}.buddypress .buddypress-wrap .bp-list.grid .action a:focus,.buddypress .buddypress-wrap .bp-list.grid .action a:hover,.buddypress .buddypress-wrap .bp-list.grid .action button:focus,.buddypress .buddypress-wrap .bp-list.grid .action button:hover{background:#ededed}.buddypress #buddypress .create-button{background:0 0;text-align:center}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{text-decoration:underline}@media screen and (min-width:46.8em){.buddypress #buddypress .create-button{float:left}}.buddypress #buddypress .create-button a{border:1px solid #ccc;border-radius:5px;background-clip:padding-box;box-shadow:inset 0 0 6px 0 #eaeaea;margin:.2em 0;width:auto}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{background:0 0;border-color:#ccc;box-shadow:inset 0 0 12px 0 #eaeaea}@media screen and (min-width:46.8em){.buddypress #buddypress.bp-dir-vert-nav .create-button{float:none;padding-top:2em}.buddypress #buddypress.bp-dir-vert-nav .create-button a{margin-left:.5em}}.buddypress #buddypress.bp-dir-hori-nav .create-button{float:right}.buddypress #buddypress.bp-dir-hori-nav .create-button a,.buddypress #buddypress.bp-dir-hori-nav .create-button a:hover{background:0 0;border:0;box-shadow:none;margin:0}.buddypress-wrap button.ac-reply-cancel,.buddypress-wrap button.bp-icons{background:0 0;border:0}.buddypress-wrap button.bp-icons:focus,.buddypress-wrap button.bp-icons:hover{background:0 0}.buddypress-wrap button.ac-reply-cancel:focus,.buddypress-wrap button.ac-reply-cancel:hover{background:0 0;text-decoration:underline}.buddypress-wrap .bp-invites-content li .invite-button span.icons:before,.buddypress-wrap .bp-invites-filters .invite-button span.icons:before,.buddypress-wrap .bp-messages-filters li a.messages-button:before,.buddypress-wrap .feed a:before,.buddypress-wrap .filter label:before{font-family:dashicons;font-size:18px}.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:27px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:32px}}.buddypress-wrap .bp-list a.button.invite-button:focus,.buddypress-wrap .bp-list a.button.invite-button:hover{background:0 0}.buddypress-wrap .filter label:before{content:"\f536"}.buddypress-wrap div.feed a:before,.buddypress-wrap li.feed a:before{content:"\f303"}.buddypress-wrap ul.item-list li .invite-button:not(.group-remove-invite-button) span.icons:before{content:"\f502"}.buddypress-wrap ul.item-list li .group-remove-invite-button span.icons:before,.buddypress-wrap ul.item-list li.selected .invite-button span.icons:before{content:"\f153"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-next-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-next-page:before{content:"\f345"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-prev-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-prev-page:before{content:"\f341"}.buddypress-wrap .warn{color:#b71717}.buddypress-wrap .bp-messages{border:1px solid #ccc;margin:0 0 15px}.buddypress-wrap .bp-messages .sitewide-notices{display:block;margin:5px;padding:.5em}.buddypress-wrap .bp-messages.info{margin-bottom:0}.buddypress-wrap .bp-messages.updated{clear:both;display:block}.buddypress-wrap .bp-messages.bp-user-messages-feedback{border:0}.buddypress-wrap #group-create-body .bp-cover-image-status p.warning{background:#0b80a4;border:0;box-shadow:0 0 3px 0 rgba(0,0,0,.2);color:#fff}.buddypress-wrap .bp-feedback:not(.custom-homepage-info){display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;align-items:stretch;align-items:center}.buddypress-wrap .bp-feedback{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;margin:10px 0;position:relative}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback span.bp-icon{color:#fff;display:block;font-family:dashicons;right:0;margin-left:10px;position:relative;padding:0 .5em}.buddypress-wrap .bp-feedback .bp-help-text{font-style:italic}.buddypress-wrap .bp-feedback .text{font-size:14px;margin:0;padding:.5em 0}.buddypress-wrap .bp-feedback.no-icon{padding:.5em}.buddypress-wrap .bp-feedback.small:before{line-height:inherit}.buddypress-wrap a[data-bp-close] span:before,.buddypress-wrap button[data-bp-close] span:before{font-size:32px}.buddypress-wrap a[data-bp-close],.buddypress-wrap button[data-bp-close]{border:0;position:absolute;top:10px;left:10px;width:32px}.buddypress-wrap .bp-feedback.no-icon a[data-bp-close],.buddypress-wrap .bp-feedback.no-icon button[data-bp-close]{top:-6px;left:6px}.buddypress-wrap button[data-bp-close]:hover{background-color:transparent}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback .bp-icon{font-size:20px;padding:0 2px}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon,.buddypress-wrap .bp-feedback.loading .bp-icon,.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{display:flex;align-items:center;align-self:stretch}.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon{background-color:#0b80a4}.buddypress-wrap .bp-feedback.help .bp-icon:before,.buddypress-wrap .bp-feedback.info .bp-icon:before{content:"\f348"}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{background-color:#d33}.buddypress-wrap .bp-feedback.error .bp-icon:before,.buddypress-wrap .bp-feedback.warning .bp-icon:before{content:"\f534"}.buddypress-wrap .bp-feedback.loading .bp-icon{background-color:#ffd087}.buddypress-wrap .bp-feedback.loading .bp-icon:before{content:"\f469"}.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon{background-color:#8a2}.buddypress-wrap .bp-feedback.success .bp-icon:before,.buddypress-wrap .bp-feedback.updated .bp-icon:before{content:"\f147"}.buddypress-wrap .bp-feedback.help .bp-icon:before{content:"\f468"}.buddypress-wrap #pass-strength-result{background-color:#eee;border-color:#ddd;border-style:solid;border-width:1px;display:none;font-weight:700;margin:10px 0 10px 0;padding:.5em;text-align:center;width:auto}.buddypress-wrap #pass-strength-result.show{display:block}.buddypress-wrap #pass-strength-result.mismatch{background-color:#333;border-color:transparent;color:#fff}.buddypress-wrap #pass-strength-result.bad,.buddypress-wrap #pass-strength-result.error{background-color:#ffb78c;border-color:#ff853c;color:#333}.buddypress-wrap #pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040;color:#333}.buddypress-wrap #pass-strength-result.good{background-color:#ffec8b;border-color:#fc0;color:#333}.buddypress-wrap #pass-strength-result.strong{background-color:#66d66e;border-color:#438c48;color:#333}.buddypress-wrap .standard-form#signup_form div div.error{background:#faa;color:#a00;margin:0 0 10px 0;padding:.5em;width:90%}.buddypress-wrap .accept,.buddypress-wrap .reject{float:right;margin-right:10px}.buddypress-wrap .members-list.grid .bp-ajax-message{background:rgba(255,255,255,.9);border:1px solid #eee;font-size:14px;right:2%;position:absolute;padding:.5em 1em;left:2%;top:30px}body.create-blog #buddypress .error,body.create-blog #buddypress .success{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;padding:10px 15px;background-color:#fff}body.create-blog #buddypress .error{border-right:4px solid #d33}body.create-blog #buddypress .success{border-right:4px solid #8a2}.buddypress.widget .item-options{font-size:12px;margin:0 0 1em;padding:1em 0}.buddypress.widget .bp-login-widget-user-avatar{float:right}.buddypress.widget .bp-login-widget-user-links{margin-right:70px}.buddypress.widget ul.item-list{list-style:none;margin:10px 0}.buddypress.widget ul.activity-list{padding:0}.buddypress.widget ul.activity-list blockquote{margin:0 0 1.5em;overflow:visible;padding:0 .75em .75em 0}.buddypress.widget ul.activity-list img{margin-bottom:.5em}.buddypress.widget ul.activity-list li{border-bottom:1px solid #ccc;margin-bottom:1em}.buddypress.widget ul.activity-list li .activity-header p{margin-bottom:.5em}.buddypress.widget ul.activity-list li:last-child{border-bottom:0}.buddypress.widget div.activity-list blockquote{padding:0;border:none}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini){position:relative;box-shadow:-1px 0 4px rgba(0,0,0,.15);padding:0 1em}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after,.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{position:absolute;right:15px;display:block;width:0;height:0;border-style:solid;border-color:transparent;content:""}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{bottom:-18px;border-top-color:rgba(0,0,0,.15);border-width:9px;right:14px}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after{bottom:-16px;border-top-color:#fff;border-width:8px}.buddypress.widget div.activity-list blockquote .activity-item.mini .avatar{display:inline-block;width:20px;height:20px;vertical-align:middle;margin-left:2px}.buddypress.widget div.activity-list footer{display:flex;align-items:center}.buddypress.widget div.activity-list footer img.avatar{display:inline-block;border:none;margin-left:.5em}.buddypress.widget div.activity-list footer .activity-time-since{font-size:90%}.buddypress.widget .avatar-block{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}.buddypress.widget .avatar-block img{margin:.5em}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#friends-list li:before,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#groups-list li:before,.buddypress.widget ul#members-list li:after,.buddypress.widget ul#members-list li:before{content:" ";display:table}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#members-list li:after{clear:both}.buddypress.widget ul#friends-list li,.buddypress.widget ul#groups-list li,.buddypress.widget ul#members-list li{margin-bottom:1em}.buddypress.widget ul#friends-list li .item-avatar,.buddypress.widget ul#groups-list li .item-avatar,.buddypress.widget ul#members-list li .item-avatar{float:right;width:60px}.buddypress.widget ul#friends-list li .item,.buddypress.widget ul#groups-list li .item,.buddypress.widget ul#members-list li .item{margin-right:70px}.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:column nowrap;flex-flow:column nowrap}@media screen and (min-width:32em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{border:1px solid #eee;align-items:stretch;-moz-flex:1 1 46%;-o-flex:1 1 46%;flex:1 1 46%;margin:2%}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 20%;-o-flex:0 1 20%;flex:0 1 20%}}.buddypress-wrap .buddypress.widget ul#friends-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#groups-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#members-list li .item-avatar{padding:.5em;text-align:center}.buddypress-wrap .buddypress.widget ul#friends-list li .item,.buddypress-wrap .buddypress.widget ul#groups-list li .item,.buddypress-wrap .buddypress.widget ul#members-list li .item{padding:.5em}.buddypress-wrap .buddypress.widget ul#friends-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#groups-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#members-list li .item .item-meta{font-size:12px;overflow-wrap:break-word}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{margin:10px -2%;width:100%}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 auto;-o-flex:0 1 auto;flex:0 1 auto;margin:10px 2% 1%;width:46%}}.buddypress-wrap .buddypress.widget blockquote{margin:0 0 1.5em;overflow:visible;padding:0 .75em .75em 0}#buddypress-wrap *{transition:opacity .1s ease-in-out .1s}#buddypress-wrap a.button,#buddypress-wrap a.generic-button,#buddypress-wrap button,#buddypress-wrap input[type=reset],#buddypress-wrap input[type=submit]{transition:background .1s ease-in-out .1s,color .1s ease-in-out .1s,border-color .1s ease-in-out .1s}.buddypress-wrap a.loading,.buddypress-wrap input.loading{animation:loader-pulsate .5s infinite ease-in-out alternate;border-color:#aaa}@keyframes loader-pulsate{from{border-color:#aaa;box-shadow:0 0 6px #ccc}to{border-color:#ccc;box-shadow:0 0 6px #f8f8f8}}.buddypress-wrap a.loading:hover,.buddypress-wrap input.loading:hover{color:#777}[data-bp-tooltip]{position:relative}[data-bp-tooltip]:after{background-color:#fff;display:none;opacity:0;position:absolute;transform:translate3d(0,0,0);visibility:hidden}[data-bp-tooltip]:after{border:1px solid #737373;border-radius:1px;box-shadow:-4px 4px 8px rgba(0,0,0,.2);color:#333;content:attr(data-bp-tooltip);font-family:"Helvetica Neue",helvetica,arial,san-serif;font-size:12px;font-weight:400;letter-spacing:normal;line-height:1.25;max-width:200px;padding:5px 8px;pointer-events:none;text-shadow:none;text-transform:none;transition:all 1.5s ease;white-space:nowrap;word-wrap:break-word;z-index:100000}[data-bp-tooltip]:active:after,[data-bp-tooltip]:focus:after,[data-bp-tooltip]:hover:after{display:block;opacity:1;overflow:visible;visibility:visible}[data-bp-tooltip=""]{display:none;opacity:0;visibility:hidden}.bp-tooltip:after{right:50%;margin-top:7px;top:110%;transform:translate(50%,0)}.user-list .bp-tooltip:after{right:0;transform:translate(0,0)}@media screen and (min-width:46.8em){.user-list .bp-tooltip:after{right:auto;left:0;transform:translate(0,0)}}.activity-list .bp-tooltip:after,.activity-meta-action .bp-tooltip:after,.avatar-block .item-avatar .bp-tooltip:after,.notification-actions .bp-tooltip:after,.participants-list .bp-tooltip:after{right:0;transform:translate(0,0)}.bp-invites-content .bp-tooltip:after,.message-metadata .actions .bp-tooltip:after,.single-message-thread-header .actions .bp-tooltip:after{right:auto;left:0;transform:translate(0,0)}.bp-invites-content #send-invites-editor .bp-tooltip:after{right:0;left:auto}#item-body,.single-screen-navs{box-sizing:border-box}.grid>li,.grid>li .generic-button a{box-sizing:border-box}.grid>li{border-bottom:0;padding-bottom:10px;padding-top:0}.grid>li .list-wrap{background:#fafafa;border:1px solid #eee;padding-bottom:15px;position:relative;overflow:hidden;padding-top:14px}.grid>li .list-wrap .list-title{padding:.5em}.grid>li .list-wrap .update{color:#737373;padding:.5em 2em}.grid>li .item-avatar{text-align:center}.grid>li .item-avatar .avatar{border-radius:50%;display:inline-block;width:50%}@media screen and (min-width:24em){.grid.members-list .list-wrap{min-height:340px}.grid.members-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.members-group-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.groups-list .list-wrap{min-height:470px}.grid.groups-list .list-wrap .item-block{min-height:6rem}.grid.groups-list .list-wrap .group-desc{margin:15px auto 0;min-height:5em;overflow:hidden}.grid.groups-list .list-wrap .group-details,.grid.groups-list .list-wrap .item-desc,.grid.groups-list .list-wrap .last-activity{margin-bottom:0}.grid.groups-list .list-wrap .group-details p,.grid.groups-list .list-wrap .item-desc p,.grid.groups-list .list-wrap .last-activity p{margin-bottom:0}.grid.blogs-list .list-wrap{min-height:350px}.grid.blogs-list .list-wrap .item-block{margin:0 auto;min-height:7rem}}@media screen and (min-width:24em){.grid>li.item-entry{float:right;margin:0}.grid.two>li{padding-bottom:20px}}@media screen and (min-width:24em) and (min-width:75em){.grid.two>li .list-wrap{max-width:500px;margin:0 auto}}@media screen and (min-width:24em){.grid.three>li,.grid.two>li{width:50%}.grid.three>li:nth-child(odd),.grid.two>li:nth-child(odd){padding-left:10px}.grid.three>li:nth-child(even),.grid.two>li:nth-child(even){padding-right:10px}.grid.three>li .item,.grid.two>li .item{margin:1rem auto 0;width:80%}.grid.three>li .item .item-title,.grid.two>li .item .item-title{width:auto}}@media screen and (min-width:46.8em){.grid.three>li{padding-top:0;width:33.333333%;width:calc(100% / 3)}.grid.three>li:nth-child(1n+1){padding-right:5px;padding-left:5px}.grid.three>li:nth-child(3n+3){padding-right:5px;padding-left:0}.grid.three>li:nth-child(3n+1){padding-right:0;padding-left:5px}}@media screen and (min-width:46.8em){.grid.four>li{width:25%}.grid.four>li:nth-child(1n+1){padding-right:5px;padding-left:5px}.grid.four>li:nth-child(4n+4){padding-right:5px;padding-left:0}.grid.four>li:nth-child(4n+1){padding-right:0;padding-left:5px}}.buddypress-wrap .grid.bp-list{padding-top:1em}.buddypress-wrap .grid.bp-list>li{border-bottom:none}.buddypress-wrap .grid.bp-list>li .list-wrap{padding-bottom:3em}.buddypress-wrap .grid.bp-list>li .item-avatar{margin:0;text-align:center;width:auto}.buddypress-wrap .grid.bp-list>li .item-avatar img.avatar{display:inline-block;height:auto;width:50%}.buddypress-wrap .grid.bp-list>li .item-meta,.buddypress-wrap .grid.bp-list>li .list-title{float:none;text-align:center}.buddypress-wrap .grid.bp-list>li .list-title{font-size:inherit;line-height:1.1}.buddypress-wrap .grid.bp-list>li .item{font-size:18px;right:0;margin:0 auto;text-align:center;width:96%}@media screen and (min-width:46.8em){.buddypress-wrap .grid.bp-list>li .item{font-size:22px}}.buddypress-wrap .grid.bp-list>li .item .group-desc,.buddypress-wrap .grid.bp-list>li .item .item-block{float:none;width:96%}.buddypress-wrap .grid.bp-list>li .item .item-block{margin-bottom:10px}.buddypress-wrap .grid.bp-list>li .item .last-activity{margin-top:5px}.buddypress-wrap .grid.bp-list>li .item .group-desc{clear:none}.buddypress-wrap .grid.bp-list>li .item .user-update{clear:both;text-align:right}.buddypress-wrap .grid.bp-list>li .item .activity-read-more a{display:inline}.buddypress-wrap .grid.bp-list>li .action{bottom:5px;float:none;height:auto;right:0;margin:0;padding:0 5px;position:absolute;text-align:center;top:auto;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button{float:none;margin:5px 0 0;text-align:center;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button a,.buddypress-wrap .grid.bp-list>li .action .generic-button button{width:100%}.buddypress-wrap .grid.bp-list>li .avatar,.buddypress-wrap .grid.bp-list>li .item,.buddypress-wrap .grid.bp-list>li .item-avatar{float:none}.buddypress-wrap .blogs-list.grid.two>li .blogs-title{min-height:5em}.buddypress-wrap .grid.four>li .group-desc,.buddypress-wrap .grid.three>li .group-desc{min-height:8em}.buddypress-wrap .blogs-list.grid.four>li,.buddypress-wrap .blogs-list.grid.three>li{min-height:350px}.buddypress-wrap .blogs-list.grid.four>li .last-activity,.buddypress-wrap .blogs-list.grid.three>li .last-activity{margin-bottom:0}.buddypress-wrap .blogs-list.grid.four>li .last-post,.buddypress-wrap .blogs-list.grid.three>li .last-post{margin-top:0}.buddypress:not(.logged-in) .grid.bp-list .list-wrap{padding-bottom:5px}.buddypress:not(.logged-in) .grid.groups-list .list-wrap{min-height:430px}.buddypress:not(.logged-in) .grid.members-list .list-wrap{min-height:300px}.buddypress:not(.logged-in) .grid.blogs-list .list-wrap{min-height:320px}@media screen and (min-width:46.8em){.bp-single-vert-nav .bp-navs.vertical{overflow:visible}.bp-single-vert-nav .bp-navs.vertical ul{border-left:1px solid #d6d6d6;border-bottom:0;float:right;margin-left:-1px;width:25%}.bp-single-vert-nav .bp-navs.vertical li{float:none;margin-left:0}.bp-single-vert-nav .bp-navs.vertical li.selected a{background:#ccc;color:#333}.bp-single-vert-nav .bp-navs.vertical li:focus,.bp-single-vert-nav .bp-navs.vertical li:hover{background:#ccc}.bp-single-vert-nav .bp-navs.vertical li span{background:#d6d6d6;border-radius:10%;float:left;margin-left:2px}.bp-single-vert-nav .bp-navs.vertical li:hover span{border-color:#eaeaea}.bp-single-vert-nav .bp-navs.vertical.tabbed-links li.selected a{padding-right:0}.bp-single-vert-nav .bp-wrap{margin-bottom:15px}.bp-single-vert-nav .bp-wrap .group-nav-tabs.groups-nav ul li,.bp-single-vert-nav .bp-wrap .user-nav-tabs.users-nav ul li{right:1px;position:relative}.bp-single-vert-nav .item-body:not(#group-create-body){background:#fff;border-right:1px solid #d6d6d6;float:left;margin:0;min-height:400px;padding:0 1em 0 0;width:calc(75% + 1px)}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:#eaeaea;margin:0 -5px 0 0;width:auto}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li{font-size:16px;margin:10px 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border-left:1px solid #ccc;padding:0 .5em}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:focus,.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:hover{background:0 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current a{background:0 0;color:#333;text-decoration:underline}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li:last-child a{border:none}.bp-dir-vert-nav .dir-navs{float:right;right:1px;position:relative;width:20%}.bp-dir-vert-nav .dir-navs ul li{float:none;overflow:hidden;width:auto}.bp-dir-vert-nav .dir-navs ul li.selected{border:1px solid #eee}.bp-dir-vert-nav .dir-navs ul li.selected a{background:#555;color:#fff}.bp-dir-vert-nav .dir-navs ul li.selected a span{background:#eaeaea;border-color:#ccc;color:#5087e5}.bp-dir-vert-nav .dir-navs ul li a:focus,.bp-dir-vert-nav .dir-navs ul li a:hover{background:#ccc;color:#333}.bp-dir-vert-nav .dir-navs ul li a:focus span,.bp-dir-vert-nav .dir-navs ul li a:hover span{border:1px solid #555}.bp-dir-vert-nav .screen-content{border-right:1px solid #d6d6d6;margin-right:20%;overflow:hidden;padding:0 1em 2em 0}.bp-dir-vert-nav .screen-content .subnav-filters{margin-top:0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:hover{background:0 0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected{background:0 0;border:1px solid #d6d6d6;border-left-color:#fff}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a{background:0 0;color:#333;font-weight:600}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a span{background:#555;border:1px solid #d6d6d6;color:#fff}}
bp-templates/bp-nouveau/css/buddypress.css CHANGED
@@ -3071,7 +3071,8 @@ body.register .buddypress-wrap .page ul {
3071
  .message-action-star:before,
3072
  .message-action-unstar:before,
3073
  .message-action-view:before,
3074
- .message-action-delete:before {
 
3075
  font-family: dashicons;
3076
  font-size: 18px;
3077
  }
@@ -3094,6 +3095,10 @@ body.register .buddypress-wrap .page ul {
3094
  content: "\f153";
3095
  }
3096
 
 
 
 
 
3097
  .message-action-delete:hover:before {
3098
  color: #a00;
3099
  }
3071
  .message-action-star:before,
3072
  .message-action-unstar:before,
3073
  .message-action-view:before,
3074
+ .message-action-delete:before,
3075
+ .message-action-exit:before {
3076
  font-family: dashicons;
3077
  font-size: 18px;
3078
  }
3095
  content: "\f153";
3096
  }
3097
 
3098
+ .message-action-exit:before {
3099
+ content: "\f14a";
3100
+ }
3101
+
3102
  .message-action-delete:hover:before {
3103
  color: #a00;
3104
  }
bp-templates/bp-nouveau/css/buddypress.min.css CHANGED
@@ -1 +1 @@
1
- body #buddypress * a{box-shadow:none;text-decoration:none}body #buddypress div,body #buddypress dl,body #buddypress input[type=reset],body #buddypress input[type=search],body #buddypress input[type=submit],body #buddypress li,body #buddypress select,body #buddypress textarea{border-radius:2px;background-clip:padding-box}body #buddypress #item-body blockquote,body #buddypress .bp-lists blockquote{margin-left:0}body #buddypress .bp-list .action{box-sizing:border-box}@media screen and (min-width:46.8em){body.buddypress .entry-content:not(.alignwide):not(.alignfull),body.buddypress .entry-header:not(.alignwide):not(.alignfull),body.buddypress .site-content .entry-header:not(.alignwide):not(.alignfull){max-width:none}body.buddypress .entry-header{float:none}body.buddypress .entry-content{float:none}body.buddypress .site-content{padding-top:2.5em}body.buddypress #page #primary{max-width:none}body.buddypress #page #primary .entry-content,body.buddypress #page #primary .entry-header{float:none;width:auto}}body.buddypress .buddypress-wrap h1,body.buddypress .buddypress-wrap h2,body.buddypress .buddypress-wrap h3,body.buddypress .buddypress-wrap h4,body.buddypress .buddypress-wrap h5,body.buddypress .buddypress-wrap h6{clear:none;margin:1em 0;padding:0}body.buddypress .buddypress-wrap h2:before{display:none}.bp-wrap:after,.bp-wrap:before{content:" ";display:table}.bp-wrap:after{clear:both}.buddypress-wrap.round-avatars .avatar{border-radius:50%}body.buddypress article.page>.entry-header{margin-bottom:2em;padding:0}body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:28px;font-weight:inherit;color:#767676}@media screen and (min-width:46.8em){body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:34px}}.buddypress-wrap dt.section-title{font-size:18px}@media screen and (min-width:46.8em){.buddypress-wrap dt.section-title{font-size:22px}}.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:16px}}.buddypress-wrap .activity-header{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-header{font-size:16px}}.buddypress-wrap .activity-inner{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-inner{font-size:18px}}.buddypress-wrap #whats-new-post-in{font-size:16px}.buddypress-wrap .acomment-meta,.buddypress-wrap .mini .activity-header{font-size:16px}.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:16px}}.buddypress-wrap .bp-tables-user th{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user th{font-size:16px}}.buddypress-wrap .bp-tables-user td{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user td{font-size:14px}}.buddypress-wrap .profile-fields th{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields th{font-size:18px}}.buddypress-wrap .profile-fields td{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields td{font-size:16px}}.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:14px}}.bp-navs{background:0 0;clear:both;overflow:hidden}.bp-navs ul{margin:0;padding:0}.bp-navs ul li{list-style:none;margin:0}.bp-navs ul li.last select{max-width:185px}.bp-navs ul li a,.bp-navs ul li span{border:0;display:block;padding:5px 10px;text-decoration:none}.bp-navs ul li .count{background:#eaeaea;border:1px solid #ccc;border-radius:50%;color:#555;display:inline;font-size:12px;margin-left:2px;padding:3px 6px;text-align:center;vertical-align:middle}.bp-navs ul li.current a,.bp-navs ul li.selected a{color:#333;opacity:1}.bp-navs.bp-invites-filters ul li a,.bp-navs.bp-messages-filters ul li a{border:1px solid #ccc;display:inline-block}.main-navs.dir-navs{margin-bottom:20px}.buddypress-wrap .bp-navs li a:hover a .count,.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count{background-color:#ccc}.buddypress-wrap .bp-navs li:not(.current) a:focus,.buddypress-wrap .bp-navs li:not(.current) a:hover,.buddypress-wrap .bp-navs li:not(.selected) a:focus,.buddypress-wrap .bp-navs li:not(.selected) a:hover{background:#ccc;color:#333}.buddypress-wrap .bp-navs li.current a,.buddypress-wrap .bp-navs li.current a:focus,.buddypress-wrap .bp-navs li.current a:hover,.buddypress-wrap .bp-navs li.selected a,.buddypress-wrap .bp-navs li.selected a:focus,.buddypress-wrap .bp-navs li.selected a:hover{background:#555;color:#fafafa}@media screen and (min-width:46.8em){.buddypress-wrap .main-navs:not(.dir-navs) li.current a,.buddypress-wrap .main-navs:not(.dir-navs) li.selected a{background:#fff;color:#333;font-weight:600}.buddypress-wrap .main-navs.vertical li.current a,.buddypress-wrap .main-navs.vertical li.selected a{background:#555;color:#fafafa;text-decoration:none}.buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border-bottom:1px solid #eee;border-top:1px solid #eee;box-shadow:0 2px 12px 0 #fafafa}}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.selected a{background:#fff;color:#333;font-weight:600}@media screen and (max-width:46.8em){.buddypress-wrap:not(.bp-single-vert-nav) .bp-navs li{background:#eaeaea}}.buddypress-wrap:not(.bp-single-vert-nav) .main-navs>ul>li>a{padding:.5em calc(.5em + 2px)}.buddypress-wrap:not(.bp-single-vert-nav) .group-subnav#subsubnav,.buddypress-wrap:not(.bp-single-vert-nav) .user-subnav#subsubnav{background:0 0}.buddypress-wrap .bp-subnavs,.buddypress-wrap ul.subnav{width:100%}.buddypress-wrap .bp-subnavs{margin:10px 0;overflow:hidden}.buddypress-wrap .bp-subnavs ul li{margin-top:0}.buddypress-wrap .bp-subnavs ul li.current :focus,.buddypress-wrap .bp-subnavs ul li.current :hover,.buddypress-wrap .bp-subnavs ul li.selected :focus,.buddypress-wrap .bp-subnavs ul li.selected :hover{background:0 0;color:#333}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap .bp-navs.bp-invites-filters#subsubnav ul li.last,.buddypress-wrap .bp-navs.bp-invites-nav#subnav ul li.last,.buddypress-wrap .bp-navs.bp-messages-filters#subsubnav ul li.last{margin-top:0}@media screen and (max-width:46.8em){.buddypress-wrap .single-screen-navs{border:1px solid #eee}.buddypress-wrap .single-screen-navs li{border-bottom:1px solid #eee}.buddypress-wrap .single-screen-navs li:last-child{border-bottom:none}.buddypress-wrap .bp-subnavs li a{font-size:14px}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.current a:focus,.buddypress-wrap .bp-subnavs li.current a:hover,.buddypress-wrap .bp-subnavs li.selected a,.buddypress-wrap .bp-subnavs li.selected a:focus,.buddypress-wrap .bp-subnavs li.selected a:hover{background:#555;color:#fff}}.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count,.buddypress_object_nav .bp-navs li.current a .count,.buddypress_object_nav .bp-navs li.selected a .count{background-color:#fff}.buddypress-wrap .bp-navs li.dynamic a .count,.buddypress-wrap .bp-navs li.dynamic.current a .count,.buddypress-wrap .bp-navs li.dynamic.selected a .count,.buddypress_object_nav .bp-navs li.dynamic a .count,.buddypress_object_nav .bp-navs li.dynamic.current a .count,.buddypress_object_nav .bp-navs li.dynamic.selected a .count{background-color:#5087e5;border:0;color:#fafafa}.buddypress-wrap .bp-navs li.dynamic a:hover .count,.buddypress_object_nav .bp-navs li.dynamic a:hover .count{background-color:#5087e5;border:0;color:#fff}.buddypress-wrap .bp-navs li a .count:empty,.buddypress_object_nav .bp-navs li a .count:empty{display:none}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current),.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current){color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:hover{background:0 0;color:#333}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li.current a,.buddypress_object_nav .bp-navs.group-create-links ul li.current a{text-align:center}@media screen and (min-width:46.8em){.buddypress-wrap .bp-navs li{float:left}.buddypress-wrap .subnav{float:left}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap #subsubnav .activity-search{float:left}.buddypress-wrap #subsubnav .filter{float:right}}.buddypress_object_nav .bp-navs li a .count{display:inline-block;float:right}@media screen and (min-width:46.8em){.bp-dir-vert-nav .bp-navs.dir-navs{background:0 0}.bp-dir-vert-nav .bp-navs.dir-navs a .count{float:right}}@media screen and (min-width:46.8em){.buddypress-wrap .tabbed-links ol,.buddypress-wrap .tabbed-links ul{border-bottom:1px solid #ccc;float:none;margin:20px 0 10px}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ol:before,.buddypress-wrap .tabbed-links ul:after,.buddypress-wrap .tabbed-links ul:before{content:" ";display:block}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ul:after{clear:both}.buddypress-wrap .tabbed-links ol li,.buddypress-wrap .tabbed-links ul li{float:left;list-style:none;margin:0 10px 0 0}.buddypress-wrap .tabbed-links ol li a,.buddypress-wrap .tabbed-links ol li span:not(.count),.buddypress-wrap .tabbed-links ul li a,.buddypress-wrap .tabbed-links ul li span:not(.count){background:0 0;border:none;display:block;padding:4px 10px}.buddypress-wrap .tabbed-links ol li a:focus,.buddypress-wrap .tabbed-links ol li a:hover,.buddypress-wrap .tabbed-links ul li a:focus,.buddypress-wrap .tabbed-links ul li a:hover{background:0 0}.buddypress-wrap .tabbed-links ol li:not(.current),.buddypress-wrap .tabbed-links ul li:not(.current){margin-bottom:2px}.buddypress-wrap .tabbed-links ol li.current,.buddypress-wrap .tabbed-links ul li.current{border-color:#ccc #ccc #fff;border-style:solid;border-top-left-radius:4px;border-top-right-radius:4px;border-width:1px;margin-bottom:-1px;padding:0 .5em 1px}.buddypress-wrap .tabbed-links ol li.current a,.buddypress-wrap .tabbed-links ul li.current a{background:0 0;color:#333}.buddypress-wrap .bp-subnavs.tabbed-links>ul{margin-top:0}.buddypress-wrap .bp-navs.tabbed-links{background:0 0;margin-top:2px}.buddypress-wrap .bp-navs.tabbed-links ul li a{border-right:0;font-size:inherit}.buddypress-wrap .bp-navs.tabbed-links ul li.last{float:right;margin:0}.buddypress-wrap .bp-navs.tabbed-links ul li.last a{margin-top:-.5em}.buddypress-wrap .bp-navs.tabbed-links ul li a,.buddypress-wrap .bp-navs.tabbed-links ul li a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li a:hover,.buddypress-wrap .bp-navs.tabbed-links ul li.current a,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:hover{background:0 0;border:0}.buddypress-wrap .bp-navs.tabbed-links ul li a:active,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:active{outline:0}}.buddypress-wrap .dir-component-filters .filter label{display:inline}.buddypress-wrap .subnav-filters:after,.buddypress-wrap .subnav-filters:before{content:" ";display:table}.buddypress-wrap .subnav-filters:after{clear:both}.buddypress-wrap .subnav-filters{background:0 0;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .subnav-filters div{margin:0}.buddypress-wrap .subnav-filters>ul{float:left;list-style:none}.buddypress-wrap .subnav-filters.bp-messages-filters ul{width:100%}.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:1em}@media screen and (min-width:46.8em){.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:0}}.buddypress-wrap .subnav-filters div{float:none}.buddypress-wrap .subnav-filters div input[type=search],.buddypress-wrap .subnav-filters div select{font-size:16px}.buddypress-wrap .subnav-filters div button.nouveau-search-submit{padding:5px .8em 6px}.buddypress-wrap .subnav-filters div button#user_messages_search_submit{padding:7px .8em}.buddypress-wrap .subnav-filters .component-filters{margin-top:10px}.buddypress-wrap .subnav-filters .feed{margin-right:15px}.buddypress-wrap .subnav-filters .last.filter label{display:inline}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:before{content:" ";display:table}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after{clear:both}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-show{display:inline-block}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-hide{display:none}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap{border:0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:focus,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:hover{outline:1px solid #d6d6d6}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions{float:left}.buddypress-wrap .subnav-filters .user-messages-bulk-actions label{display:inline-block;font-weight:300;margin-right:25px;padding:5px 0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions div select{-webkit-appearance:textfield}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply{border:0;border-radius:0;font-weight:400;line-height:1.8;margin:0 0 0 10px;padding:3px 5px;text-align:center;text-transform:none;width:auto}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}@media screen and (min-width:32em){.buddypress-wrap .subnav-filters li{margin-bottom:0}.buddypress-wrap .subnav-filters .bp-search,.buddypress-wrap .subnav-filters .dir-search,.buddypress-wrap .subnav-filters .feed,.buddypress-wrap .subnav-filters .group-act-search,.buddypress-wrap .subnav-filters .group-invites-search,.buddypress-wrap .subnav-filters .subnav-search,.buddypress-wrap .subnav-filters .subnav-search form,.buddypress-wrap .subnav-filters .user-messages-bulk-actions,.buddypress-wrap .subnav-filters .user-messages-search{float:left}.buddypress-wrap .subnav-filters .component-filters,.buddypress-wrap .subnav-filters .last{float:right;margin-top:0;width:auto}.buddypress-wrap .subnav-filters .component-filters select,.buddypress-wrap .subnav-filters .last select{max-width:250px}.buddypress-wrap .subnav-filters .user-messages-search{float:right}}.buddypress-wrap .invitations-options-nav input#invitation-bulk-manage,.buddypress-wrap .notifications-options-nav input#notification-bulk-manage{border:0;border-radius:0;line-height:1.6}.buddypress-wrap .group-subnav-filters .group-invites-search{margin-bottom:1em}.buddypress-wrap .group-subnav-filters .last{text-align:center}.buddypress-wrap .bp-pagination{background:0 0;border:0;color:#767676;float:left;font-size:small;margin:0;padding:.5em 0;position:relative;width:100%}.buddypress-wrap .bp-pagination .pag-count{float:left}.buddypress-wrap .bp-pagination .bp-pagination-links{float:right;margin-right:10px}.buddypress-wrap .bp-pagination .bp-pagination-links a,.buddypress-wrap .bp-pagination .bp-pagination-links span{font-size:small;padding:0 5px}.buddypress-wrap .bp-pagination .bp-pagination-links a:focus,.buddypress-wrap .bp-pagination .bp-pagination-links a:hover{opacity:1}.buddypress-wrap .bp-pagination p{margin:0}.bp-list:after,.bp-list:before{content:" ";display:table}.bp-list:after{clear:both}.bp-list{box-sizing:border-box;border-top:1px solid #eaeaea;clear:both;list-style:none;margin:20px 0;padding:.5em 0;width:100%}.bp-list li:after,.bp-list li:before{content:" ";display:table}.bp-list li:after{clear:both}.bp-list>li{border-bottom:1px solid #eaeaea}.bp-list li{list-style:none;margin:10px 0;padding:.5em 0;position:relative}.bp-list li .item-avatar{text-align:center}.bp-list li .item-avatar img.avatar{display:inline-block;width:auto;height:auto}.bp-list li .item .group-details,.bp-list li .item .item-avatar,.bp-list li .item .item-meta,.bp-list li .item .list-title{text-align:center}.bp-list li .item .list-title{clear:none;font-size:22px;font-weight:400;line-height:1.1;margin:0 auto}@media screen and (min-width:46.8em){.bp-list li .item .list-title{font-size:26px}}.bp-list li .item-meta,.bp-list li .meta{color:#737373;font-size:12px;margin-bottom:10px;margin-top:10px}.bp-list li .last-post{text-align:center}.bp-list li .action{margin:0;text-align:center}.bp-list li .action .generic-button{display:inline-block;font-size:12px;margin:0 10px 0 0}.bp-list li .action div.generic-button{margin:10px 0}@media screen and (min-width:46.8em){.bp-list li .item-avatar{float:left;margin-right:5%}.bp-list li .item{margin:0;overflow:hidden}.bp-list li .item .item-block{float:left;margin-right:2%;width:50%}.bp-list li .item .item-meta,.bp-list li .item .list-title{float:left;text-align:left}.bp-list li .item .group-details,.bp-list li .item .last-post{text-align:left}.bp-list li .group-desc,.bp-list li .last-post,.bp-list li .user-update{clear:none;overflow:hidden;width:auto}.bp-list li .action{clear:left;padding:0;text-align:left}.bp-list li .action li.generic-button{margin-right:0}.bp-list li .action div.generic-button{margin:0 0 10px}.bp-list li .generic-button{display:block;margin:0 0 5px 0}}@media screen and (min-width:32em){#activity-stream{clear:both;padding-top:1em}}.activity-list.bp-list{background:#fafafa;border:1px solid #eee}.activity-list.bp-list .activity-item{background:#fff;border:1px solid #b7b7b7;box-shadow:0 0 6px #d2d2d2;margin:20px 0}.activity-list.bp-list li:first-child{margin-top:0}.friends-list{list-style-type:none}.friends-request-list .item-title,.membership-requests-list .item-title{text-align:center}@media screen and (min-width:46.8em){.friends-request-list li,.membership-requests-list li{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap}.friends-request-list li .item,.membership-requests-list li .item{-moz-flex:1 1 auto;-o-flex:1 1 auto;flex:1 1 auto}.friends-request-list li .action,.membership-requests-list li .action{text-align:right}.friends-request-list li .item-title,.membership-requests-list li .item-title{font-size:22px;text-align:left}.friends-request-list li .item-title h3,.membership-requests-list li .item-title h3{margin:0}}#notifications-user-list{clear:both;padding-top:1em}@media screen and (min-width:46.8em){body:not(.logged-in) .bp-list .item{margin-right:0}}.activity-permalink .item-list,.activity-permalink .item-list li.activity-item{border:0}.activity-update-form{padding:10px 10px 0}.item-body .activity-update-form .activity-form{margin:0;padding:0}.activity-update-form{border:1px solid #ccc;box-shadow:inset 0 0 6px #eee;margin:15px 0}.activity-update-form #whats-new-avatar{margin:10px 0;text-align:center}.activity-update-form #whats-new-avatar img{box-shadow:none;display:inline-block;height:auto;width:auto}.activity-update-form #whats-new-content{padding:0 0 20px 0}.activity-update-form #whats-new-textarea textarea{background:#fff;box-sizing:border-box;color:#333;font-family:inherit;font-size:medium;height:2.2em;line-height:1.4;padding:6px;width:100%}.activity-update-form #whats-new-textarea textarea:focus{box-shadow:0 0 6px 0 #d6d6d6}.activity-update-form #whats-new-post-in-box{margin:10px 0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items{list-style:none;margin:10px 0;padding-left:0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:10px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item{margin-left:10px;height:auto}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete{padding:.3em;width:100%}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object{display:flex;align-items:center;padding:.2em}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar{width:30px;height:30px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object span{padding-left:10px;vertical-align:middle}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:focus,.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:hover{background:#eaeaea;cursor:pointer}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object.selected{border:1px solid #d6d6d6}.activity-update-form #whats-new-submit{margin:15px 0 10px}.activity-update-form #whats-new-submit input{font-size:14px;line-height:inherit;margin-bottom:10px;margin-right:10px;padding:.2em 0;text-align:center;width:100%}@media screen and (min-width:46.8em){.activity-update-form #whats-new-avatar{display:block;float:left;margin:0}.activity-update-form #whats-new-content,.activity-update-form #whats-new-post-in-box,.activity-update-form #whats-new-submit{margin-left:55px}.activity-update-form #whats-new-submit input{margin-bottom:0;margin-right:10px;width:8em}}.activity-list{padding:.5em}.activity-list .activity-item:after,.activity-list .activity-item:before{content:" ";display:table}.activity-list .activity-item:after{clear:both}.activity-list .activity-item{list-style:none;padding:1em}.activity-list .activity-item.has-comments{padding-bottom:1em}.activity-list .activity-item div.item-avatar{margin:0 auto;text-align:center;width:auto}.activity-list .activity-item div.item-avatar img{height:auto;max-width:40%}@media screen and (min-width:46.8em){.activity-list .activity-item div.item-avatar{margin:0 2% 0 0;text-align:left;width:15%}.activity-list .activity-item div.item-avatar img{max-width:80%}}.activity-list .activity-item.mini{font-size:13px;position:relative}.activity-list .activity-item.mini .activity-avatar{margin-left:0;text-align:center;width:auto}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:15%}@media screen and (min-width:46.8em){.activity-list .activity-item.mini .activity-avatar{margin-left:15px;text-align:left;width:15%}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:60%}}.activity-list .activity-item.new_forum_post .activity-inner,.activity-list .activity-item.new_forum_topic .activity-inner{border-left:2px solid #eaeaea;margin-left:10px;padding-left:1em}.activity-list .activity-item.newest_blogs_activity,.activity-list .activity-item.newest_friends_activity,.activity-list .activity-item.newest_groups_activity,.activity-list .activity-item.newest_mentions_activity{background:rgba(31,179,221,.1)}.activity-list .activity-item .activity-inreplyto{color:#767676;font-size:13px}.activity-list .activity-item .activity-inreplyto>p{display:inline;margin:0}.activity-list .activity-item .activity-inreplyto .activity-inner,.activity-list .activity-item .activity-inreplyto blockquote{background:0 0;border:0;display:inline;margin:0;overflow:hidden;padding:0}.activity-list .activity-item .activity-header{margin:0 auto;width:80%}.activity-list .activity-item .activity-header a,.activity-list .activity-item .activity-header img{display:inline}.activity-list .activity-item .activity-header .avatar{display:inline-block;margin:0 5px;vertical-align:text-top;width:20px;height:20px}.activity-list .activity-item .activity-header .time-since{font-size:14px;color:#767676;text-decoration:none}.activity-list .activity-item .activity-header .time-since:hover{color:#767676;cursor:pointer;text-decoration:underline}.activity-list .activity-item .activity-content .activity-header,.activity-list .activity-item .activity-content .comment-header{color:#767676;margin-bottom:10px}.activity-list .activity-item .activity-content .activity-inner,.activity-list .activity-item .activity-content blockquote{background:#fafafa;margin:15px 0 10px;overflow:hidden;padding:1em}.activity-list .activity-item .activity-content p{margin:0}.activity-list .activity-item .activity-inner p{word-wrap:break-word}.activity-list .activity-item .activity-read-more{margin-left:1em;white-space:nowrap}.activity-list .activity-item ul.activity-meta{margin:0;padding-left:0}.activity-list .activity-item ul.activity-meta li{border:0;display:inline-block}.activity-list .activity-item .activity-meta.action{border:1px solid transparent;background:#fafafa;padding:2px;position:relative;text-align:left}.activity-list .activity-item .activity-meta.action div.generic-button{margin:0}.activity-list .activity-item .activity-meta.action .button{background:0 0;color:#555}.activity-list .activity-item .activity-meta.action a{padding:4px 8px}.activity-list .activity-item .activity-meta.action .button:focus,.activity-list .activity-item .activity-meta.action .button:hover{background:0 0}.activity-list .activity-item .activity-meta.action .button:before,.activity-list .activity-item .activity-meta.action .icons:before{font-family:dashicons;font-size:18px;vertical-align:middle}.activity-list .activity-item .activity-meta.action .acomment-reply.button:before{content:"\f101"}.activity-list .activity-item .activity-meta.action .view:before{content:"\f125"}.activity-list .activity-item .activity-meta.action .fav:before{content:"\f154"}.activity-list .activity-item .activity-meta.action .unfav:before{content:"\f155"}.activity-list .activity-item .activity-meta.action .delete-activity:before{content:"\f153"}.activity-list .activity-item .activity-meta.action .delete-activity:hover{color:#800}.activity-list .activity-item .activity-meta.action .button{border:0;box-shadow:none}.activity-list .activity-item .activity-meta.action .button span{background:0 0;color:#555;font-weight:700}@media screen and (min-width:46.8em){.activity-list.bp-list{padding:30px}.activity-list .activity-item .activity-content{margin:0;position:relative}.activity-list .activity-item .activity-content:after{clear:both;content:"";display:table}.activity-list .activity-item .activity-header{margin:0 15px 0 0;width:auto}}.buddypress-wrap .activity-list .load-more,.buddypress-wrap .activity-list .load-newest{background:#fafafa;border:1px solid #eee;font-size:110%;margin:15px 0;padding:0;text-align:center}.buddypress-wrap .activity-list .load-more a,.buddypress-wrap .activity-list .load-newest a{color:#555;display:block;padding:.5em 0}.buddypress-wrap .activity-list .load-more a:focus,.buddypress-wrap .activity-list .load-more a:hover,.buddypress-wrap .activity-list .load-newest a:focus,.buddypress-wrap .activity-list .load-newest a:hover{background:#fff;color:#333}.buddypress-wrap .activity-list .load-more:focus,.buddypress-wrap .activity-list .load-more:hover,.buddypress-wrap .activity-list .load-newest:focus,.buddypress-wrap .activity-list .load-newest:hover{border-color:#e1e1e1;box-shadow:0 0 6px 0 #eaeaea}body.activity-permalink .activity-list li{border-width:1px;padding:1em 0 0 0}body.activity-permalink .activity-list li:first-child{padding-top:0}body.activity-permalink .activity-list li.has-comments{padding-bottom:0}body.activity-permalink .activity-list .activity-avatar{width:auto}body.activity-permalink .activity-list .activity-avatar a{display:block}body.activity-permalink .activity-list .activity-avatar img{max-width:100%;background-color:#eaeaea}body.activity-permalink .activity-list .activity-content{border:0;font-size:100%;line-height:1.5;padding:0}body.activity-permalink .activity-list .activity-content .activity-header{margin:0;padding:.5em 0 0 0;text-align:center;width:100%}body.activity-permalink .activity-list .activity-content .activity-inner,body.activity-permalink .activity-list .activity-content blockquote{margin-left:0;margin-top:10px}body.activity-permalink .activity-list .activity-meta{margin:10px 0 10px}body.activity-permalink .activity-list .activity-comments{margin-bottom:10px}@media screen and (min-width:46.8em){body.activity-permalink .activity-list .activity-avatar{left:-20px;margin-right:0;position:relative;top:-20px}body.activity-permalink .activity-list .activity-avatar img{box-shadow:0 0 0 8px #fff}body.activity-permalink .activity-list .activity-content{margin-right:10px}body.activity-permalink .activity-list .activity-content .activity-header p{text-align:left}}.bp-group-preview-cover,.bp-member-preview-cover{position:relative;min-height:150px;background:#c5c5c5}.bp-group-preview-cover img,.bp-member-preview-cover img{background:#c5c5c5;-o-object-fit:cover;object-fit:cover;border:0;display:block;margin:0;padding:0;width:100%;z-index:1;height:150px}.bp-group-short-description,.bp-member-short-description{position:relative;text-align:center}.bp-group-avatar-content,.bp-member-avatar-content{width:120px;position:relative;z-index:2;margin:auto}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{border:solid 2px #fff;background:rgba(255,255,255,.8);height:80px;width:80px}.bp-group-avatar-content.has-cover-image,.bp-member-avatar-content.has-cover-image{width:200px;margin-top:-75px}.bp-group-avatar-content.has-cover-image img.group-photo,.bp-group-avatar-content.has-cover-image img.profile-photo,.bp-member-avatar-content.has-cover-image img.group-photo,.bp-member-avatar-content.has-cover-image img.profile-photo{height:inherit;width:inherit}.bp-group-short-description-title a,.bp-member-short-description-title a{font-weight:600}@media screen and (max-width:46.8em){.bp-group-avatar-content,.bp-member-avatar-content{width:100%;margin-bottom:15px}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{margin:auto}.bp-profile-button{position:relative;margin-top:15px}}@media screen and (min-width:46.8em){.bp-profile-button{text-align:right}}.buddypress-wrap .activity-comments{clear:both;margin:0 5%;overflow:hidden;position:relative;width:auto}.buddypress-wrap .activity-comments ul{clear:both;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .activity-comments ul li{border-top:1px solid #eee;border-bottom:0;padding:1em 0 0}.buddypress-wrap .activity-comments ul li ul{margin-left:5%}.buddypress-wrap .activity-comments ul li:first-child{border-top:0}.buddypress-wrap .activity-comments ul li:last-child{margin-bottom:0}.buddypress-wrap .activity-comments div.acomment-avatar{width:auto}.buddypress-wrap .activity-comments div.acomment-avatar img{border-width:1px;float:left;height:25px;max-width:none;width:25px}.buddypress-wrap .activity-comments .acomment-content p,.buddypress-wrap .activity-comments .acomment-meta{font-size:14px}.buddypress-wrap .activity-comments .acomment-meta{color:#555;overflow:hidden;padding-left:2%}.buddypress-wrap .activity-comments .acomment-content{border-left:1px solid #ccc;margin:15px 0 0 10%;padding:.5em 1em}.buddypress-wrap .activity-comments .acomment-content p{margin-bottom:.5em}.buddypress-wrap .activity-comments .acomment-options{float:left;margin:10px 0 10px 20px}.buddypress-wrap .activity-comments .acomment-options a{color:#767676;font-size:14px}.buddypress-wrap .activity-comments .acomment-options a:focus,.buddypress-wrap .activity-comments .acomment-options a:hover{color:inherit}.buddypress-wrap .activity-comments .activity-meta.action{background:0 0;margin-top:10px}.buddypress-wrap .activity-comments .activity-meta.action button{font-size:14px;font-weight:400;text-transform:none}.buddypress-wrap .activity-comments .show-all button{font-size:14px;text-decoration:underline;padding-left:.5em}.buddypress-wrap .activity-comments .show-all button span{text-decoration:none}.buddypress-wrap .activity-comments .show-all button:focus span,.buddypress-wrap .activity-comments .show-all button:hover span{color:#5087e5}.buddypress-wrap .mini .activity-comments{clear:both;margin-top:0}body.activity-permalink .activity-comments{background:0 0;width:auto}body.activity-permalink .activity-comments>ul{padding:0 .5em 0 1em}body.activity-permalink .activity-comments ul li>ul{margin-top:10px}form.ac-form{display:none;padding:1em}form.ac-form .ac-reply-avatar{float:left}form.ac-form .ac-reply-avatar img{border:1px solid #eee}form.ac-form .ac-reply-content{color:#767676;padding-left:1em}form.ac-form .ac-reply-content a{text-decoration:none}form.ac-form .ac-reply-content .ac-textarea{margin-bottom:15px;padding:0 .5em;overflow:hidden}form.ac-form .ac-reply-content .ac-textarea textarea{background:0 0;box-shadow:none;color:#555;font-family:inherit;font-size:100%;height:60px;margin:0;outline:0;padding:.5em;width:100%}form.ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:0 0 6px #d6d6d6}form.ac-form .ac-reply-content input{margin-top:10px}.activity-comments li form.ac-form{clear:both;margin-right:15px}.activity-comments form.root{margin-left:0}.buddypress-wrap .blogs-list li .item-avatar img.avatar-150{max-width:150px;max-height:150px}.buddypress-wrap .blogs-list li .item-avatar img.avatar-50{max-width:50px;max-height:50px}@media screen and (min-width:46.8em){.buddypress-wrap .blogs-list li .item-block{float:none;width:auto}.buddypress-wrap .blogs-list li .item-meta{clear:left;float:none}}@media screen and (min-width:46.8em){.buddypress-wrap .bp-dir-vert-nav .blogs-list .list-title{width:auto}}.buddypress-wrap .groups-list li .list-title{text-align:center}.buddypress-wrap .groups-list li .group-details{clear:left}.buddypress-wrap .groups-list li .group-desc{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;font-size:13px;color:#737373;font-style:italic;margin:10px auto 0;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .group-desc{font-size:16px}}.buddypress-wrap .groups-list li p{margin:0 0 .5em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .item{margin-right:0}.buddypress-wrap .groups-list li .item-meta,.buddypress-wrap .groups-list li .list-title{text-align:left;width:auto}.buddypress-wrap .groups-list li .item-meta{margin-bottom:20px}.buddypress-wrap .groups-list li .last-activity{clear:left;margin-top:-20px}}.buddypress-wrap .groups-list li.group-no-avatar div.group-desc{margin-left:0}.buddypress-wrap .mygroups .groups-list.grid .wrap{min-height:450px;padding-bottom:0}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list.grid.four .group-desc,.buddypress-wrap .groups-list.grid.three .group-desc{font-size:14px}}@media screen and (min-width:46.8em){.buddypress .bp-vertical-navs .groups-list .item-avatar{margin-right:3%;width:15%}}.buddypress-wrap .members-list li .member-name{margin-bottom:10px}.buddypress-wrap .members-list li .item-extra-content{clear:both;font-size:14px}.buddypress-wrap .members-list li .user-update{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;color:#737373;font-style:italic;font-size:13px;margin:15px auto;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .user-update{font-size:16px}}.buddypress-wrap .members-list li .user-update .activity-read-more{display:block;font-size:12px;font-style:normal;margin-top:10px;padding-left:2px}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .last-activity{clear:left;margin-top:-10px}}@media screen and (min-width:46.8em){.buddypress-wrap .members-group-list li .joined{clear:left;float:none}}@media screen and (min-width:32em){body:not(.logged-in) .members-list .user-update{width:96%}}.register-page .register-section{box-sizing:border-box}.register-page .signup-form{margin-top:20px}.register-page .signup-form .default-profile input{margin-bottom:20px}.register-page .signup-form label,.register-page .signup-form legend{margin:10px 0 0}.register-page .signup-form .editfield{margin:15px 0}.register-page .signup-form .editfield fieldset{border:0;padding:0}.register-page .signup-form .editfield fieldset legend{margin:0 0 5px;text-indent:0}.register-page .signup-form .editfield .field-visibility-settings{padding:.5em}.register-page .signup-form .editfield .field-visibility-settings fieldset{margin:0 0 10px}.register-page .signup-form #signup-avatar img{margin:0 15px 10px 0}.register-page .signup-form .wp-pwd button{vertical-align:middle}.register-page .signup-form #pass-strength-result,.register-page .signup-form #pass1,.register-page .signup-form #pass1-text{width:10em}.register-page .signup-form #pass1{display:inline-block;margin-bottom:inherit}.register-page .signup-form #pass1-text,.register-page .signup-form .pw-weak{display:none}.register-page .signup-form .show-password #pass1-text{display:inline-block;margin-bottom:inherit}.register-page .signup-form .show-password #pass1{display:none}.register-page .signup-form .description.indicator-hint{font-size:14px}.register-page .signup-form #submit:disabled{color:#767676;opacity:.4}.register-page .signup-form .password-entry,.register-page .signup-form .password-entry-confirm{border:1px solid #eee}body.buddypress.register.js .user-pass2-wrap{display:none}body.buddypress.register.no-js .wp-hide-pw{display:none}@media screen and (min-width:46.8em){.buddypress-wrap .register-page .layout-wrap{display:flex;flex-flow:row wrap;justify-content:space-around}.buddypress-wrap .register-page .layout-wrap .default-profile{flex:1;padding-right:2em}.buddypress-wrap .register-page .layout-wrap .blog-details{flex:1;padding-left:2em}.buddypress-wrap .register-page .submit{clear:both}}@media screen and (min-width:46.8em){.buddypress-wrap.extended-default-reg .register-page .default-profile{min-width:14em;flex:1;padding-right:1em}.buddypress-wrap.extended-default-reg .register-page .extended-profile{flex:2;padding-left:1em}.buddypress-wrap.extended-default-reg .register-page .blog-details{flex:1 100%}}#group-create-body{padding:.5em}#group-create-body .creation-step-name{text-align:center}#group-create-body img.avatar{width:auto;height:auto}#group-create-body .avatar-nav-items{margin-top:15px}.single-headers:after,.single-headers:before{content:" ";display:table}.single-headers:after{clear:both}.single-headers{margin-bottom:15px}.single-headers #item-header-avatar a{display:block;text-align:center}.single-headers #item-header-avatar a img{float:none;width:auto;height:auto}.single-headers div#item-header-content{float:none}@media screen and (min-width:46.8em){.single-headers #item-header-avatar a{text-align:left}.single-headers #item-header-avatar a img{float:left}.single-headers #item-header-content{padding-left:2em}}.single-headers .activity,.single-headers .group-status{display:inline}.single-headers .group-status{font-size:18px;color:#333;padding-right:1em}.single-headers .activity{display:inline-block;font-size:12px;padding:0}.single-headers #sitewide-notice p,.single-headers div#message p{background-color:#ffd;border:1px solid #cb2;color:#440;font-weight:400;margin-top:3px;text-decoration:none}.single-headers h2{line-height:1.2;margin:0 0 5px}.single-headers h2 a{color:#767676;text-decoration:none}.single-headers h2 span.highlight{display:inline-block;font-size:60%;font-weight:400;line-height:1.7;vertical-align:middle}.single-headers h2 span.highlight span{background:#a1dcfa;color:#fff;cursor:pointer;font-size:80%;font-weight:700;margin-bottom:2px;padding:1px 4px;position:relative;right:-2px;top:-2px;vertical-align:middle}.single-headers img.avatar{float:left;margin:0 15px 19px 0}.single-headers .item-meta{color:#767676;font-size:14px;margin:15px 0 5px;padding-bottom:.5em}.single-headers ul{margin-bottom:15px}.single-headers ul li{float:right;list-style:none}.single-headers div.generic-button{text-align:center}.single-headers li.generic-button{display:inline-block;text-align:center}@media screen and (min-width:46.8em){.single-headers a.button,.single-headers div.generic-button,.single-headers li.generic-button{float:left}}.single-headers a.button,.single-headers div.generic-button{margin:10px 10px 0 0}.single-headers li.generic-button{margin:2px 10px}.single-headers li.generic-button:first-child{margin-left:0}.single-headers div#message.info{line-height:.8}body.no-js .single-item-header .js-self-profile-button{display:none}#cover-image-container{position:relative}#header-cover-image{background-color:#c5c5c5;background-position:center top;background-repeat:no-repeat;background-size:cover;border:0;display:block;left:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}#item-header-cover-image{position:relative;z-index:2}#item-header-cover-image #item-header-avatar{padding:0 1em}.groups-header .bp-group-type-list{font-size:18px;margin:0;color:#333;display:flex}.groups-header .bp-group-type-list strong{padding-right:1em;white-space:nowrap}.groups-header .bp-feedback{clear:both}.groups-header .group-item-actions{float:left;margin:0 0 15px 15px;padding-top:0;width:100%}.groups-header .moderators-lists{margin-top:0}.groups-header .moderators-lists .moderators-title{font-size:14px}.groups-header .moderators-lists .user-list{margin:0 0 5px}.groups-header .moderators-lists .user-list ul:after{clear:both;content:"";display:table}.groups-header .moderators-lists .user-list li{display:inline-block;float:none;margin-left:4px;padding:4px}.groups-header .moderators-lists img.avatar{box-shadow:none;float:none;height:30px;margin:0;max-width:100%;width:30px}@media screen and (min-width:46.8em){.groups-header div#item-header-content{float:left;margin-left:10%;text-align:left;padding-top:15px;width:42%}.groups-header .group-item-actions{float:right;margin:0 0 15px 15px;text-align:right;width:20%}.groups-header .groups-meta{clear:both}}.groups-header .desc-wrap{background:#eaeaea;border:1px solid #d6d6d6;margin:0 0 15px;padding:1em;text-align:center}.groups-header .desc-wrap .group-description{background:#fafafa;box-shadow:inset 0 0 9px #ccc;padding:1em;text-align:left}.groups-header .desc-wrap .group-description p{margin:0;padding:0}body.buddypress.bp-user .buddypress-wrap .users-header h2.user-nicename{margin-top:0;margin-bottom:5px}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list{padding-bottom:.5em;font-size:18px;margin:0;color:#333;display:flex}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list strong{padding-right:1em;white-space:nowrap}body.buddypress.bp-user .buddypress-wrap .member-header-actions{overflow:hidden;padding-left:0}body.buddypress.bp-user .buddypress-wrap .member-header-actions *>*{display:block}.buddypress-wrap .item-body{margin:20px 0}.buddypress-wrap .item-body .screen-heading{font-size:20px;font-weight:400}.buddypress-wrap .item-body .button-tabs{margin:30px 0 15px;list-style:none}.buddypress-wrap.bp-single-vert-nav .bp-list:not(.grid) .item-entry{padding-left:.5em}.single-item.group-members .item-body .filters:not(.no-subnav){border-top:5px solid #eaeaea;padding-top:1em}.single-item.group-members .item-body .filters{margin-top:0}.buddypress-wrap .group-status-type ul{margin:0 0 20px 20px}.groups-manage-members-list{padding:.5em 0}.groups-manage-members-list dd{margin:0;padding:1em 0}.groups-manage-members-list .section-title{background:#eaeaea;padding-left:.3em}.groups-manage-members-list ul{list-style:none;margin-bottom:0}.groups-manage-members-list ul li{border-bottom:1px solid #eee;margin-bottom:10px;padding:.5em .3em .3em}.groups-manage-members-list ul li:last-child,.groups-manage-members-list ul li:only-child{border-bottom:0}.groups-manage-members-list ul li:nth-child(even){background:#fafafa}.groups-manage-members-list ul li.banned-user{background:#fad3d3}.groups-manage-members-list ul .member-name{margin-bottom:0;text-align:center}.groups-manage-members-list ul img{display:block;margin:0 auto;width:20%}@media screen and (min-width:32em){.groups-manage-members-list ul .member-name{text-align:left}.groups-manage-members-list ul img{display:inline;width:50px}}.groups-manage-members-list ul .members-manage-buttons:after,.groups-manage-members-list ul .members-manage-buttons:before{content:" ";display:table}.groups-manage-members-list ul .members-manage-buttons:after{clear:both}.groups-manage-members-list ul .members-manage-buttons{margin:15px 0 5px}.groups-manage-members-list ul .members-manage-buttons a.button{color:#767676;display:block;font-size:13px}@media screen and (min-width:32em){.groups-manage-members-list ul .members-manage-buttons a.button{display:inline-block}}.groups-manage-members-list ul .members-manage-buttons.text-links-list{margin-bottom:0}@media screen and (max-width:32em){.groups-manage-members-list ul .members-manage-buttons.text-links-list a.button{background:#fafafa;border:1px solid #eee;display:block;margin-bottom:10px}}.groups-manage-members-list ul .action:not(.text-links-list) a.button{font-size:12px}@media screen and (min-width:46.8em){.groups-manage-members-list ul li .avatar,.groups-manage-members-list ul li .member-name{float:left}.groups-manage-members-list ul li .avatar{margin-right:15px}.groups-manage-members-list ul li .action{clear:both;float:left}}#group-manage-members-ui #group-members-search-form button[type=submit]{float:right;font-size:inherit;font-weight:400;line-height:1.5;text-align:center;text-transform:none}#group-manage-members-ui #group-members-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}#group-manage-members-ui #group-members-pagination button:last-child{margin-right:2em}#group-manage-members-ui #bp-no-group-members td{border:none}.buddypress .bp-invites-content ul.item-list{border-top:0}.buddypress .bp-invites-content ul.item-list li{border:1px solid #eaeaea;margin:0 0 1%;padding-left:5px;padding-right:5px;position:relative;width:auto}.buddypress .bp-invites-content ul.item-list li .list-title{margin:0 auto;width:80%}.buddypress .bp-invites-content ul.item-list li .action{position:absolute;top:10px;right:10px}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button{border:0}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:focus,.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:hover{color:#1fb3dd}.buddypress .bp-invites-content ul.item-list li.selected{box-shadow:inset 0 0 12px 0 rgba(237,187,52,.2)}.buddypress .bp-invites-content .group-inviters li,.buddypress .bp-invites-content .item-list .item-meta span{color:#767676}.buddypress .bp-invites-content li ul.group-inviters{clear:both;margin:0}.buddypress .bp-invites-content li ul.group-inviters li{border:0;float:left;font-size:20px;width:inherit}.buddypress .bp-invites-content li .status{font-size:20px;font-style:italic;clear:both;color:#555;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul:after,.buddypress .bp-invites-content #send-invites-editor ul:before{content:" ";display:table}.buddypress .bp-invites-content #send-invites-editor ul:after{clear:both}.buddypress .bp-invites-content #send-invites-editor textarea{width:100%}.buddypress .bp-invites-content #send-invites-editor ul{clear:both;list-style:none;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul li{float:left;margin:.5%;max-height:50px;max-width:50px}.buddypress .bp-invites-content #send-invites-editor #bp-send-invites-form{clear:both;margin-top:10px}.buddypress .bp-invites-content #send-invites-editor .action{margin-top:10px;padding-top:10px}.buddypress .bp-invites-content #send-invites-editor.bp-hide{display:none}@media screen and (min-width:46.8em){.buddypress .bp-invites-content ul.item-list>li{box-sizing:border-box;border:1px solid #eaeaea;float:left;padding-left:.5em;padding-right:.5em;width:49.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(odd){margin-right:.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(even){margin-left:.5%}.buddypress .bp-invites-content ul.item-list ul.group-inviters{float:left;width:auto}}@media screen and (min-width:46.8em){:not(.vertical)+.item-body #group-invites-container{display:grid;grid-template-columns:25% auto;grid-template-areas:"group-invites-nav group-invites-column"}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav{-ms-grid-row:1;-ms-grid-column:1;grid-area:group-invites-nav}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav li{display:block;float:none}:not(.vertical)+.item-body #group-invites-container .group-invites-column{-ms-grid-row:1;-ms-grid-column:2;grid-area:group-invites-column}}.buddypress.groups .activity-update-form{margin-top:0}.buddypress-wrap .profile{margin-top:30px}.buddypress-wrap .public .profile-fields td.label{width:30%}.buddypress-wrap .profile.edit ul.button-nav{list-style:none;margin:30px 0 10px;padding-left:0}.buddypress-wrap .profile.edit ul.button-nav li{display:inline-block;margin-right:10px}.buddypress-wrap .profile.edit ul.button-nav li a{padding:.5em}.buddypress-wrap .profile.edit .editfield{background:#fafafa;border:1px solid #eee;margin:15px 0;padding:1em}.buddypress-wrap .profile.edit .editfield fieldset{border:0}.buddypress-wrap .profile.edit .editfield fieldset label{font-weight:400}.buddypress-wrap .profile.edit .editfield fieldset label.xprofile-field-label{display:inline}.buddypress-wrap .profile.edit .editfield{display:flex;flex-direction:column}.buddypress-wrap .profile.edit .editfield .description{margin-top:10px;order:2}.buddypress-wrap .profile.edit .editfield>fieldset{order:1}.buddypress-wrap .profile.edit .editfield .field-visibility-settings,.buddypress-wrap .profile.edit .editfield .field-visibility-settings-toggle{order:3}body.no-js .buddypress-wrap .field-visibility-settings-close,body.no-js .buddypress-wrap .field-visibility-settings-toggle{display:none}body.no-js .buddypress-wrap .field-visibility-settings{display:block}.buddypress-wrap .field-visibility-settings{margin:10px 0}.buddypress-wrap .current-visibility-level{font-style:normal;font-weight:700}.buddypress-wrap .field-visibility-settings,.buddypress-wrap .field-visibility-settings-header{color:#737373}.buddypress-wrap .field-visibility-settings fieldset{margin:5px 0}.buddypress-wrap .standard-form .editfield fieldset{margin:0}.buddypress-wrap .standard-form .field-visibility-settings label{font-weight:400;margin:0}.buddypress-wrap .standard-form .field-visibility-settings .radio{list-style:none;margin-bottom:0}.buddypress-wrap .standard-form .field-visibility-settings .field-visibility-settings-close{font-size:12px}.buddypress-wrap .standard-form .wp-editor-container{border:1px solid #dedede}.buddypress-wrap .standard-form .wp-editor-container textarea{background:#fff;width:100%}.buddypress-wrap .standard-form .description{background:#fafafa;font-size:inherit}.buddypress-wrap .standard-form .field-visibility-settings legend,.buddypress-wrap .standard-form .field-visibility-settings-header{font-style:italic}.buddypress-wrap .standard-form .field-visibility-settings-header{font-size:14px}.buddypress-wrap .standard-form .field-visibility-settings label,.buddypress-wrap .standard-form .field-visibility-settings legend{font-size:14px}.buddypress-wrap .standard-form .field-visibility select{margin:0}.buddypress-wrap .html-active button.switch-html{background:#f5f5f5;border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.buddypress-wrap .tmce-active button.switch-tmce{background:#f5f5f5;border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.buddypress-wrap .profile.public .profile-group-title{border-bottom:1px solid #ccc}body.register .buddypress-wrap .page ul{list-style:none}.buddypress-wrap .profile .bp-avatar-nav{margin-top:20px}.message-action-delete:before,.message-action-star:before,.message-action-unstar:before,.message-action-view:before{font-family:dashicons;font-size:18px}.message-action-star:before{color:#aaa;content:"\f154"}.message-action-unstar:before{color:#fcdd77;content:"\f155"}.message-action-view:before{content:"\f473"}.message-action-delete:before{content:"\f153"}.message-action-delete:hover:before{color:#a00}.preview-content .actions a{text-decoration:none}.bp-messages-content{margin:15px 0}.bp-messages-content .avatar{box-shadow:none}.bp-messages-content .thread-participants{list-style:none}.bp-messages-content .thread-participants dd{margin-left:0}.bp-messages-content time{color:#737373;font-size:12px}#message-threads{border-top:1px solid #eaeaea;clear:both;list-style:none;margin:0;max-height:220px;overflow-x:hidden;overflow-y:auto;padding:0;width:100%}#message-threads li{border-bottom:1px solid #eaeaea;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;margin:0;overflow:hidden;padding:.5em 0}#message-threads li .thread-cb{display:flex;align-items:center;-moz-flex:1 2 5%;-o-flex:1 2 5%;flex:1 2 5%}#message-threads li .thread-from,#message-threads li .thread-to{-moz-flex:1 2 20%;-o-flex:1 2 20%;flex:1 2 20%}#message-threads li .thread-from img.avatar,#message-threads li .thread-to img.avatar{float:left;margin:0 10px 0 0}#message-threads li .thread-from .user-name,#message-threads li .thread-to .user-name{display:inline-block;line-height:1.1}#message-threads li .thread-from .num-recipients,#message-threads li .thread-to .num-recipients{color:#737373;font-weight:400;font-size:12px;margin:0}#message-threads li .thread-content{-moz-flex:1 2 60%;-o-flex:1 2 60%;flex:1 2 60%}#message-threads li .thread-date{-moz-flex:1 2 15%;-o-flex:1 2 15%;flex:1 2 15%}#message-threads li.selected{background-color:#fafafa}#message-threads li.selected .thread-subject .subject{color:#5087e5}#message-threads li.unread{font-weight:700}#message-threads li .thread-content .excerpt{color:#737373;font-size:12px;margin:0}#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:13px}@media screen and (min-width:46.8em){#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:16px}}#message-threads li .thread-content .thread-subject{vertical-align:top}#message-threads li .thread-content .thread-subject .excerpt{font-weight:400}#message-threads li .thread-date{padding-right:5px;text-align:right}.bp-messages-content .actions{float:right;max-width:30%;line-height:1}.bp-messages-content .actions .bp-icons:not(.bp-hide){display:inline-block;margin:0;padding:.3em .5em}.bp-messages-content .actions .bp-icons:not(.bp-hide):before{font-size:26px}.bp-messages-content #thread-preview{border:1px solid #eaeaea;margin-top:20px}.bp-messages-content #thread-preview .preview-message{overflow:hidden}.bp-messages-content #thread-preview .preview-content{margin:.5em}.bp-messages-content #thread-preview .preview-content .preview-message{background:#fafafa;margin:10px 0;padding:1em .3em .3em}.bp-messages-content #bp-message-thread-list{border-top:1px solid #eaeaea;clear:both;list-style:none;padding:1em 0 .3em}.bp-messages-content #bp-message-thread-list li{padding:.5em}.bp-messages-content #bp-message-thread-list li:nth-child(2n) .message-content{background:#fafafa}.bp-messages-content #bp-message-thread-list .message-metadata{border-bottom:1px solid #ccc;box-shadow:-2px 1px 9px 0 #eee;display:table;padding:.2em;width:100%}.bp-messages-content #bp-message-thread-list .message-metadata .avatar{width:30px}.bp-messages-content #bp-message-thread-list .message-metadata .user-link{display:block;font-size:13px;float:left}@media screen and (min-width:46.8em){.bp-messages-content #bp-message-thread-list .message-metadata .user-link{font-size:16px}}.bp-messages-content #bp-message-thread-list .message-metadata time{color:#737373;font-size:12px;padding:0 .5em}.bp-messages-content #bp-message-thread-list .message-metadata button{padding:0 .3em}.bp-messages-content #bp-message-thread-list .message-metadata button:before{font-size:20px}.bp-messages-content #bp-message-thread-list .message-content{overflow:hidden;margin:1em auto 0;width:90%}.bp-messages-content #bp-message-thread-list img.avatar{float:left;margin:0 10px 0 0}.bp-messages-content #bp-message-thread-list .actions a:before{font-size:18px}.bp-messages-content form.send-reply .avatar-box{padding:.5em 0}.bp-messages-content .preview-pane-header,.bp-messages-content .single-message-thread-header{border-bottom:1px solid #eaeaea}.bp-messages-content .preview-pane-header:after,.bp-messages-content .single-message-thread-header:after{clear:both;content:"";display:table}.bp-messages-content .preview-thread-title,.bp-messages-content .single-thread-title{font-size:16px}.bp-messages-content .preview-thread-title .messages-title,.bp-messages-content .single-thread-title .messages-title{padding-left:2em}.bp-messages-content .thread-participants{float:left;margin:5px 0;width:70%}.bp-messages-content .thread-participants dd,.bp-messages-content .thread-participants ul{margin-bottom:10px}.bp-messages-content .thread-participants ul{list-style:none}.bp-messages-content .thread-participants ul:after{clear:both;content:"";display:table}.bp-messages-content .thread-participants li{float:left;margin-left:5px}.bp-messages-content .thread-participants img{width:30px;height:30px}.bp-messages-content #bp-message-thread-list li .message-content blockquote,.bp-messages-content #bp-message-thread-list li .message-content ol,.bp-messages-content #bp-message-thread-list li .message-content ul,.bp-messages-content #thread-preview .preview-message blockquote,.bp-messages-content #thread-preview .preview-message ol,.bp-messages-content #thread-preview .preview-message ul{list-style-position:inside;margin-left:0}.bp-messages-content #thread-preview:empty,.bp-messages-content ul#message-threads:empty{display:none}.bp-messages-content #bp-message-thread-header h2:first-child,.bp-messages-content #thread-preview h2:first-child{background-color:#eaeaea;color:#555;font-weight:700;margin:0;padding:.5em}.bp-messages-content #bp-message-thread-list li a.user-link,.bp-messages-content #message-threads .thread-content a{border:0;text-decoration:none}.bp-messages-content .standard-form #subject{margin-bottom:20px}div.bp-navs#subsubnav.bp-messages-filters .user-messages-bulk-actions{margin-right:15px;max-width:42.5%}.buddypress.settings .profile-settings.bp-tables-user select{width:100%}body.buddypress.settings .wp-pwd button{vertical-align:middle}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1,body.buddypress.settings #pass1-text{width:16em}body.buddypress.settings #pass1{display:inline-block;margin-bottom:inherit}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1-text,body.buddypress.settings .pw-weak{display:none}body.buddypress.settings .show-password #pass1-text{display:inline-block;margin-bottom:inherit}body.buddypress.settings .show-password #pass1{display:none}body.buddypress.settings #your-profile #submit:disabled{color:#767676;opacity:.4}body.buddypress.settings.js .user-pass2-wrap,body.buddypress.settings.js .wp-pwd{display:none}body.buddypress.settings.no-js .wp-cancel-pw,body.buddypress.settings.no-js .wp-generate-pw,body.buddypress.settings.no-js .wp-hide-pw{display:none}body.buddypress.settings.data #buddypress.buddypress-wrap .item-body p a{text-decoration:underline}.buddypress-wrap #whats-new-post-in-box select,.buddypress-wrap .filter select{border:1px solid #d6d6d6}.buddypress-wrap input.action[disabled]{cursor:pointer;opacity:.4}.buddypress-wrap #invitation-bulk-manage[disabled],.buddypress-wrap #notification-bulk-manage[disabled]{display:none}.buddypress-wrap fieldset legend{font-size:inherit;font-weight:600}.buddypress-wrap input[type=email]:focus,.buddypress-wrap input[type=password]:focus,.buddypress-wrap input[type=tel]:focus,.buddypress-wrap input[type=text]:focus,.buddypress-wrap input[type=url]:focus,.buddypress-wrap textarea:focus{box-shadow:0 0 8px #eaeaea}.buddypress-wrap select{height:auto}.buddypress-wrap textarea{resize:vertical}.buddypress-wrap .standard-form .bp-controls-wrap{margin:1em 0}.buddypress-wrap .standard-form .groups-members-search input[type=search],.buddypress-wrap .standard-form .groups-members-search input[type=text],.buddypress-wrap .standard-form [data-bp-search] input[type=search],.buddypress-wrap .standard-form [data-bp-search] input[type=text],.buddypress-wrap .standard-form input[type=color],.buddypress-wrap .standard-form input[type=date],.buddypress-wrap .standard-form input[type=datetime-local],.buddypress-wrap .standard-form input[type=datetime],.buddypress-wrap .standard-form input[type=email],.buddypress-wrap .standard-form input[type=month],.buddypress-wrap .standard-form input[type=number],.buddypress-wrap .standard-form input[type=password],.buddypress-wrap .standard-form input[type=range],.buddypress-wrap .standard-form input[type=search],.buddypress-wrap .standard-form input[type=tel],.buddypress-wrap .standard-form input[type=text],.buddypress-wrap .standard-form input[type=time],.buddypress-wrap .standard-form input[type=url],.buddypress-wrap .standard-form input[type=week],.buddypress-wrap .standard-form select,.buddypress-wrap .standard-form textarea{background-color:#fafafa;border:1px solid #d6d6d6;border-radius:0;font:inherit;font-size:100%;padding:.5em}.buddypress-wrap .standard-form input[required],.buddypress-wrap .standard-form select[required],.buddypress-wrap .standard-form textarea[required]{box-shadow:none;border-width:2px;outline:0}.buddypress-wrap .standard-form input[required]:invalid,.buddypress-wrap .standard-form select[required]:invalid,.buddypress-wrap .standard-form textarea[required]:invalid{border-color:#b71717}.buddypress-wrap .standard-form input[required]:valid,.buddypress-wrap .standard-form select[required]:valid,.buddypress-wrap .standard-form textarea[required]:valid{border-color:#91cc2c}.buddypress-wrap .standard-form input[required]:focus,.buddypress-wrap .standard-form select[required]:focus,.buddypress-wrap .standard-form textarea[required]:focus{border-color:#d6d6d6;border-width:1px}.buddypress-wrap .standard-form input.invalid[required],.buddypress-wrap .standard-form select.invalid[required],.buddypress-wrap .standard-form textarea.invalid[required]{border-color:#b71717}.buddypress-wrap .standard-form input:not(.small),.buddypress-wrap .standard-form textarea{width:100%}.buddypress-wrap .standard-form input[type=checkbox],.buddypress-wrap .standard-form input[type=radio]{margin-right:5px;width:auto}.buddypress-wrap .standard-form select{padding:3px}.buddypress-wrap .standard-form textarea{height:120px}.buddypress-wrap .standard-form textarea#message_content{height:200px}.buddypress-wrap .standard-form input[type=password]{margin-bottom:5px}.buddypress-wrap .standard-form input:focus,.buddypress-wrap .standard-form select:focus,.buddypress-wrap .standard-form textarea:focus{background-color:#fafafa;color:#555;outline:0}.buddypress-wrap .standard-form label,.buddypress-wrap .standard-form span.label{display:block;font-weight:600;margin:15px 0 5px;width:auto}.buddypress-wrap .standard-form a.clear-value{display:block;margin-top:5px;outline:0}.buddypress-wrap .standard-form .submit{clear:both;padding:15px 0 0}.buddypress-wrap .standard-form p.submit{margin-bottom:0}.buddypress-wrap .standard-form div.submit input{margin-right:15px}.buddypress-wrap .standard-form #invite-list label,.buddypress-wrap .standard-form p label{font-weight:400;margin:auto}.buddypress-wrap .standard-form p.description{color:#737373;margin:5px 0}.buddypress-wrap .standard-form div.checkbox label:nth-child(n+2),.buddypress-wrap .standard-form div.radio div label{color:#737373;font-size:100%;font-weight:400;margin:5px 0 0}.buddypress-wrap .standard-form#send-reply textarea{width:97.5%}.buddypress-wrap .standard-form#sidebar-login-form label{margin-top:5px}.buddypress-wrap .standard-form#sidebar-login-form input[type=password],.buddypress-wrap .standard-form#sidebar-login-form input[type=text]{padding:4px;width:95%}.buddypress-wrap .standard-form.profile-edit input:focus{background:#fff}@media screen and (min-width:46.8em){.buddypress-wrap .standard-form .left-menu{float:left}.buddypress-wrap .standard-form #invite-list ul{list-style:none;margin:1%}.buddypress-wrap .standard-form #invite-list ul li{margin:0 0 0 1%}.buddypress-wrap .standard-form .main-column{margin-left:190px}.buddypress-wrap .standard-form .main-column ul#friend-list{clear:none;float:left}.buddypress-wrap .standard-form .main-column ul#friend-list h4{clear:none}}.buddypress-wrap .standard-form .bp-tables-user label{margin:0}.buddypress-wrap .signup-form label,.buddypress-wrap .signup-form legend{font-weight:400}body.no-js .buddypress #delete_inbox_messages,body.no-js .buddypress #delete_sentbox_messages,body.no-js .buddypress #message-type-select,body.no-js .buddypress #messages-bulk-management #select-all-messages,body.no-js .buddypress #notifications-bulk-management #select-all-notifications,body.no-js .buddypress label[for=message-type-select]{display:none}.buddypress-wrap .wp-editor-wrap .wp-editor-wrap button,.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=button],.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=submit],.buddypress-wrap .wp-editor-wrap a.button,.buddypress-wrap .wp-editor-wrap input[type=reset]{padding:0 8px 1px}.buddypress-wrap .select-wrap{border:1px solid #eee}.buddypress-wrap .select-wrap label{display:inline}.buddypress-wrap .select-wrap select::-ms-expand{display:none}.buddypress-wrap .select-wrap select{-webkit-appearance:none;-o-appearance:none;appearance:none;border:0;cursor:pointer;margin-right:-25px;padding:6px 25px 6px 10px;position:relative;text-indent:-2px;z-index:1;width:auto}.buddypress-wrap .select-wrap select,.buddypress-wrap .select-wrap select:active,.buddypress-wrap .select-wrap select:focus{background:0 0}.buddypress-wrap .select-wrap span.select-arrow{display:inline-block;position:relative;z-index:0}.buddypress-wrap .select-wrap span.select-arrow:before{color:#ccc;content:"\25BC"}.buddypress-wrap .select-wrap:focus .select-arrow:before,.buddypress-wrap .select-wrap:hover .select-arrow:before{color:#a6a6a6}.buddypress-wrap .bp-search form:focus,.buddypress-wrap .bp-search form:hover,.buddypress-wrap .select-wrap:focus,.buddypress-wrap .select-wrap:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}@media screen and (min-width:32em){.buddypress-wrap .invitations-options-nav .select-wrap,.buddypress-wrap .notifications-options-nav .select-wrap{float:left}}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after,.buddypress-wrap .bp-messages-search-form:before{content:" ";display:table}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after{clear:both}.buddypress-wrap form#group-members-search,.buddypress-wrap form.bp-dir-search-form,.buddypress-wrap form.bp-messages-search-form,.buddypress-wrap form[data-bp-search].bp-invites-search-form{border:1px solid #eee;width:100%}.buddypress-wrap form#group-members-search label,.buddypress-wrap form.bp-dir-search-form label,.buddypress-wrap form.bp-messages-search-form label,.buddypress-wrap form[data-bp-search].bp-invites-search-form label{margin:0}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{background:0 0;border:0;border-radius:0;background-clip:padding-box}.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{float:left;line-height:2;padding:3px 10px;width:78%}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit]{float:right;font-size:inherit;font-weight:400;line-height:1.5;padding:3px .7em;text-align:center;text-transform:none;width:20%}.buddypress-wrap form#group-members-search button[type=submit] span,.buddypress-wrap form.bp-dir-search-form button[type=submit] span,.buddypress-wrap form.bp-messages-search-form button[type=submit] span,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}.buddypress-wrap form#group-members-search button[type=submit].bp-show,.buddypress-wrap form.bp-dir-search-form button[type=submit].bp-show,.buddypress-wrap form.bp-messages-search-form button[type=submit].bp-show,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit].bp-show{height:auto;left:0;overflow:visible;position:static;top:0}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-button,.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-decoration{display:none}.buddypress-wrap form#group-members-search:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}.buddypress-wrap ul.filters li form label input{line-height:1.4;padding:.1em .7em}.buddypress-wrap .current-group-type,.buddypress-wrap .current-member-type{font-style:italic}.buddypress-wrap .dir-form{clear:both}.budypress.no-js form.bp-dir-search-form button[type=submit]{height:auto;left:0;overflow:visible;position:static;top:0}.bp-user [data-bp-search] form input[type=search],.bp-user [data-bp-search] form input[type=text]{padding:6px 10px 7px}.buddypress-wrap .bp-tables-user,.buddypress-wrap table.forum,.buddypress-wrap table.wp-profile-fields{width:100%}.buddypress-wrap .bp-tables-user thead tr,.buddypress-wrap table.forum thead tr,.buddypress-wrap table.wp-profile-fields thead tr{background:0 0;border-bottom:2px solid #ccc}.buddypress-wrap .bp-tables-user tbody tr,.buddypress-wrap table.forum tbody tr,.buddypress-wrap table.wp-profile-fields tbody tr{background:#fafafa}.buddypress-wrap .bp-tables-user tr td,.buddypress-wrap .bp-tables-user tr th,.buddypress-wrap table.forum tr td,.buddypress-wrap table.forum tr th,.buddypress-wrap table.wp-profile-fields tr td,.buddypress-wrap table.wp-profile-fields tr th{padding:.5em;vertical-align:middle}.buddypress-wrap .bp-tables-user tr td.label,.buddypress-wrap table.forum tr td.label,.buddypress-wrap table.wp-profile-fields tr td.label{border-right:1px solid #eaeaea;font-weight:600;width:25%}.buddypress-wrap .bp-tables-user tr.alt td,.buddypress-wrap table.wp-profile-fields tr.alt td{background:#fafafa}.buddypress-wrap table.profile-fields .data{padding:.5em 1em}.buddypress-wrap table.profile-fields tr:last-child{border-bottom:none}.buddypress-wrap table.notifications td{padding:1em .5em}.buddypress-wrap table.notifications .bulk-select-all,.buddypress-wrap table.notifications .bulk-select-check{width:7%}.buddypress-wrap table.notifications .bulk-select-check{vertical-align:middle}.buddypress-wrap table.notifications .date,.buddypress-wrap table.notifications .notification-description,.buddypress-wrap table.notifications .notification-since,.buddypress-wrap table.notifications .title{width:39%}.buddypress-wrap table.notifications .actions,.buddypress-wrap table.notifications .notification-actions{width:15%}.buddypress-wrap table.notification-settings th.title,.buddypress-wrap table.profile-settings th.title{width:80%}.buddypress-wrap table.notifications .notification-actions a.delete,.buddypress-wrap table.notifications .notification-actions a.mark-read{display:inline-block}.buddypress-wrap table.notification-settings{margin-bottom:15px;text-align:left}.buddypress-wrap #groups-notification-settings{margin-bottom:0}.buddypress-wrap table.notification-settings td:first-child,.buddypress-wrap table.notification-settings th.icon,.buddypress-wrap table.notifications td:first-child,.buddypress-wrap table.notifications th.icon{display:none}.buddypress-wrap table.notification-settings .no,.buddypress-wrap table.notification-settings .yes{text-align:center;width:40px;vertical-align:middle}.buddypress-wrap table#message-threads{clear:both}.buddypress-wrap table#message-threads .thread-info{min-width:40%}.buddypress-wrap table#message-threads .thread-info p{margin:0}.buddypress-wrap table#message-threads .thread-info p.thread-excerpt{color:#737373;font-size:12px;margin-top:3px}.buddypress-wrap table.profile-fields{margin-bottom:20px}.buddypress-wrap table.profile-fields:last-child{margin-bottom:0}.buddypress-wrap table.profile-fields p{margin:0}.buddypress-wrap table.profile-fields p:last-child{margin-top:0}.bp-screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-vert{display:flex;align-items:center}.bp-hide{display:none}.bp-show{height:auto;left:0;overflow:visible;position:static;top:0}.buddypress .buddypress-wrap .activity-read-more a,.buddypress .buddypress-wrap .comment-reply-link,.buddypress .buddypress-wrap .generic-button a,.buddypress .buddypress-wrap a.bp-title-button,.buddypress .buddypress-wrap a.button,.buddypress .buddypress-wrap button,.buddypress .buddypress-wrap input[type=button],.buddypress .buddypress-wrap input[type=reset],.buddypress .buddypress-wrap input[type=submit],.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a{background:#fff;border-color:#ccc;border-style:solid;border-width:1px;border-radius:0;color:#555;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:400;outline:0;padding:.3em .5em;text-align:center;text-decoration:none;width:auto;line-height:1}.buddypress .buddypress-wrap a.button.dashicons,.buddypress .buddypress-wrap button.dashicons{font-family:dashicons}.buddypress .buddypress-wrap .button-small[type=button]{padding:0 8px 1px}.buddypress .buddypress-wrap .activity-read-more a:focus,.buddypress .buddypress-wrap .activity-read-more a:hover,.buddypress .buddypress-wrap .button-nav li a:focus,.buddypress .buddypress-wrap .button-nav li a:hover,.buddypress .buddypress-wrap .button-nav li.current a,.buddypress .buddypress-wrap .comment-reply-link:focus,.buddypress .buddypress-wrap .comment-reply-link:hover,.buddypress .buddypress-wrap .generic-button a:focus,.buddypress .buddypress-wrap .generic-button a:hover,.buddypress .buddypress-wrap a.button:focus,.buddypress .buddypress-wrap a.button:hover,.buddypress .buddypress-wrap button:focus,.buddypress .buddypress-wrap button:hover,.buddypress .buddypress-wrap input[type=button]:focus,.buddypress .buddypress-wrap input[type=button]:hover,.buddypress .buddypress-wrap input[type=reset]:focus,.buddypress .buddypress-wrap input[type=reset]:hover,.buddypress .buddypress-wrap input[type=submit]:focus,.buddypress .buddypress-wrap input[type=submit]:hover{background:#ededed;border-color:#999;color:#333;outline:0;text-decoration:none}.buddypress .buddypress-wrap a.disabled,.buddypress .buddypress-wrap button.disabled,.buddypress .buddypress-wrap button.pending,.buddypress .buddypress-wrap div.pending a,.buddypress .buddypress-wrap input[type=button].disabled,.buddypress .buddypress-wrap input[type=button].pending,.buddypress .buddypress-wrap input[type=reset].disabled,.buddypress .buddypress-wrap input[type=reset].pending,.buddypress .buddypress-wrap input[type=submit].pending,.buddypress .buddypress-wrap input[type=submit]:disabled,.buddypress .buddypress-wrap input[type=submit][disabled=disabled]{border-color:#eee;color:#767676;cursor:default}.buddypress .buddypress-wrap a.disabled:hover,.buddypress .buddypress-wrap button.disabled:hover,.buddypress .buddypress-wrap button.pending:hover,.buddypress .buddypress-wrap div.pending a:hover,.buddypress .buddypress-wrap input[type=button]:hover.disabled,.buddypress .buddypress-wrap input[type=button]:hover.pending,.buddypress .buddypress-wrap input[type=reset]:hover.disabled,.buddypress .buddypress-wrap input[type=reset]:hover.pending,.buddypress .buddypress-wrap input[type=submit]:hover.disabled,.buddypress .buddypress-wrap input[type=submit]:hover.pending{border-color:#eee;color:#767676}.buddypress .buddypress-wrap button.text-button,.buddypress .buddypress-wrap input.text-button{background:0 0;border:0;box-shadow:none;color:#767676}.buddypress .buddypress-wrap button.text-button.small,.buddypress .buddypress-wrap input.text-button.small{font-size:13px}.buddypress .buddypress-wrap button.text-button:focus,.buddypress .buddypress-wrap button.text-button:hover,.buddypress .buddypress-wrap input.text-button:focus,.buddypress .buddypress-wrap input.text-button:hover{background:0 0;text-decoration:underline}.buddypress .buddypress-wrap .activity-list a.button{border:none}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover{color:#1fb3dd}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.invite-button:hover{color:#a00}.buddypress .buddypress-wrap #item-buttons:empty{display:none}.buddypress .buddypress-wrap input:disabled:focus,.buddypress .buddypress-wrap input:disabled:hover{background:0 0}.buddypress .buddypress-wrap .text-links-list a.button{background:0 0;border:none;border-right:1px solid #eee;color:#737373;display:inline-block;padding:.3em 1em}.buddypress .buddypress-wrap .text-links-list a.button:visited{color:#d6d6d6}.buddypress .buddypress-wrap .text-links-list a.button:focus,.buddypress .buddypress-wrap .text-links-list a.button:hover{color:#5087e5}.buddypress .buddypress-wrap .text-links-list a:first-child{padding-left:0}.buddypress .buddypress-wrap .text-links-list a:last-child{border-right:none}.buddypress .buddypress-wrap .bp-list.grid .action a,.buddypress .buddypress-wrap .bp-list.grid .action button{border:1px solid #ccc;display:block;margin:0}.buddypress .buddypress-wrap .bp-list.grid .action a:focus,.buddypress .buddypress-wrap .bp-list.grid .action a:hover,.buddypress .buddypress-wrap .bp-list.grid .action button:focus,.buddypress .buddypress-wrap .bp-list.grid .action button:hover{background:#ededed}.buddypress #buddypress .create-button{background:0 0;text-align:center}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{text-decoration:underline}@media screen and (min-width:46.8em){.buddypress #buddypress .create-button{float:right}}.buddypress #buddypress .create-button a{border:1px solid #ccc;border-radius:5px;background-clip:padding-box;box-shadow:inset 0 0 6px 0 #eaeaea;margin:.2em 0;width:auto}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{background:0 0;border-color:#ccc;box-shadow:inset 0 0 12px 0 #eaeaea}@media screen and (min-width:46.8em){.buddypress #buddypress.bp-dir-vert-nav .create-button{float:none;padding-top:2em}.buddypress #buddypress.bp-dir-vert-nav .create-button a{margin-right:.5em}}.buddypress #buddypress.bp-dir-hori-nav .create-button{float:left}.buddypress #buddypress.bp-dir-hori-nav .create-button a,.buddypress #buddypress.bp-dir-hori-nav .create-button a:hover{background:0 0;border:0;box-shadow:none;margin:0}.buddypress-wrap button.ac-reply-cancel,.buddypress-wrap button.bp-icons{background:0 0;border:0}.buddypress-wrap button.bp-icons:focus,.buddypress-wrap button.bp-icons:hover{background:0 0}.buddypress-wrap button.ac-reply-cancel:focus,.buddypress-wrap button.ac-reply-cancel:hover{background:0 0;text-decoration:underline}.buddypress-wrap .bp-invites-content li .invite-button span.icons:before,.buddypress-wrap .bp-invites-filters .invite-button span.icons:before,.buddypress-wrap .bp-messages-filters li a.messages-button:before,.buddypress-wrap .feed a:before,.buddypress-wrap .filter label:before{font-family:dashicons;font-size:18px}.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:27px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:32px}}.buddypress-wrap .bp-list a.button.invite-button:focus,.buddypress-wrap .bp-list a.button.invite-button:hover{background:0 0}.buddypress-wrap .filter label:before{content:"\f536"}.buddypress-wrap div.feed a:before,.buddypress-wrap li.feed a:before{content:"\f303"}.buddypress-wrap ul.item-list li .invite-button:not(.group-remove-invite-button) span.icons:before{content:"\f502"}.buddypress-wrap ul.item-list li .group-remove-invite-button span.icons:before,.buddypress-wrap ul.item-list li.selected .invite-button span.icons:before{content:"\f153"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-next-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-next-page:before{content:"\f345"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-prev-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-prev-page:before{content:"\f341"}.buddypress-wrap .warn{color:#b71717}.buddypress-wrap .bp-messages{border:1px solid #ccc;margin:0 0 15px}.buddypress-wrap .bp-messages .sitewide-notices{display:block;margin:5px;padding:.5em}.buddypress-wrap .bp-messages.info{margin-bottom:0}.buddypress-wrap .bp-messages.updated{clear:both;display:block}.buddypress-wrap .bp-messages.bp-user-messages-feedback{border:0}.buddypress-wrap #group-create-body .bp-cover-image-status p.warning{background:#0b80a4;border:0;box-shadow:0 0 3px 0 rgba(0,0,0,.2);color:#fff}.buddypress-wrap .bp-feedback:not(.custom-homepage-info){display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;align-items:stretch;align-items:center}.buddypress-wrap .bp-feedback{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;margin:10px 0;position:relative}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback span.bp-icon{color:#fff;display:block;font-family:dashicons;left:0;margin-right:10px;position:relative;padding:0 .5em}.buddypress-wrap .bp-feedback .bp-help-text{font-style:italic}.buddypress-wrap .bp-feedback .text{font-size:14px;margin:0;padding:.5em 0}.buddypress-wrap .bp-feedback.no-icon{padding:.5em}.buddypress-wrap .bp-feedback.small:before{line-height:inherit}.buddypress-wrap a[data-bp-close] span:before,.buddypress-wrap button[data-bp-close] span:before{font-size:32px}.buddypress-wrap a[data-bp-close],.buddypress-wrap button[data-bp-close]{border:0;position:absolute;top:10px;right:10px;width:32px}.buddypress-wrap .bp-feedback.no-icon a[data-bp-close],.buddypress-wrap .bp-feedback.no-icon button[data-bp-close]{top:-6px;right:6px}.buddypress-wrap button[data-bp-close]:hover{background-color:transparent}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback .bp-icon{font-size:20px;padding:0 2px}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon,.buddypress-wrap .bp-feedback.loading .bp-icon,.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{display:flex;align-items:center;align-self:stretch}.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon{background-color:#0b80a4}.buddypress-wrap .bp-feedback.help .bp-icon:before,.buddypress-wrap .bp-feedback.info .bp-icon:before{content:"\f348"}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{background-color:#d33}.buddypress-wrap .bp-feedback.error .bp-icon:before,.buddypress-wrap .bp-feedback.warning .bp-icon:before{content:"\f534"}.buddypress-wrap .bp-feedback.loading .bp-icon{background-color:#ffd087}.buddypress-wrap .bp-feedback.loading .bp-icon:before{content:"\f469"}.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon{background-color:#8a2}.buddypress-wrap .bp-feedback.success .bp-icon:before,.buddypress-wrap .bp-feedback.updated .bp-icon:before{content:"\f147"}.buddypress-wrap .bp-feedback.help .bp-icon:before{content:"\f468"}.buddypress-wrap #pass-strength-result{background-color:#eee;border-color:#ddd;border-style:solid;border-width:1px;display:none;font-weight:700;margin:10px 0 10px 0;padding:.5em;text-align:center;width:auto}.buddypress-wrap #pass-strength-result.show{display:block}.buddypress-wrap #pass-strength-result.mismatch{background-color:#333;border-color:transparent;color:#fff}.buddypress-wrap #pass-strength-result.bad,.buddypress-wrap #pass-strength-result.error{background-color:#ffb78c;border-color:#ff853c;color:#333}.buddypress-wrap #pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040;color:#333}.buddypress-wrap #pass-strength-result.good{background-color:#ffec8b;border-color:#fc0;color:#333}.buddypress-wrap #pass-strength-result.strong{background-color:#66d66e;border-color:#438c48;color:#333}.buddypress-wrap .standard-form#signup_form div div.error{background:#faa;color:#a00;margin:0 0 10px 0;padding:.5em;width:90%}.buddypress-wrap .accept,.buddypress-wrap .reject{float:left;margin-left:10px}.buddypress-wrap .members-list.grid .bp-ajax-message{background:rgba(255,255,255,.9);border:1px solid #eee;font-size:14px;left:2%;position:absolute;padding:.5em 1em;right:2%;top:30px}body.create-blog #buddypress .error,body.create-blog #buddypress .success{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;padding:10px 15px;background-color:#fff}body.create-blog #buddypress .error{border-left:4px solid #d33}body.create-blog #buddypress .success{border-left:4px solid #8a2}.buddypress.widget .item-options{font-size:12px;margin:0 0 1em;padding:1em 0}.buddypress.widget .bp-login-widget-user-avatar{float:left}.buddypress.widget .bp-login-widget-user-links{margin-left:70px}.buddypress.widget ul.item-list{list-style:none;margin:10px 0}.buddypress.widget ul.activity-list{padding:0}.buddypress.widget ul.activity-list blockquote{margin:0 0 1.5em;overflow:visible;padding:0 0 .75em .75em}.buddypress.widget ul.activity-list img{margin-bottom:.5em}.buddypress.widget ul.activity-list li{border-bottom:1px solid #ccc;margin-bottom:1em}.buddypress.widget ul.activity-list li .activity-header p{margin-bottom:.5em}.buddypress.widget ul.activity-list li:last-child{border-bottom:0}.buddypress.widget div.activity-list blockquote{padding:0;border:none}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini){position:relative;box-shadow:1px 0 4px rgba(0,0,0,.15);padding:0 1em}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after,.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{position:absolute;left:15px;display:block;width:0;height:0;border-style:solid;border-color:transparent;content:""}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{bottom:-18px;border-top-color:rgba(0,0,0,.15);border-width:9px;left:14px}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after{bottom:-16px;border-top-color:#fff;border-width:8px}.buddypress.widget div.activity-list blockquote .activity-item.mini .avatar{display:inline-block;width:20px;height:20px;vertical-align:middle;margin-right:2px}.buddypress.widget div.activity-list footer{display:flex;align-items:center}.buddypress.widget div.activity-list footer img.avatar{display:inline-block;border:none;margin-right:.5em}.buddypress.widget div.activity-list footer .activity-time-since{font-size:90%}.buddypress.widget .avatar-block{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}.buddypress.widget .avatar-block img{margin:.5em}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#friends-list li:before,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#groups-list li:before,.buddypress.widget ul#members-list li:after,.buddypress.widget ul#members-list li:before{content:" ";display:table}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#members-list li:after{clear:both}.buddypress.widget ul#friends-list li,.buddypress.widget ul#groups-list li,.buddypress.widget ul#members-list li{margin-bottom:1em}.buddypress.widget ul#friends-list li .item-avatar,.buddypress.widget ul#groups-list li .item-avatar,.buddypress.widget ul#members-list li .item-avatar{float:left;width:60px}.buddypress.widget ul#friends-list li .item,.buddypress.widget ul#groups-list li .item,.buddypress.widget ul#members-list li .item{margin-left:70px}.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:column nowrap;flex-flow:column nowrap}@media screen and (min-width:32em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{border:1px solid #eee;align-items:stretch;-moz-flex:1 1 46%;-o-flex:1 1 46%;flex:1 1 46%;margin:2%}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 20%;-o-flex:0 1 20%;flex:0 1 20%}}.buddypress-wrap .buddypress.widget ul#friends-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#groups-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#members-list li .item-avatar{padding:.5em;text-align:center}.buddypress-wrap .buddypress.widget ul#friends-list li .item,.buddypress-wrap .buddypress.widget ul#groups-list li .item,.buddypress-wrap .buddypress.widget ul#members-list li .item{padding:.5em}.buddypress-wrap .buddypress.widget ul#friends-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#groups-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#members-list li .item .item-meta{font-size:12px;overflow-wrap:break-word}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{margin:10px -2%;width:100%}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 auto;-o-flex:0 1 auto;flex:0 1 auto;margin:10px 2% 1%;width:46%}}.buddypress-wrap .buddypress.widget blockquote{margin:0 0 1.5em;overflow:visible;padding:0 0 .75em .75em}#buddypress-wrap *{transition:opacity .1s ease-in-out .1s}#buddypress-wrap a.button,#buddypress-wrap a.generic-button,#buddypress-wrap button,#buddypress-wrap input[type=reset],#buddypress-wrap input[type=submit]{transition:background .1s ease-in-out .1s,color .1s ease-in-out .1s,border-color .1s ease-in-out .1s}.buddypress-wrap a.loading,.buddypress-wrap input.loading{animation:loader-pulsate .5s infinite ease-in-out alternate;border-color:#aaa}@keyframes loader-pulsate{from{border-color:#aaa;box-shadow:0 0 6px #ccc}to{border-color:#ccc;box-shadow:0 0 6px #f8f8f8}}.buddypress-wrap a.loading:hover,.buddypress-wrap input.loading:hover{color:#777}[data-bp-tooltip]{position:relative}[data-bp-tooltip]:after{background-color:#fff;display:none;opacity:0;position:absolute;transform:translate3d(0,0,0);visibility:hidden}[data-bp-tooltip]:after{border:1px solid #737373;border-radius:1px;box-shadow:4px 4px 8px rgba(0,0,0,.2);color:#333;content:attr(data-bp-tooltip);font-family:"Helvetica Neue",helvetica,arial,san-serif;font-size:12px;font-weight:400;letter-spacing:normal;line-height:1.25;max-width:200px;padding:5px 8px;pointer-events:none;text-shadow:none;text-transform:none;transition:all 1.5s ease;white-space:nowrap;word-wrap:break-word;z-index:100000}[data-bp-tooltip]:active:after,[data-bp-tooltip]:focus:after,[data-bp-tooltip]:hover:after{display:block;opacity:1;overflow:visible;visibility:visible}[data-bp-tooltip=""]{display:none;opacity:0;visibility:hidden}.bp-tooltip:after{left:50%;margin-top:7px;top:110%;transform:translate(-50%,0)}.user-list .bp-tooltip:after{left:0;transform:translate(0,0)}@media screen and (min-width:46.8em){.user-list .bp-tooltip:after{left:auto;right:0;transform:translate(0,0)}}.activity-list .bp-tooltip:after,.activity-meta-action .bp-tooltip:after,.avatar-block .item-avatar .bp-tooltip:after,.notification-actions .bp-tooltip:after,.participants-list .bp-tooltip:after{left:0;transform:translate(0,0)}.bp-invites-content .bp-tooltip:after,.message-metadata .actions .bp-tooltip:after,.single-message-thread-header .actions .bp-tooltip:after{left:auto;right:0;transform:translate(0,0)}.bp-invites-content #send-invites-editor .bp-tooltip:after{left:0;right:auto}#item-body,.single-screen-navs{box-sizing:border-box}.grid>li,.grid>li .generic-button a{box-sizing:border-box}.grid>li{border-bottom:0;padding-bottom:10px;padding-top:0}.grid>li .list-wrap{background:#fafafa;border:1px solid #eee;padding-bottom:15px;position:relative;overflow:hidden;padding-top:14px}.grid>li .list-wrap .list-title{padding:.5em}.grid>li .list-wrap .update{color:#737373;padding:.5em 2em}.grid>li .item-avatar{text-align:center}.grid>li .item-avatar .avatar{border-radius:50%;display:inline-block;width:50%}@media screen and (min-width:24em){.grid.members-list .list-wrap{min-height:340px}.grid.members-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.members-group-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.groups-list .list-wrap{min-height:470px}.grid.groups-list .list-wrap .item-block{min-height:6rem}.grid.groups-list .list-wrap .group-desc{margin:15px auto 0;min-height:5em;overflow:hidden}.grid.groups-list .list-wrap .group-details,.grid.groups-list .list-wrap .item-desc,.grid.groups-list .list-wrap .last-activity{margin-bottom:0}.grid.groups-list .list-wrap .group-details p,.grid.groups-list .list-wrap .item-desc p,.grid.groups-list .list-wrap .last-activity p{margin-bottom:0}.grid.blogs-list .list-wrap{min-height:350px}.grid.blogs-list .list-wrap .item-block{margin:0 auto;min-height:7rem}}@media screen and (min-width:24em){.grid>li.item-entry{float:left;margin:0}.grid.two>li{padding-bottom:20px}}@media screen and (min-width:24em) and (min-width:75em){.grid.two>li .list-wrap{max-width:500px;margin:0 auto}}@media screen and (min-width:24em){.grid.three>li,.grid.two>li{width:50%}.grid.three>li:nth-child(odd),.grid.two>li:nth-child(odd){padding-right:10px}.grid.three>li:nth-child(even),.grid.two>li:nth-child(even){padding-left:10px}.grid.three>li .item,.grid.two>li .item{margin:1rem auto 0;width:80%}.grid.three>li .item .item-title,.grid.two>li .item .item-title{width:auto}}@media screen and (min-width:46.8em){.grid.three>li{padding-top:0;width:33.333333%;width:calc(100% / 3)}.grid.three>li:nth-child(1n+1){padding-left:5px;padding-right:5px}.grid.three>li:nth-child(3n+3){padding-left:5px;padding-right:0}.grid.three>li:nth-child(3n+1){padding-left:0;padding-right:5px}}@media screen and (min-width:46.8em){.grid.four>li{width:25%}.grid.four>li:nth-child(1n+1){padding-left:5px;padding-right:5px}.grid.four>li:nth-child(4n+4){padding-left:5px;padding-right:0}.grid.four>li:nth-child(4n+1){padding-left:0;padding-right:5px}}.buddypress-wrap .grid.bp-list{padding-top:1em}.buddypress-wrap .grid.bp-list>li{border-bottom:none}.buddypress-wrap .grid.bp-list>li .list-wrap{padding-bottom:3em}.buddypress-wrap .grid.bp-list>li .item-avatar{margin:0;text-align:center;width:auto}.buddypress-wrap .grid.bp-list>li .item-avatar img.avatar{display:inline-block;height:auto;width:50%}.buddypress-wrap .grid.bp-list>li .item-meta,.buddypress-wrap .grid.bp-list>li .list-title{float:none;text-align:center}.buddypress-wrap .grid.bp-list>li .list-title{font-size:inherit;line-height:1.1}.buddypress-wrap .grid.bp-list>li .item{font-size:18px;left:0;margin:0 auto;text-align:center;width:96%}@media screen and (min-width:46.8em){.buddypress-wrap .grid.bp-list>li .item{font-size:22px}}.buddypress-wrap .grid.bp-list>li .item .group-desc,.buddypress-wrap .grid.bp-list>li .item .item-block{float:none;width:96%}.buddypress-wrap .grid.bp-list>li .item .item-block{margin-bottom:10px}.buddypress-wrap .grid.bp-list>li .item .last-activity{margin-top:5px}.buddypress-wrap .grid.bp-list>li .item .group-desc{clear:none}.buddypress-wrap .grid.bp-list>li .item .user-update{clear:both;text-align:left}.buddypress-wrap .grid.bp-list>li .item .activity-read-more a{display:inline}.buddypress-wrap .grid.bp-list>li .action{bottom:5px;float:none;height:auto;left:0;margin:0;padding:0 5px;position:absolute;text-align:center;top:auto;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button{float:none;margin:5px 0 0;text-align:center;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button a,.buddypress-wrap .grid.bp-list>li .action .generic-button button{width:100%}.buddypress-wrap .grid.bp-list>li .avatar,.buddypress-wrap .grid.bp-list>li .item,.buddypress-wrap .grid.bp-list>li .item-avatar{float:none}.buddypress-wrap .blogs-list.grid.two>li .blogs-title{min-height:5em}.buddypress-wrap .grid.four>li .group-desc,.buddypress-wrap .grid.three>li .group-desc{min-height:8em}.buddypress-wrap .blogs-list.grid.four>li,.buddypress-wrap .blogs-list.grid.three>li{min-height:350px}.buddypress-wrap .blogs-list.grid.four>li .last-activity,.buddypress-wrap .blogs-list.grid.three>li .last-activity{margin-bottom:0}.buddypress-wrap .blogs-list.grid.four>li .last-post,.buddypress-wrap .blogs-list.grid.three>li .last-post{margin-top:0}.buddypress:not(.logged-in) .grid.bp-list .list-wrap{padding-bottom:5px}.buddypress:not(.logged-in) .grid.groups-list .list-wrap{min-height:430px}.buddypress:not(.logged-in) .grid.members-list .list-wrap{min-height:300px}.buddypress:not(.logged-in) .grid.blogs-list .list-wrap{min-height:320px}@media screen and (min-width:46.8em){.bp-single-vert-nav .bp-navs.vertical{overflow:visible}.bp-single-vert-nav .bp-navs.vertical ul{border-right:1px solid #d6d6d6;border-bottom:0;float:left;margin-right:-1px;width:25%}.bp-single-vert-nav .bp-navs.vertical li{float:none;margin-right:0}.bp-single-vert-nav .bp-navs.vertical li.selected a{background:#ccc;color:#333}.bp-single-vert-nav .bp-navs.vertical li:focus,.bp-single-vert-nav .bp-navs.vertical li:hover{background:#ccc}.bp-single-vert-nav .bp-navs.vertical li span{background:#d6d6d6;border-radius:10%;float:right;margin-right:2px}.bp-single-vert-nav .bp-navs.vertical li:hover span{border-color:#eaeaea}.bp-single-vert-nav .bp-navs.vertical.tabbed-links li.selected a{padding-left:0}.bp-single-vert-nav .bp-wrap{margin-bottom:15px}.bp-single-vert-nav .bp-wrap .group-nav-tabs.groups-nav ul li,.bp-single-vert-nav .bp-wrap .user-nav-tabs.users-nav ul li{left:1px;position:relative}.bp-single-vert-nav .item-body:not(#group-create-body){background:#fff;border-left:1px solid #d6d6d6;float:right;margin:0;min-height:400px;padding:0 0 0 1em;width:calc(75% + 1px)}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:#eaeaea;margin:0 0 0 -5px;width:auto}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li{font-size:16px;margin:10px 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border-right:1px solid #ccc;padding:0 .5em}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:focus,.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:hover{background:0 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current a{background:0 0;color:#333;text-decoration:underline}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li:last-child a{border:none}.bp-dir-vert-nav .dir-navs{float:left;left:1px;position:relative;width:20%}.bp-dir-vert-nav .dir-navs ul li{float:none;overflow:hidden;width:auto}.bp-dir-vert-nav .dir-navs ul li.selected{border:1px solid #eee}.bp-dir-vert-nav .dir-navs ul li.selected a{background:#555;color:#fff}.bp-dir-vert-nav .dir-navs ul li.selected a span{background:#eaeaea;border-color:#ccc;color:#5087e5}.bp-dir-vert-nav .dir-navs ul li a:focus,.bp-dir-vert-nav .dir-navs ul li a:hover{background:#ccc;color:#333}.bp-dir-vert-nav .dir-navs ul li a:focus span,.bp-dir-vert-nav .dir-navs ul li a:hover span{border:1px solid #555}.bp-dir-vert-nav .screen-content{border-left:1px solid #d6d6d6;margin-left:20%;overflow:hidden;padding:0 0 2em 1em}.bp-dir-vert-nav .screen-content .subnav-filters{margin-top:0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:hover{background:0 0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected{background:0 0;border:1px solid #d6d6d6;border-right-color:#fff}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a{background:0 0;color:#333;font-weight:600}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a span{background:#555;border:1px solid #d6d6d6;color:#fff}}
1
+ body #buddypress * a{box-shadow:none;text-decoration:none}body #buddypress div,body #buddypress dl,body #buddypress input[type=reset],body #buddypress input[type=search],body #buddypress input[type=submit],body #buddypress li,body #buddypress select,body #buddypress textarea{border-radius:2px;background-clip:padding-box}body #buddypress #item-body blockquote,body #buddypress .bp-lists blockquote{margin-left:0}body #buddypress .bp-list .action{box-sizing:border-box}@media screen and (min-width:46.8em){body.buddypress .entry-content:not(.alignwide):not(.alignfull),body.buddypress .entry-header:not(.alignwide):not(.alignfull),body.buddypress .site-content .entry-header:not(.alignwide):not(.alignfull){max-width:none}body.buddypress .entry-header{float:none}body.buddypress .entry-content{float:none}body.buddypress .site-content{padding-top:2.5em}body.buddypress #page #primary{max-width:none}body.buddypress #page #primary .entry-content,body.buddypress #page #primary .entry-header{float:none;width:auto}}body.buddypress .buddypress-wrap h1,body.buddypress .buddypress-wrap h2,body.buddypress .buddypress-wrap h3,body.buddypress .buddypress-wrap h4,body.buddypress .buddypress-wrap h5,body.buddypress .buddypress-wrap h6{clear:none;margin:1em 0;padding:0}body.buddypress .buddypress-wrap h2:before{display:none}.bp-wrap:after,.bp-wrap:before{content:" ";display:table}.bp-wrap:after{clear:both}.buddypress-wrap.round-avatars .avatar{border-radius:50%}body.buddypress article.page>.entry-header{margin-bottom:2em;padding:0}body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:28px;font-weight:inherit;color:#767676}@media screen and (min-width:46.8em){body.buddypress article.page>.entry-header:not(.alignwide):not(.alignfull) .entry-title{font-size:34px}}.buddypress-wrap dt.section-title{font-size:18px}@media screen and (min-width:46.8em){.buddypress-wrap dt.section-title{font-size:22px}}.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-label-text,.buddypress-wrap .message-threads{font-size:16px}}.buddypress-wrap .activity-header{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-header{font-size:16px}}.buddypress-wrap .activity-inner{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .activity-inner{font-size:18px}}.buddypress-wrap #whats-new-post-in{font-size:16px}.buddypress-wrap .acomment-meta,.buddypress-wrap .mini .activity-header{font-size:16px}.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .dir-component-filters #activity-filter-by{font-size:16px}}.buddypress-wrap .bp-tables-user th{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user th{font-size:16px}}.buddypress-wrap .bp-tables-user td{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-tables-user td{font-size:14px}}.buddypress-wrap .profile-fields th{font-size:15px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields th{font-size:18px}}.buddypress-wrap .profile-fields td{font-size:13px}@media screen and (min-width:46.8em){.buddypress-wrap .profile-fields td{font-size:16px}}.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:12px}@media screen and (min-width:46.8em){.buddypress-wrap #invitation-select,.buddypress-wrap #notification-select{font-size:14px}}.bp-navs{background:0 0;clear:both;overflow:hidden}.bp-navs ul{margin:0;padding:0}.bp-navs ul li{list-style:none;margin:0}.bp-navs ul li.last select{max-width:185px}.bp-navs ul li a,.bp-navs ul li span{border:0;display:block;padding:5px 10px;text-decoration:none}.bp-navs ul li .count{background:#eaeaea;border:1px solid #ccc;border-radius:50%;color:#555;display:inline;font-size:12px;margin-left:2px;padding:3px 6px;text-align:center;vertical-align:middle}.bp-navs ul li.current a,.bp-navs ul li.selected a{color:#333;opacity:1}.bp-navs.bp-invites-filters ul li a,.bp-navs.bp-messages-filters ul li a{border:1px solid #ccc;display:inline-block}.main-navs.dir-navs{margin-bottom:20px}.buddypress-wrap .bp-navs li a:hover a .count,.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count{background-color:#ccc}.buddypress-wrap .bp-navs li:not(.current) a:focus,.buddypress-wrap .bp-navs li:not(.current) a:hover,.buddypress-wrap .bp-navs li:not(.selected) a:focus,.buddypress-wrap .bp-navs li:not(.selected) a:hover{background:#ccc;color:#333}.buddypress-wrap .bp-navs li.current a,.buddypress-wrap .bp-navs li.current a:focus,.buddypress-wrap .bp-navs li.current a:hover,.buddypress-wrap .bp-navs li.selected a,.buddypress-wrap .bp-navs li.selected a:focus,.buddypress-wrap .bp-navs li.selected a:hover{background:#555;color:#fafafa}@media screen and (min-width:46.8em){.buddypress-wrap .main-navs:not(.dir-navs) li.current a,.buddypress-wrap .main-navs:not(.dir-navs) li.selected a{background:#fff;color:#333;font-weight:600}.buddypress-wrap .main-navs.vertical li.current a,.buddypress-wrap .main-navs.vertical li.selected a{background:#555;color:#fafafa;text-decoration:none}.buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border-bottom:1px solid #eee;border-top:1px solid #eee;box-shadow:0 2px 12px 0 #fafafa}}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.selected a{background:#fff;color:#333;font-weight:600}@media screen and (max-width:46.8em){.buddypress-wrap:not(.bp-single-vert-nav) .bp-navs li{background:#eaeaea}}.buddypress-wrap:not(.bp-single-vert-nav) .main-navs>ul>li>a{padding:.5em calc(.5em + 2px)}.buddypress-wrap:not(.bp-single-vert-nav) .group-subnav#subsubnav,.buddypress-wrap:not(.bp-single-vert-nav) .user-subnav#subsubnav{background:0 0}.buddypress-wrap .bp-subnavs,.buddypress-wrap ul.subnav{width:100%}.buddypress-wrap .bp-subnavs{margin:10px 0;overflow:hidden}.buddypress-wrap .bp-subnavs ul li{margin-top:0}.buddypress-wrap .bp-subnavs ul li.current :focus,.buddypress-wrap .bp-subnavs ul li.current :hover,.buddypress-wrap .bp-subnavs ul li.selected :focus,.buddypress-wrap .bp-subnavs ul li.selected :hover{background:0 0;color:#333}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap .bp-navs.bp-invites-filters#subsubnav ul li.last,.buddypress-wrap .bp-navs.bp-invites-nav#subnav ul li.last,.buddypress-wrap .bp-navs.bp-messages-filters#subsubnav ul li.last{margin-top:0}@media screen and (max-width:46.8em){.buddypress-wrap .single-screen-navs{border:1px solid #eee}.buddypress-wrap .single-screen-navs li{border-bottom:1px solid #eee}.buddypress-wrap .single-screen-navs li:last-child{border-bottom:none}.buddypress-wrap .bp-subnavs li a{font-size:14px}.buddypress-wrap .bp-subnavs li.current a,.buddypress-wrap .bp-subnavs li.current a:focus,.buddypress-wrap .bp-subnavs li.current a:hover,.buddypress-wrap .bp-subnavs li.selected a,.buddypress-wrap .bp-subnavs li.selected a:focus,.buddypress-wrap .bp-subnavs li.selected a:hover{background:#555;color:#fff}}.buddypress-wrap .bp-navs li.current a .count,.buddypress-wrap .bp-navs li.selected a .count,.buddypress_object_nav .bp-navs li.current a .count,.buddypress_object_nav .bp-navs li.selected a .count{background-color:#fff}.buddypress-wrap .bp-navs li.dynamic a .count,.buddypress-wrap .bp-navs li.dynamic.current a .count,.buddypress-wrap .bp-navs li.dynamic.selected a .count,.buddypress_object_nav .bp-navs li.dynamic a .count,.buddypress_object_nav .bp-navs li.dynamic.current a .count,.buddypress_object_nav .bp-navs li.dynamic.selected a .count{background-color:#5087e5;border:0;color:#fafafa}.buddypress-wrap .bp-navs li.dynamic a:hover .count,.buddypress_object_nav .bp-navs li.dynamic a:hover .count{background-color:#5087e5;border:0;color:#fff}.buddypress-wrap .bp-navs li a .count:empty,.buddypress_object_nav .bp-navs li a .count:empty{display:none}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current),.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current){color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a:hover{background:0 0;color:#333}.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress-wrap .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:focus,.buddypress_object_nav .bp-navs.group-create-links ul li:not(.current) a[disabled]:hover{color:#767676}.buddypress-wrap .bp-navs.group-create-links ul li.current a,.buddypress_object_nav .bp-navs.group-create-links ul li.current a{text-align:center}@media screen and (min-width:46.8em){.buddypress-wrap .bp-navs li{float:left}.buddypress-wrap .subnav{float:left}.buddypress-wrap ul.subnav{width:auto}.buddypress-wrap #subsubnav .activity-search{float:left}.buddypress-wrap #subsubnav .filter{float:right}}.buddypress_object_nav .bp-navs li a .count{display:inline-block;float:right}@media screen and (min-width:46.8em){.bp-dir-vert-nav .bp-navs.dir-navs{background:0 0}.bp-dir-vert-nav .bp-navs.dir-navs a .count{float:right}}@media screen and (min-width:46.8em){.buddypress-wrap .tabbed-links ol,.buddypress-wrap .tabbed-links ul{border-bottom:1px solid #ccc;float:none;margin:20px 0 10px}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ol:before,.buddypress-wrap .tabbed-links ul:after,.buddypress-wrap .tabbed-links ul:before{content:" ";display:block}.buddypress-wrap .tabbed-links ol:after,.buddypress-wrap .tabbed-links ul:after{clear:both}.buddypress-wrap .tabbed-links ol li,.buddypress-wrap .tabbed-links ul li{float:left;list-style:none;margin:0 10px 0 0}.buddypress-wrap .tabbed-links ol li a,.buddypress-wrap .tabbed-links ol li span:not(.count),.buddypress-wrap .tabbed-links ul li a,.buddypress-wrap .tabbed-links ul li span:not(.count){background:0 0;border:none;display:block;padding:4px 10px}.buddypress-wrap .tabbed-links ol li a:focus,.buddypress-wrap .tabbed-links ol li a:hover,.buddypress-wrap .tabbed-links ul li a:focus,.buddypress-wrap .tabbed-links ul li a:hover{background:0 0}.buddypress-wrap .tabbed-links ol li:not(.current),.buddypress-wrap .tabbed-links ul li:not(.current){margin-bottom:2px}.buddypress-wrap .tabbed-links ol li.current,.buddypress-wrap .tabbed-links ul li.current{border-color:#ccc #ccc #fff;border-style:solid;border-top-left-radius:4px;border-top-right-radius:4px;border-width:1px;margin-bottom:-1px;padding:0 .5em 1px}.buddypress-wrap .tabbed-links ol li.current a,.buddypress-wrap .tabbed-links ul li.current a{background:0 0;color:#333}.buddypress-wrap .bp-subnavs.tabbed-links>ul{margin-top:0}.buddypress-wrap .bp-navs.tabbed-links{background:0 0;margin-top:2px}.buddypress-wrap .bp-navs.tabbed-links ul li a{border-right:0;font-size:inherit}.buddypress-wrap .bp-navs.tabbed-links ul li.last{float:right;margin:0}.buddypress-wrap .bp-navs.tabbed-links ul li.last a{margin-top:-.5em}.buddypress-wrap .bp-navs.tabbed-links ul li a,.buddypress-wrap .bp-navs.tabbed-links ul li a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li a:hover,.buddypress-wrap .bp-navs.tabbed-links ul li.current a,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:focus,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:hover{background:0 0;border:0}.buddypress-wrap .bp-navs.tabbed-links ul li a:active,.buddypress-wrap .bp-navs.tabbed-links ul li.current a:active{outline:0}}.buddypress-wrap .dir-component-filters .filter label{display:inline}.buddypress-wrap .subnav-filters:after,.buddypress-wrap .subnav-filters:before{content:" ";display:table}.buddypress-wrap .subnav-filters:after{clear:both}.buddypress-wrap .subnav-filters{background:0 0;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .subnav-filters div{margin:0}.buddypress-wrap .subnav-filters>ul{float:left;list-style:none}.buddypress-wrap .subnav-filters.bp-messages-filters ul{width:100%}.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:1em}@media screen and (min-width:46.8em){.buddypress-wrap .subnav-filters.bp-messages-filters .messages-search{margin-bottom:0}}.buddypress-wrap .subnav-filters div{float:none}.buddypress-wrap .subnav-filters div input[type=search],.buddypress-wrap .subnav-filters div select{font-size:16px}.buddypress-wrap .subnav-filters div button.nouveau-search-submit{padding:5px .8em 6px}.buddypress-wrap .subnav-filters div button#user_messages_search_submit{padding:7px .8em}.buddypress-wrap .subnav-filters .component-filters{margin-top:10px}.buddypress-wrap .subnav-filters .feed{margin-right:15px}.buddypress-wrap .subnav-filters .last.filter label{display:inline}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:before{content:" ";display:table}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap:after{clear:both}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-show{display:inline-block}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions-wrap.bp-hide{display:none}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap{border:0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:focus,.buddypress-wrap .subnav-filters .user-messages-bulk-actions .select-wrap:hover{outline:1px solid #d6d6d6}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-actions{float:left}.buddypress-wrap .subnav-filters .user-messages-bulk-actions label{display:inline-block;font-weight:300;margin-right:25px;padding:5px 0}.buddypress-wrap .subnav-filters .user-messages-bulk-actions div select{-webkit-appearance:textfield}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply{border:0;border-radius:0;font-weight:400;line-height:1.8;margin:0 0 0 10px;padding:3px 5px;text-align:center;text-transform:none;width:auto}.buddypress-wrap .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}@media screen and (min-width:32em){.buddypress-wrap .subnav-filters li{margin-bottom:0}.buddypress-wrap .subnav-filters .bp-search,.buddypress-wrap .subnav-filters .dir-search,.buddypress-wrap .subnav-filters .feed,.buddypress-wrap .subnav-filters .group-act-search,.buddypress-wrap .subnav-filters .group-invites-search,.buddypress-wrap .subnav-filters .subnav-search,.buddypress-wrap .subnav-filters .subnav-search form,.buddypress-wrap .subnav-filters .user-messages-bulk-actions,.buddypress-wrap .subnav-filters .user-messages-search{float:left}.buddypress-wrap .subnav-filters .component-filters,.buddypress-wrap .subnav-filters .last{float:right;margin-top:0;width:auto}.buddypress-wrap .subnav-filters .component-filters select,.buddypress-wrap .subnav-filters .last select{max-width:250px}.buddypress-wrap .subnav-filters .user-messages-search{float:right}}.buddypress-wrap .invitations-options-nav input#invitation-bulk-manage,.buddypress-wrap .notifications-options-nav input#notification-bulk-manage{border:0;border-radius:0;line-height:1.6}.buddypress-wrap .group-subnav-filters .group-invites-search{margin-bottom:1em}.buddypress-wrap .group-subnav-filters .last{text-align:center}.buddypress-wrap .bp-pagination{background:0 0;border:0;color:#767676;float:left;font-size:small;margin:0;padding:.5em 0;position:relative;width:100%}.buddypress-wrap .bp-pagination .pag-count{float:left}.buddypress-wrap .bp-pagination .bp-pagination-links{float:right;margin-right:10px}.buddypress-wrap .bp-pagination .bp-pagination-links a,.buddypress-wrap .bp-pagination .bp-pagination-links span{font-size:small;padding:0 5px}.buddypress-wrap .bp-pagination .bp-pagination-links a:focus,.buddypress-wrap .bp-pagination .bp-pagination-links a:hover{opacity:1}.buddypress-wrap .bp-pagination p{margin:0}.bp-list:after,.bp-list:before{content:" ";display:table}.bp-list:after{clear:both}.bp-list{box-sizing:border-box;border-top:1px solid #eaeaea;clear:both;list-style:none;margin:20px 0;padding:.5em 0;width:100%}.bp-list li:after,.bp-list li:before{content:" ";display:table}.bp-list li:after{clear:both}.bp-list>li{border-bottom:1px solid #eaeaea}.bp-list li{list-style:none;margin:10px 0;padding:.5em 0;position:relative}.bp-list li .item-avatar{text-align:center}.bp-list li .item-avatar img.avatar{display:inline-block;width:auto;height:auto}.bp-list li .item .group-details,.bp-list li .item .item-avatar,.bp-list li .item .item-meta,.bp-list li .item .list-title{text-align:center}.bp-list li .item .list-title{clear:none;font-size:22px;font-weight:400;line-height:1.1;margin:0 auto}@media screen and (min-width:46.8em){.bp-list li .item .list-title{font-size:26px}}.bp-list li .item-meta,.bp-list li .meta{color:#737373;font-size:12px;margin-bottom:10px;margin-top:10px}.bp-list li .last-post{text-align:center}.bp-list li .action{margin:0;text-align:center}.bp-list li .action .generic-button{display:inline-block;font-size:12px;margin:0 10px 0 0}.bp-list li .action div.generic-button{margin:10px 0}@media screen and (min-width:46.8em){.bp-list li .item-avatar{float:left;margin-right:5%}.bp-list li .item{margin:0;overflow:hidden}.bp-list li .item .item-block{float:left;margin-right:2%;width:50%}.bp-list li .item .item-meta,.bp-list li .item .list-title{float:left;text-align:left}.bp-list li .item .group-details,.bp-list li .item .last-post{text-align:left}.bp-list li .group-desc,.bp-list li .last-post,.bp-list li .user-update{clear:none;overflow:hidden;width:auto}.bp-list li .action{clear:left;padding:0;text-align:left}.bp-list li .action li.generic-button{margin-right:0}.bp-list li .action div.generic-button{margin:0 0 10px}.bp-list li .generic-button{display:block;margin:0 0 5px 0}}@media screen and (min-width:32em){#activity-stream{clear:both;padding-top:1em}}.activity-list.bp-list{background:#fafafa;border:1px solid #eee}.activity-list.bp-list .activity-item{background:#fff;border:1px solid #b7b7b7;box-shadow:0 0 6px #d2d2d2;margin:20px 0}.activity-list.bp-list li:first-child{margin-top:0}.friends-list{list-style-type:none}.friends-request-list .item-title,.membership-requests-list .item-title{text-align:center}@media screen and (min-width:46.8em){.friends-request-list li,.membership-requests-list li{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap}.friends-request-list li .item,.membership-requests-list li .item{-moz-flex:1 1 auto;-o-flex:1 1 auto;flex:1 1 auto}.friends-request-list li .action,.membership-requests-list li .action{text-align:right}.friends-request-list li .item-title,.membership-requests-list li .item-title{font-size:22px;text-align:left}.friends-request-list li .item-title h3,.membership-requests-list li .item-title h3{margin:0}}#notifications-user-list{clear:both;padding-top:1em}@media screen and (min-width:46.8em){body:not(.logged-in) .bp-list .item{margin-right:0}}.activity-permalink .item-list,.activity-permalink .item-list li.activity-item{border:0}.activity-update-form{padding:10px 10px 0}.item-body .activity-update-form .activity-form{margin:0;padding:0}.activity-update-form{border:1px solid #ccc;box-shadow:inset 0 0 6px #eee;margin:15px 0}.activity-update-form #whats-new-avatar{margin:10px 0;text-align:center}.activity-update-form #whats-new-avatar img{box-shadow:none;display:inline-block;height:auto;width:auto}.activity-update-form #whats-new-content{padding:0 0 20px 0}.activity-update-form #whats-new-textarea textarea{background:#fff;box-sizing:border-box;color:#333;font-family:inherit;font-size:medium;height:2.2em;line-height:1.4;padding:6px;width:100%}.activity-update-form #whats-new-textarea textarea:focus{box-shadow:0 0 6px 0 #d6d6d6}.activity-update-form #whats-new-post-in-box{margin:10px 0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items{list-style:none;margin:10px 0;padding-left:0}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:10px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items button.bp-remove-item{margin-left:10px;height:auto}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items #activity-autocomplete{padding:.3em;width:100%}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object{display:flex;align-items:center;padding:.2em}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object .avatar{width:30px;height:30px}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object span{padding-left:10px;vertical-align:middle}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:focus,.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object:hover{background:#eaeaea;cursor:pointer}.activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items .bp-activity-object.selected{border:1px solid #d6d6d6}.activity-update-form #whats-new-submit{margin:15px 0 10px}.activity-update-form #whats-new-submit input{font-size:14px;line-height:inherit;margin-bottom:10px;margin-right:10px;padding:.2em 0;text-align:center;width:100%}@media screen and (min-width:46.8em){.activity-update-form #whats-new-avatar{display:block;float:left;margin:0}.activity-update-form #whats-new-content,.activity-update-form #whats-new-post-in-box,.activity-update-form #whats-new-submit{margin-left:55px}.activity-update-form #whats-new-submit input{margin-bottom:0;margin-right:10px;width:8em}}.activity-list{padding:.5em}.activity-list .activity-item:after,.activity-list .activity-item:before{content:" ";display:table}.activity-list .activity-item:after{clear:both}.activity-list .activity-item{list-style:none;padding:1em}.activity-list .activity-item.has-comments{padding-bottom:1em}.activity-list .activity-item div.item-avatar{margin:0 auto;text-align:center;width:auto}.activity-list .activity-item div.item-avatar img{height:auto;max-width:40%}@media screen and (min-width:46.8em){.activity-list .activity-item div.item-avatar{margin:0 2% 0 0;text-align:left;width:15%}.activity-list .activity-item div.item-avatar img{max-width:80%}}.activity-list .activity-item.mini{font-size:13px;position:relative}.activity-list .activity-item.mini .activity-avatar{margin-left:0;text-align:center;width:auto}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:15%}@media screen and (min-width:46.8em){.activity-list .activity-item.mini .activity-avatar{margin-left:15px;text-align:left;width:15%}.activity-list .activity-item.mini .activity-avatar img.FB_profile_pic,.activity-list .activity-item.mini .activity-avatar img.avatar{max-width:60%}}.activity-list .activity-item.new_forum_post .activity-inner,.activity-list .activity-item.new_forum_topic .activity-inner{border-left:2px solid #eaeaea;margin-left:10px;padding-left:1em}.activity-list .activity-item.newest_blogs_activity,.activity-list .activity-item.newest_friends_activity,.activity-list .activity-item.newest_groups_activity,.activity-list .activity-item.newest_mentions_activity{background:rgba(31,179,221,.1)}.activity-list .activity-item .activity-inreplyto{color:#767676;font-size:13px}.activity-list .activity-item .activity-inreplyto>p{display:inline;margin:0}.activity-list .activity-item .activity-inreplyto .activity-inner,.activity-list .activity-item .activity-inreplyto blockquote{background:0 0;border:0;display:inline;margin:0;overflow:hidden;padding:0}.activity-list .activity-item .activity-header{margin:0 auto;width:80%}.activity-list .activity-item .activity-header a,.activity-list .activity-item .activity-header img{display:inline}.activity-list .activity-item .activity-header .avatar{display:inline-block;margin:0 5px;vertical-align:text-top;width:20px;height:20px}.activity-list .activity-item .activity-header .time-since{font-size:14px;color:#767676;text-decoration:none}.activity-list .activity-item .activity-header .time-since:hover{color:#767676;cursor:pointer;text-decoration:underline}.activity-list .activity-item .activity-content .activity-header,.activity-list .activity-item .activity-content .comment-header{color:#767676;margin-bottom:10px}.activity-list .activity-item .activity-content .activity-inner,.activity-list .activity-item .activity-content blockquote{background:#fafafa;margin:15px 0 10px;overflow:hidden;padding:1em}.activity-list .activity-item .activity-content p{margin:0}.activity-list .activity-item .activity-inner p{word-wrap:break-word}.activity-list .activity-item .activity-read-more{margin-left:1em;white-space:nowrap}.activity-list .activity-item ul.activity-meta{margin:0;padding-left:0}.activity-list .activity-item ul.activity-meta li{border:0;display:inline-block}.activity-list .activity-item .activity-meta.action{border:1px solid transparent;background:#fafafa;padding:2px;position:relative;text-align:left}.activity-list .activity-item .activity-meta.action div.generic-button{margin:0}.activity-list .activity-item .activity-meta.action .button{background:0 0;color:#555}.activity-list .activity-item .activity-meta.action a{padding:4px 8px}.activity-list .activity-item .activity-meta.action .button:focus,.activity-list .activity-item .activity-meta.action .button:hover{background:0 0}.activity-list .activity-item .activity-meta.action .button:before,.activity-list .activity-item .activity-meta.action .icons:before{font-family:dashicons;font-size:18px;vertical-align:middle}.activity-list .activity-item .activity-meta.action .acomment-reply.button:before{content:"\f101"}.activity-list .activity-item .activity-meta.action .view:before{content:"\f125"}.activity-list .activity-item .activity-meta.action .fav:before{content:"\f154"}.activity-list .activity-item .activity-meta.action .unfav:before{content:"\f155"}.activity-list .activity-item .activity-meta.action .delete-activity:before{content:"\f153"}.activity-list .activity-item .activity-meta.action .delete-activity:hover{color:#800}.activity-list .activity-item .activity-meta.action .button{border:0;box-shadow:none}.activity-list .activity-item .activity-meta.action .button span{background:0 0;color:#555;font-weight:700}@media screen and (min-width:46.8em){.activity-list.bp-list{padding:30px}.activity-list .activity-item .activity-content{margin:0;position:relative}.activity-list .activity-item .activity-content:after{clear:both;content:"";display:table}.activity-list .activity-item .activity-header{margin:0 15px 0 0;width:auto}}.buddypress-wrap .activity-list .load-more,.buddypress-wrap .activity-list .load-newest{background:#fafafa;border:1px solid #eee;font-size:110%;margin:15px 0;padding:0;text-align:center}.buddypress-wrap .activity-list .load-more a,.buddypress-wrap .activity-list .load-newest a{color:#555;display:block;padding:.5em 0}.buddypress-wrap .activity-list .load-more a:focus,.buddypress-wrap .activity-list .load-more a:hover,.buddypress-wrap .activity-list .load-newest a:focus,.buddypress-wrap .activity-list .load-newest a:hover{background:#fff;color:#333}.buddypress-wrap .activity-list .load-more:focus,.buddypress-wrap .activity-list .load-more:hover,.buddypress-wrap .activity-list .load-newest:focus,.buddypress-wrap .activity-list .load-newest:hover{border-color:#e1e1e1;box-shadow:0 0 6px 0 #eaeaea}body.activity-permalink .activity-list li{border-width:1px;padding:1em 0 0 0}body.activity-permalink .activity-list li:first-child{padding-top:0}body.activity-permalink .activity-list li.has-comments{padding-bottom:0}body.activity-permalink .activity-list .activity-avatar{width:auto}body.activity-permalink .activity-list .activity-avatar a{display:block}body.activity-permalink .activity-list .activity-avatar img{max-width:100%;background-color:#eaeaea}body.activity-permalink .activity-list .activity-content{border:0;font-size:100%;line-height:1.5;padding:0}body.activity-permalink .activity-list .activity-content .activity-header{margin:0;padding:.5em 0 0 0;text-align:center;width:100%}body.activity-permalink .activity-list .activity-content .activity-inner,body.activity-permalink .activity-list .activity-content blockquote{margin-left:0;margin-top:10px}body.activity-permalink .activity-list .activity-meta{margin:10px 0 10px}body.activity-permalink .activity-list .activity-comments{margin-bottom:10px}@media screen and (min-width:46.8em){body.activity-permalink .activity-list .activity-avatar{left:-20px;margin-right:0;position:relative;top:-20px}body.activity-permalink .activity-list .activity-avatar img{box-shadow:0 0 0 8px #fff}body.activity-permalink .activity-list .activity-content{margin-right:10px}body.activity-permalink .activity-list .activity-content .activity-header p{text-align:left}}.bp-group-preview-cover,.bp-member-preview-cover{position:relative;min-height:150px;background:#c5c5c5}.bp-group-preview-cover img,.bp-member-preview-cover img{background:#c5c5c5;-o-object-fit:cover;object-fit:cover;border:0;display:block;margin:0;padding:0;width:100%;z-index:1;height:150px}.bp-group-short-description,.bp-member-short-description{position:relative;text-align:center}.bp-group-avatar-content,.bp-member-avatar-content{width:120px;position:relative;z-index:2;margin:auto}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{border:solid 2px #fff;background:rgba(255,255,255,.8);height:80px;width:80px}.bp-group-avatar-content.has-cover-image,.bp-member-avatar-content.has-cover-image{width:200px;margin-top:-75px}.bp-group-avatar-content.has-cover-image img.group-photo,.bp-group-avatar-content.has-cover-image img.profile-photo,.bp-member-avatar-content.has-cover-image img.group-photo,.bp-member-avatar-content.has-cover-image img.profile-photo{height:inherit;width:inherit}.bp-group-short-description-title a,.bp-member-short-description-title a{font-weight:600}@media screen and (max-width:46.8em){.bp-group-avatar-content,.bp-member-avatar-content{width:100%;margin-bottom:15px}.bp-group-avatar-content img.group-photo,.bp-group-avatar-content img.profile-photo,.bp-member-avatar-content img.group-photo,.bp-member-avatar-content img.profile-photo{margin:auto}.bp-profile-button{position:relative;margin-top:15px}}@media screen and (min-width:46.8em){.bp-profile-button{text-align:right}}.buddypress-wrap .activity-comments{clear:both;margin:0 5%;overflow:hidden;position:relative;width:auto}.buddypress-wrap .activity-comments ul{clear:both;list-style:none;margin:15px 0 0;padding:0}.buddypress-wrap .activity-comments ul li{border-top:1px solid #eee;border-bottom:0;padding:1em 0 0}.buddypress-wrap .activity-comments ul li ul{margin-left:5%}.buddypress-wrap .activity-comments ul li:first-child{border-top:0}.buddypress-wrap .activity-comments ul li:last-child{margin-bottom:0}.buddypress-wrap .activity-comments div.acomment-avatar{width:auto}.buddypress-wrap .activity-comments div.acomment-avatar img{border-width:1px;float:left;height:25px;max-width:none;width:25px}.buddypress-wrap .activity-comments .acomment-content p,.buddypress-wrap .activity-comments .acomment-meta{font-size:14px}.buddypress-wrap .activity-comments .acomment-meta{color:#555;overflow:hidden;padding-left:2%}.buddypress-wrap .activity-comments .acomment-content{border-left:1px solid #ccc;margin:15px 0 0 10%;padding:.5em 1em}.buddypress-wrap .activity-comments .acomment-content p{margin-bottom:.5em}.buddypress-wrap .activity-comments .acomment-options{float:left;margin:10px 0 10px 20px}.buddypress-wrap .activity-comments .acomment-options a{color:#767676;font-size:14px}.buddypress-wrap .activity-comments .acomment-options a:focus,.buddypress-wrap .activity-comments .acomment-options a:hover{color:inherit}.buddypress-wrap .activity-comments .activity-meta.action{background:0 0;margin-top:10px}.buddypress-wrap .activity-comments .activity-meta.action button{font-size:14px;font-weight:400;text-transform:none}.buddypress-wrap .activity-comments .show-all button{font-size:14px;text-decoration:underline;padding-left:.5em}.buddypress-wrap .activity-comments .show-all button span{text-decoration:none}.buddypress-wrap .activity-comments .show-all button:focus span,.buddypress-wrap .activity-comments .show-all button:hover span{color:#5087e5}.buddypress-wrap .mini .activity-comments{clear:both;margin-top:0}body.activity-permalink .activity-comments{background:0 0;width:auto}body.activity-permalink .activity-comments>ul{padding:0 .5em 0 1em}body.activity-permalink .activity-comments ul li>ul{margin-top:10px}form.ac-form{display:none;padding:1em}form.ac-form .ac-reply-avatar{float:left}form.ac-form .ac-reply-avatar img{border:1px solid #eee}form.ac-form .ac-reply-content{color:#767676;padding-left:1em}form.ac-form .ac-reply-content a{text-decoration:none}form.ac-form .ac-reply-content .ac-textarea{margin-bottom:15px;padding:0 .5em;overflow:hidden}form.ac-form .ac-reply-content .ac-textarea textarea{background:0 0;box-shadow:none;color:#555;font-family:inherit;font-size:100%;height:60px;margin:0;outline:0;padding:.5em;width:100%}form.ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:0 0 6px #d6d6d6}form.ac-form .ac-reply-content input{margin-top:10px}.activity-comments li form.ac-form{clear:both;margin-right:15px}.activity-comments form.root{margin-left:0}.buddypress-wrap .blogs-list li .item-avatar img.avatar-150{max-width:150px;max-height:150px}.buddypress-wrap .blogs-list li .item-avatar img.avatar-50{max-width:50px;max-height:50px}@media screen and (min-width:46.8em){.buddypress-wrap .blogs-list li .item-block{float:none;width:auto}.buddypress-wrap .blogs-list li .item-meta{clear:left;float:none}}@media screen and (min-width:46.8em){.buddypress-wrap .bp-dir-vert-nav .blogs-list .list-title{width:auto}}.buddypress-wrap .groups-list li .list-title{text-align:center}.buddypress-wrap .groups-list li .group-details{clear:left}.buddypress-wrap .groups-list li .group-desc{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;font-size:13px;color:#737373;font-style:italic;margin:10px auto 0;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .group-desc{font-size:16px}}.buddypress-wrap .groups-list li p{margin:0 0 .5em}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list li .item{margin-right:0}.buddypress-wrap .groups-list li .item-meta,.buddypress-wrap .groups-list li .list-title{text-align:left;width:auto}.buddypress-wrap .groups-list li .item-meta{margin-bottom:20px}.buddypress-wrap .groups-list li .last-activity{clear:left;margin-top:-20px}}.buddypress-wrap .groups-list li.group-no-avatar div.group-desc{margin-left:0}.buddypress-wrap .mygroups .groups-list.grid .wrap{min-height:450px;padding-bottom:0}@media screen and (min-width:46.8em){.buddypress-wrap .groups-list.grid.four .group-desc,.buddypress-wrap .groups-list.grid.three .group-desc{font-size:14px}}@media screen and (min-width:46.8em){.buddypress .bp-vertical-navs .groups-list .item-avatar{margin-right:3%;width:15%}}.buddypress-wrap .members-list li .member-name{margin-bottom:10px}.buddypress-wrap .members-list li .item-extra-content{clear:both;font-size:14px}.buddypress-wrap .members-list li .user-update{border:1px solid #eaeaea;border-radius:10px;background-clip:padding-box;color:#737373;font-style:italic;font-size:13px;margin:15px auto;padding:1em}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .user-update{font-size:16px}}.buddypress-wrap .members-list li .user-update .activity-read-more{display:block;font-size:12px;font-style:normal;margin-top:10px;padding-left:2px}@media screen and (min-width:46.8em){.buddypress-wrap .members-list li .last-activity{clear:left;margin-top:-10px}}@media screen and (min-width:46.8em){.buddypress-wrap .members-group-list li .joined{clear:left;float:none}}@media screen and (min-width:32em){body:not(.logged-in) .members-list .user-update{width:96%}}.register-page .register-section{box-sizing:border-box}.register-page .signup-form{margin-top:20px}.register-page .signup-form .default-profile input{margin-bottom:20px}.register-page .signup-form label,.register-page .signup-form legend{margin:10px 0 0}.register-page .signup-form .editfield{margin:15px 0}.register-page .signup-form .editfield fieldset{border:0;padding:0}.register-page .signup-form .editfield fieldset legend{margin:0 0 5px;text-indent:0}.register-page .signup-form .editfield .field-visibility-settings{padding:.5em}.register-page .signup-form .editfield .field-visibility-settings fieldset{margin:0 0 10px}.register-page .signup-form #signup-avatar img{margin:0 15px 10px 0}.register-page .signup-form .wp-pwd button{vertical-align:middle}.register-page .signup-form #pass-strength-result,.register-page .signup-form #pass1,.register-page .signup-form #pass1-text{width:10em}.register-page .signup-form #pass1{display:inline-block;margin-bottom:inherit}.register-page .signup-form #pass1-text,.register-page .signup-form .pw-weak{display:none}.register-page .signup-form .show-password #pass1-text{display:inline-block;margin-bottom:inherit}.register-page .signup-form .show-password #pass1{display:none}.register-page .signup-form .description.indicator-hint{font-size:14px}.register-page .signup-form #submit:disabled{color:#767676;opacity:.4}.register-page .signup-form .password-entry,.register-page .signup-form .password-entry-confirm{border:1px solid #eee}body.buddypress.register.js .user-pass2-wrap{display:none}body.buddypress.register.no-js .wp-hide-pw{display:none}@media screen and (min-width:46.8em){.buddypress-wrap .register-page .layout-wrap{display:flex;flex-flow:row wrap;justify-content:space-around}.buddypress-wrap .register-page .layout-wrap .default-profile{flex:1;padding-right:2em}.buddypress-wrap .register-page .layout-wrap .blog-details{flex:1;padding-left:2em}.buddypress-wrap .register-page .submit{clear:both}}@media screen and (min-width:46.8em){.buddypress-wrap.extended-default-reg .register-page .default-profile{min-width:14em;flex:1;padding-right:1em}.buddypress-wrap.extended-default-reg .register-page .extended-profile{flex:2;padding-left:1em}.buddypress-wrap.extended-default-reg .register-page .blog-details{flex:1 100%}}#group-create-body{padding:.5em}#group-create-body .creation-step-name{text-align:center}#group-create-body img.avatar{width:auto;height:auto}#group-create-body .avatar-nav-items{margin-top:15px}.single-headers:after,.single-headers:before{content:" ";display:table}.single-headers:after{clear:both}.single-headers{margin-bottom:15px}.single-headers #item-header-avatar a{display:block;text-align:center}.single-headers #item-header-avatar a img{float:none;width:auto;height:auto}.single-headers div#item-header-content{float:none}@media screen and (min-width:46.8em){.single-headers #item-header-avatar a{text-align:left}.single-headers #item-header-avatar a img{float:left}.single-headers #item-header-content{padding-left:2em}}.single-headers .activity,.single-headers .group-status{display:inline}.single-headers .group-status{font-size:18px;color:#333;padding-right:1em}.single-headers .activity{display:inline-block;font-size:12px;padding:0}.single-headers #sitewide-notice p,.single-headers div#message p{background-color:#ffd;border:1px solid #cb2;color:#440;font-weight:400;margin-top:3px;text-decoration:none}.single-headers h2{line-height:1.2;margin:0 0 5px}.single-headers h2 a{color:#767676;text-decoration:none}.single-headers h2 span.highlight{display:inline-block;font-size:60%;font-weight:400;line-height:1.7;vertical-align:middle}.single-headers h2 span.highlight span{background:#a1dcfa;color:#fff;cursor:pointer;font-size:80%;font-weight:700;margin-bottom:2px;padding:1px 4px;position:relative;right:-2px;top:-2px;vertical-align:middle}.single-headers img.avatar{float:left;margin:0 15px 19px 0}.single-headers .item-meta{color:#767676;font-size:14px;margin:15px 0 5px;padding-bottom:.5em}.single-headers ul{margin-bottom:15px}.single-headers ul li{float:right;list-style:none}.single-headers div.generic-button{text-align:center}.single-headers li.generic-button{display:inline-block;text-align:center}@media screen and (min-width:46.8em){.single-headers a.button,.single-headers div.generic-button,.single-headers li.generic-button{float:left}}.single-headers a.button,.single-headers div.generic-button{margin:10px 10px 0 0}.single-headers li.generic-button{margin:2px 10px}.single-headers li.generic-button:first-child{margin-left:0}.single-headers div#message.info{line-height:.8}body.no-js .single-item-header .js-self-profile-button{display:none}#cover-image-container{position:relative}#header-cover-image{background-color:#c5c5c5;background-position:center top;background-repeat:no-repeat;background-size:cover;border:0;display:block;left:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}#item-header-cover-image{position:relative;z-index:2}#item-header-cover-image #item-header-avatar{padding:0 1em}.groups-header .bp-group-type-list{font-size:18px;margin:0;color:#333;display:flex}.groups-header .bp-group-type-list strong{padding-right:1em;white-space:nowrap}.groups-header .bp-feedback{clear:both}.groups-header .group-item-actions{float:left;margin:0 0 15px 15px;padding-top:0;width:100%}.groups-header .moderators-lists{margin-top:0}.groups-header .moderators-lists .moderators-title{font-size:14px}.groups-header .moderators-lists .user-list{margin:0 0 5px}.groups-header .moderators-lists .user-list ul:after{clear:both;content:"";display:table}.groups-header .moderators-lists .user-list li{display:inline-block;float:none;margin-left:4px;padding:4px}.groups-header .moderators-lists img.avatar{box-shadow:none;float:none;height:30px;margin:0;max-width:100%;width:30px}@media screen and (min-width:46.8em){.groups-header div#item-header-content{float:left;margin-left:10%;text-align:left;padding-top:15px;width:42%}.groups-header .group-item-actions{float:right;margin:0 0 15px 15px;text-align:right;width:20%}.groups-header .groups-meta{clear:both}}.groups-header .desc-wrap{background:#eaeaea;border:1px solid #d6d6d6;margin:0 0 15px;padding:1em;text-align:center}.groups-header .desc-wrap .group-description{background:#fafafa;box-shadow:inset 0 0 9px #ccc;padding:1em;text-align:left}.groups-header .desc-wrap .group-description p{margin:0;padding:0}body.buddypress.bp-user .buddypress-wrap .users-header h2.user-nicename{margin-top:0;margin-bottom:5px}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list{padding-bottom:.5em;font-size:18px;margin:0;color:#333;display:flex}body.buddypress.bp-user .buddypress-wrap .users-header .bp-member-type-list strong{padding-right:1em;white-space:nowrap}body.buddypress.bp-user .buddypress-wrap .member-header-actions{overflow:hidden;padding-left:0}body.buddypress.bp-user .buddypress-wrap .member-header-actions *>*{display:block}.buddypress-wrap .item-body{margin:20px 0}.buddypress-wrap .item-body .screen-heading{font-size:20px;font-weight:400}.buddypress-wrap .item-body .button-tabs{margin:30px 0 15px;list-style:none}.buddypress-wrap.bp-single-vert-nav .bp-list:not(.grid) .item-entry{padding-left:.5em}.single-item.group-members .item-body .filters:not(.no-subnav){border-top:5px solid #eaeaea;padding-top:1em}.single-item.group-members .item-body .filters{margin-top:0}.buddypress-wrap .group-status-type ul{margin:0 0 20px 20px}.groups-manage-members-list{padding:.5em 0}.groups-manage-members-list dd{margin:0;padding:1em 0}.groups-manage-members-list .section-title{background:#eaeaea;padding-left:.3em}.groups-manage-members-list ul{list-style:none;margin-bottom:0}.groups-manage-members-list ul li{border-bottom:1px solid #eee;margin-bottom:10px;padding:.5em .3em .3em}.groups-manage-members-list ul li:last-child,.groups-manage-members-list ul li:only-child{border-bottom:0}.groups-manage-members-list ul li:nth-child(even){background:#fafafa}.groups-manage-members-list ul li.banned-user{background:#fad3d3}.groups-manage-members-list ul .member-name{margin-bottom:0;text-align:center}.groups-manage-members-list ul img{display:block;margin:0 auto;width:20%}@media screen and (min-width:32em){.groups-manage-members-list ul .member-name{text-align:left}.groups-manage-members-list ul img{display:inline;width:50px}}.groups-manage-members-list ul .members-manage-buttons:after,.groups-manage-members-list ul .members-manage-buttons:before{content:" ";display:table}.groups-manage-members-list ul .members-manage-buttons:after{clear:both}.groups-manage-members-list ul .members-manage-buttons{margin:15px 0 5px}.groups-manage-members-list ul .members-manage-buttons a.button{color:#767676;display:block;font-size:13px}@media screen and (min-width:32em){.groups-manage-members-list ul .members-manage-buttons a.button{display:inline-block}}.groups-manage-members-list ul .members-manage-buttons.text-links-list{margin-bottom:0}@media screen and (max-width:32em){.groups-manage-members-list ul .members-manage-buttons.text-links-list a.button{background:#fafafa;border:1px solid #eee;display:block;margin-bottom:10px}}.groups-manage-members-list ul .action:not(.text-links-list) a.button{font-size:12px}@media screen and (min-width:46.8em){.groups-manage-members-list ul li .avatar,.groups-manage-members-list ul li .member-name{float:left}.groups-manage-members-list ul li .avatar{margin-right:15px}.groups-manage-members-list ul li .action{clear:both;float:left}}#group-manage-members-ui #group-members-search-form button[type=submit]{float:right;font-size:inherit;font-weight:400;line-height:1.5;text-align:center;text-transform:none}#group-manage-members-ui #group-members-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}#group-manage-members-ui #group-members-pagination button:last-child{margin-right:2em}#group-manage-members-ui #bp-no-group-members td{border:none}.buddypress .bp-invites-content ul.item-list{border-top:0}.buddypress .bp-invites-content ul.item-list li{border:1px solid #eaeaea;margin:0 0 1%;padding-left:5px;padding-right:5px;position:relative;width:auto}.buddypress .bp-invites-content ul.item-list li .list-title{margin:0 auto;width:80%}.buddypress .bp-invites-content ul.item-list li .action{position:absolute;top:10px;right:10px}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button{border:0}.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:focus,.buddypress .bp-invites-content ul.item-list li .action a.button.invite-button:hover{color:#1fb3dd}.buddypress .bp-invites-content ul.item-list li.selected{box-shadow:inset 0 0 12px 0 rgba(237,187,52,.2)}.buddypress .bp-invites-content .group-inviters li,.buddypress .bp-invites-content .item-list .item-meta span{color:#767676}.buddypress .bp-invites-content li ul.group-inviters{clear:both;margin:0}.buddypress .bp-invites-content li ul.group-inviters li{border:0;float:left;font-size:20px;width:inherit}.buddypress .bp-invites-content li .status{font-size:20px;font-style:italic;clear:both;color:#555;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul:after,.buddypress .bp-invites-content #send-invites-editor ul:before{content:" ";display:table}.buddypress .bp-invites-content #send-invites-editor ul:after{clear:both}.buddypress .bp-invites-content #send-invites-editor textarea{width:100%}.buddypress .bp-invites-content #send-invites-editor ul{clear:both;list-style:none;margin:10px 0}.buddypress .bp-invites-content #send-invites-editor ul li{float:left;margin:.5%;max-height:50px;max-width:50px}.buddypress .bp-invites-content #send-invites-editor #bp-send-invites-form{clear:both;margin-top:10px}.buddypress .bp-invites-content #send-invites-editor .action{margin-top:10px;padding-top:10px}.buddypress .bp-invites-content #send-invites-editor.bp-hide{display:none}@media screen and (min-width:46.8em){.buddypress .bp-invites-content ul.item-list>li{box-sizing:border-box;border:1px solid #eaeaea;float:left;padding-left:.5em;padding-right:.5em;width:49.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(odd){margin-right:.5%}.buddypress .bp-invites-content ul.item-list>li:nth-child(even){margin-left:.5%}.buddypress .bp-invites-content ul.item-list ul.group-inviters{float:left;width:auto}}@media screen and (min-width:46.8em){:not(.vertical)+.item-body #group-invites-container{display:grid;grid-template-columns:25% auto;grid-template-areas:"group-invites-nav group-invites-column"}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav{-ms-grid-row:1;-ms-grid-column:1;grid-area:group-invites-nav}:not(.vertical)+.item-body #group-invites-container .bp-invites-nav li{display:block;float:none}:not(.vertical)+.item-body #group-invites-container .group-invites-column{-ms-grid-row:1;-ms-grid-column:2;grid-area:group-invites-column}}.buddypress.groups .activity-update-form{margin-top:0}.buddypress-wrap .profile{margin-top:30px}.buddypress-wrap .public .profile-fields td.label{width:30%}.buddypress-wrap .profile.edit ul.button-nav{list-style:none;margin:30px 0 10px;padding-left:0}.buddypress-wrap .profile.edit ul.button-nav li{display:inline-block;margin-right:10px}.buddypress-wrap .profile.edit ul.button-nav li a{padding:.5em}.buddypress-wrap .profile.edit .editfield{background:#fafafa;border:1px solid #eee;margin:15px 0;padding:1em}.buddypress-wrap .profile.edit .editfield fieldset{border:0}.buddypress-wrap .profile.edit .editfield fieldset label{font-weight:400}.buddypress-wrap .profile.edit .editfield fieldset label.xprofile-field-label{display:inline}.buddypress-wrap .profile.edit .editfield{display:flex;flex-direction:column}.buddypress-wrap .profile.edit .editfield .description{margin-top:10px;order:2}.buddypress-wrap .profile.edit .editfield>fieldset{order:1}.buddypress-wrap .profile.edit .editfield .field-visibility-settings,.buddypress-wrap .profile.edit .editfield .field-visibility-settings-toggle{order:3}body.no-js .buddypress-wrap .field-visibility-settings-close,body.no-js .buddypress-wrap .field-visibility-settings-toggle{display:none}body.no-js .buddypress-wrap .field-visibility-settings{display:block}.buddypress-wrap .field-visibility-settings{margin:10px 0}.buddypress-wrap .current-visibility-level{font-style:normal;font-weight:700}.buddypress-wrap .field-visibility-settings,.buddypress-wrap .field-visibility-settings-header{color:#737373}.buddypress-wrap .field-visibility-settings fieldset{margin:5px 0}.buddypress-wrap .standard-form .editfield fieldset{margin:0}.buddypress-wrap .standard-form .field-visibility-settings label{font-weight:400;margin:0}.buddypress-wrap .standard-form .field-visibility-settings .radio{list-style:none;margin-bottom:0}.buddypress-wrap .standard-form .field-visibility-settings .field-visibility-settings-close{font-size:12px}.buddypress-wrap .standard-form .wp-editor-container{border:1px solid #dedede}.buddypress-wrap .standard-form .wp-editor-container textarea{background:#fff;width:100%}.buddypress-wrap .standard-form .description{background:#fafafa;font-size:inherit}.buddypress-wrap .standard-form .field-visibility-settings legend,.buddypress-wrap .standard-form .field-visibility-settings-header{font-style:italic}.buddypress-wrap .standard-form .field-visibility-settings-header{font-size:14px}.buddypress-wrap .standard-form .field-visibility-settings label,.buddypress-wrap .standard-form .field-visibility-settings legend{font-size:14px}.buddypress-wrap .standard-form .field-visibility select{margin:0}.buddypress-wrap .html-active button.switch-html{background:#f5f5f5;border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.buddypress-wrap .tmce-active button.switch-tmce{background:#f5f5f5;border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.buddypress-wrap .profile.public .profile-group-title{border-bottom:1px solid #ccc}body.register .buddypress-wrap .page ul{list-style:none}.buddypress-wrap .profile .bp-avatar-nav{margin-top:20px}.message-action-delete:before,.message-action-exit:before,.message-action-star:before,.message-action-unstar:before,.message-action-view:before{font-family:dashicons;font-size:18px}.message-action-star:before{color:#aaa;content:"\f154"}.message-action-unstar:before{color:#fcdd77;content:"\f155"}.message-action-view:before{content:"\f473"}.message-action-delete:before{content:"\f153"}.message-action-exit:before{content:"\f14a"}.message-action-delete:hover:before{color:#a00}.preview-content .actions a{text-decoration:none}.bp-messages-content{margin:15px 0}.bp-messages-content .avatar{box-shadow:none}.bp-messages-content .thread-participants{list-style:none}.bp-messages-content .thread-participants dd{margin-left:0}.bp-messages-content time{color:#737373;font-size:12px}#message-threads{border-top:1px solid #eaeaea;clear:both;list-style:none;margin:0;max-height:220px;overflow-x:hidden;overflow-y:auto;padding:0;width:100%}#message-threads li{border-bottom:1px solid #eaeaea;display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;margin:0;overflow:hidden;padding:.5em 0}#message-threads li .thread-cb{display:flex;align-items:center;-moz-flex:1 2 5%;-o-flex:1 2 5%;flex:1 2 5%}#message-threads li .thread-from,#message-threads li .thread-to{-moz-flex:1 2 20%;-o-flex:1 2 20%;flex:1 2 20%}#message-threads li .thread-from img.avatar,#message-threads li .thread-to img.avatar{float:left;margin:0 10px 0 0}#message-threads li .thread-from .user-name,#message-threads li .thread-to .user-name{display:inline-block;line-height:1.1}#message-threads li .thread-from .num-recipients,#message-threads li .thread-to .num-recipients{color:#737373;font-weight:400;font-size:12px;margin:0}#message-threads li .thread-content{-moz-flex:1 2 60%;-o-flex:1 2 60%;flex:1 2 60%}#message-threads li .thread-date{-moz-flex:1 2 15%;-o-flex:1 2 15%;flex:1 2 15%}#message-threads li.selected{background-color:#fafafa}#message-threads li.selected .thread-subject .subject{color:#5087e5}#message-threads li.unread{font-weight:700}#message-threads li .thread-content .excerpt{color:#737373;font-size:12px;margin:0}#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:13px}@media screen and (min-width:46.8em){#message-threads li .thread-content .thread-from,#message-threads li .thread-content .thread-subject,#message-threads li .thread-content .thread-to{font-size:16px}}#message-threads li .thread-content .thread-subject{vertical-align:top}#message-threads li .thread-content .thread-subject .excerpt{font-weight:400}#message-threads li .thread-date{padding-right:5px;text-align:right}.bp-messages-content .actions{float:right;max-width:30%;line-height:1}.bp-messages-content .actions .bp-icons:not(.bp-hide){display:inline-block;margin:0;padding:.3em .5em}.bp-messages-content .actions .bp-icons:not(.bp-hide):before{font-size:26px}.bp-messages-content #thread-preview{border:1px solid #eaeaea;margin-top:20px}.bp-messages-content #thread-preview .preview-message{overflow:hidden}.bp-messages-content #thread-preview .preview-content{margin:.5em}.bp-messages-content #thread-preview .preview-content .preview-message{background:#fafafa;margin:10px 0;padding:1em .3em .3em}.bp-messages-content #bp-message-thread-list{border-top:1px solid #eaeaea;clear:both;list-style:none;padding:1em 0 .3em}.bp-messages-content #bp-message-thread-list li{padding:.5em}.bp-messages-content #bp-message-thread-list li:nth-child(2n) .message-content{background:#fafafa}.bp-messages-content #bp-message-thread-list .message-metadata{border-bottom:1px solid #ccc;box-shadow:-2px 1px 9px 0 #eee;display:table;padding:.2em;width:100%}.bp-messages-content #bp-message-thread-list .message-metadata .avatar{width:30px}.bp-messages-content #bp-message-thread-list .message-metadata .user-link{display:block;font-size:13px;float:left}@media screen and (min-width:46.8em){.bp-messages-content #bp-message-thread-list .message-metadata .user-link{font-size:16px}}.bp-messages-content #bp-message-thread-list .message-metadata time{color:#737373;font-size:12px;padding:0 .5em}.bp-messages-content #bp-message-thread-list .message-metadata button{padding:0 .3em}.bp-messages-content #bp-message-thread-list .message-metadata button:before{font-size:20px}.bp-messages-content #bp-message-thread-list .message-content{overflow:hidden;margin:1em auto 0;width:90%}.bp-messages-content #bp-message-thread-list img.avatar{float:left;margin:0 10px 0 0}.bp-messages-content #bp-message-thread-list .actions a:before{font-size:18px}.bp-messages-content form.send-reply .avatar-box{padding:.5em 0}.bp-messages-content .preview-pane-header,.bp-messages-content .single-message-thread-header{border-bottom:1px solid #eaeaea}.bp-messages-content .preview-pane-header:after,.bp-messages-content .single-message-thread-header:after{clear:both;content:"";display:table}.bp-messages-content .preview-thread-title,.bp-messages-content .single-thread-title{font-size:16px}.bp-messages-content .preview-thread-title .messages-title,.bp-messages-content .single-thread-title .messages-title{padding-left:2em}.bp-messages-content .thread-participants{float:left;margin:5px 0;width:70%}.bp-messages-content .thread-participants dd,.bp-messages-content .thread-participants ul{margin-bottom:10px}.bp-messages-content .thread-participants ul{list-style:none}.bp-messages-content .thread-participants ul:after{clear:both;content:"";display:table}.bp-messages-content .thread-participants li{float:left;margin-left:5px}.bp-messages-content .thread-participants img{width:30px;height:30px}.bp-messages-content #bp-message-thread-list li .message-content blockquote,.bp-messages-content #bp-message-thread-list li .message-content ol,.bp-messages-content #bp-message-thread-list li .message-content ul,.bp-messages-content #thread-preview .preview-message blockquote,.bp-messages-content #thread-preview .preview-message ol,.bp-messages-content #thread-preview .preview-message ul{list-style-position:inside;margin-left:0}.bp-messages-content #thread-preview:empty,.bp-messages-content ul#message-threads:empty{display:none}.bp-messages-content #bp-message-thread-header h2:first-child,.bp-messages-content #thread-preview h2:first-child{background-color:#eaeaea;color:#555;font-weight:700;margin:0;padding:.5em}.bp-messages-content #bp-message-thread-list li a.user-link,.bp-messages-content #message-threads .thread-content a{border:0;text-decoration:none}.bp-messages-content .standard-form #subject{margin-bottom:20px}div.bp-navs#subsubnav.bp-messages-filters .user-messages-bulk-actions{margin-right:15px;max-width:42.5%}.buddypress.settings .profile-settings.bp-tables-user select{width:100%}body.buddypress.settings .wp-pwd button{vertical-align:middle}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1,body.buddypress.settings #pass1-text{width:16em}body.buddypress.settings #pass1{display:inline-block;margin-bottom:inherit}body.buddypress.settings #pass-strength-result,body.buddypress.settings #pass1-text,body.buddypress.settings .pw-weak{display:none}body.buddypress.settings .show-password #pass1-text{display:inline-block;margin-bottom:inherit}body.buddypress.settings .show-password #pass1{display:none}body.buddypress.settings #your-profile #submit:disabled{color:#767676;opacity:.4}body.buddypress.settings.js .user-pass2-wrap,body.buddypress.settings.js .wp-pwd{display:none}body.buddypress.settings.no-js .wp-cancel-pw,body.buddypress.settings.no-js .wp-generate-pw,body.buddypress.settings.no-js .wp-hide-pw{display:none}body.buddypress.settings.data #buddypress.buddypress-wrap .item-body p a{text-decoration:underline}.buddypress-wrap #whats-new-post-in-box select,.buddypress-wrap .filter select{border:1px solid #d6d6d6}.buddypress-wrap input.action[disabled]{cursor:pointer;opacity:.4}.buddypress-wrap #invitation-bulk-manage[disabled],.buddypress-wrap #notification-bulk-manage[disabled]{display:none}.buddypress-wrap fieldset legend{font-size:inherit;font-weight:600}.buddypress-wrap input[type=email]:focus,.buddypress-wrap input[type=password]:focus,.buddypress-wrap input[type=tel]:focus,.buddypress-wrap input[type=text]:focus,.buddypress-wrap input[type=url]:focus,.buddypress-wrap textarea:focus{box-shadow:0 0 8px #eaeaea}.buddypress-wrap select{height:auto}.buddypress-wrap textarea{resize:vertical}.buddypress-wrap .standard-form .bp-controls-wrap{margin:1em 0}.buddypress-wrap .standard-form .groups-members-search input[type=search],.buddypress-wrap .standard-form .groups-members-search input[type=text],.buddypress-wrap .standard-form [data-bp-search] input[type=search],.buddypress-wrap .standard-form [data-bp-search] input[type=text],.buddypress-wrap .standard-form input[type=color],.buddypress-wrap .standard-form input[type=date],.buddypress-wrap .standard-form input[type=datetime-local],.buddypress-wrap .standard-form input[type=datetime],.buddypress-wrap .standard-form input[type=email],.buddypress-wrap .standard-form input[type=month],.buddypress-wrap .standard-form input[type=number],.buddypress-wrap .standard-form input[type=password],.buddypress-wrap .standard-form input[type=range],.buddypress-wrap .standard-form input[type=search],.buddypress-wrap .standard-form input[type=tel],.buddypress-wrap .standard-form input[type=text],.buddypress-wrap .standard-form input[type=time],.buddypress-wrap .standard-form input[type=url],.buddypress-wrap .standard-form input[type=week],.buddypress-wrap .standard-form select,.buddypress-wrap .standard-form textarea{background-color:#fafafa;border:1px solid #d6d6d6;border-radius:0;font:inherit;font-size:100%;padding:.5em}.buddypress-wrap .standard-form input[required],.buddypress-wrap .standard-form select[required],.buddypress-wrap .standard-form textarea[required]{box-shadow:none;border-width:2px;outline:0}.buddypress-wrap .standard-form input[required]:invalid,.buddypress-wrap .standard-form select[required]:invalid,.buddypress-wrap .standard-form textarea[required]:invalid{border-color:#b71717}.buddypress-wrap .standard-form input[required]:valid,.buddypress-wrap .standard-form select[required]:valid,.buddypress-wrap .standard-form textarea[required]:valid{border-color:#91cc2c}.buddypress-wrap .standard-form input[required]:focus,.buddypress-wrap .standard-form select[required]:focus,.buddypress-wrap .standard-form textarea[required]:focus{border-color:#d6d6d6;border-width:1px}.buddypress-wrap .standard-form input.invalid[required],.buddypress-wrap .standard-form select.invalid[required],.buddypress-wrap .standard-form textarea.invalid[required]{border-color:#b71717}.buddypress-wrap .standard-form input:not(.small),.buddypress-wrap .standard-form textarea{width:100%}.buddypress-wrap .standard-form input[type=checkbox],.buddypress-wrap .standard-form input[type=radio]{margin-right:5px;width:auto}.buddypress-wrap .standard-form select{padding:3px}.buddypress-wrap .standard-form textarea{height:120px}.buddypress-wrap .standard-form textarea#message_content{height:200px}.buddypress-wrap .standard-form input[type=password]{margin-bottom:5px}.buddypress-wrap .standard-form input:focus,.buddypress-wrap .standard-form select:focus,.buddypress-wrap .standard-form textarea:focus{background-color:#fafafa;color:#555;outline:0}.buddypress-wrap .standard-form label,.buddypress-wrap .standard-form span.label{display:block;font-weight:600;margin:15px 0 5px;width:auto}.buddypress-wrap .standard-form a.clear-value{display:block;margin-top:5px;outline:0}.buddypress-wrap .standard-form .submit{clear:both;padding:15px 0 0}.buddypress-wrap .standard-form p.submit{margin-bottom:0}.buddypress-wrap .standard-form div.submit input{margin-right:15px}.buddypress-wrap .standard-form #invite-list label,.buddypress-wrap .standard-form p label{font-weight:400;margin:auto}.buddypress-wrap .standard-form p.description{color:#737373;margin:5px 0}.buddypress-wrap .standard-form div.checkbox label:nth-child(n+2),.buddypress-wrap .standard-form div.radio div label{color:#737373;font-size:100%;font-weight:400;margin:5px 0 0}.buddypress-wrap .standard-form#send-reply textarea{width:97.5%}.buddypress-wrap .standard-form#sidebar-login-form label{margin-top:5px}.buddypress-wrap .standard-form#sidebar-login-form input[type=password],.buddypress-wrap .standard-form#sidebar-login-form input[type=text]{padding:4px;width:95%}.buddypress-wrap .standard-form.profile-edit input:focus{background:#fff}@media screen and (min-width:46.8em){.buddypress-wrap .standard-form .left-menu{float:left}.buddypress-wrap .standard-form #invite-list ul{list-style:none;margin:1%}.buddypress-wrap .standard-form #invite-list ul li{margin:0 0 0 1%}.buddypress-wrap .standard-form .main-column{margin-left:190px}.buddypress-wrap .standard-form .main-column ul#friend-list{clear:none;float:left}.buddypress-wrap .standard-form .main-column ul#friend-list h4{clear:none}}.buddypress-wrap .standard-form .bp-tables-user label{margin:0}.buddypress-wrap .signup-form label,.buddypress-wrap .signup-form legend{font-weight:400}body.no-js .buddypress #delete_inbox_messages,body.no-js .buddypress #delete_sentbox_messages,body.no-js .buddypress #message-type-select,body.no-js .buddypress #messages-bulk-management #select-all-messages,body.no-js .buddypress #notifications-bulk-management #select-all-notifications,body.no-js .buddypress label[for=message-type-select]{display:none}.buddypress-wrap .wp-editor-wrap .wp-editor-wrap button,.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=button],.buddypress-wrap .wp-editor-wrap .wp-editor-wrap input[type=submit],.buddypress-wrap .wp-editor-wrap a.button,.buddypress-wrap .wp-editor-wrap input[type=reset]{padding:0 8px 1px}.buddypress-wrap .select-wrap{border:1px solid #eee}.buddypress-wrap .select-wrap label{display:inline}.buddypress-wrap .select-wrap select::-ms-expand{display:none}.buddypress-wrap .select-wrap select{-webkit-appearance:none;-o-appearance:none;appearance:none;border:0;cursor:pointer;margin-right:-25px;padding:6px 25px 6px 10px;position:relative;text-indent:-2px;z-index:1;width:auto}.buddypress-wrap .select-wrap select,.buddypress-wrap .select-wrap select:active,.buddypress-wrap .select-wrap select:focus{background:0 0}.buddypress-wrap .select-wrap span.select-arrow{display:inline-block;position:relative;z-index:0}.buddypress-wrap .select-wrap span.select-arrow:before{color:#ccc;content:"\25BC"}.buddypress-wrap .select-wrap:focus .select-arrow:before,.buddypress-wrap .select-wrap:hover .select-arrow:before{color:#a6a6a6}.buddypress-wrap .bp-search form:focus,.buddypress-wrap .bp-search form:hover,.buddypress-wrap .select-wrap:focus,.buddypress-wrap .select-wrap:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}@media screen and (min-width:32em){.buddypress-wrap .invitations-options-nav .select-wrap,.buddypress-wrap .notifications-options-nav .select-wrap{float:left}}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after,.buddypress-wrap .bp-messages-search-form:before{content:" ";display:table}.buddypress-wrap .bp-dir-search-form,.buddypress-wrap .bp-messages-search-form:after{clear:both}.buddypress-wrap form#group-members-search,.buddypress-wrap form.bp-dir-search-form,.buddypress-wrap form.bp-messages-search-form,.buddypress-wrap form[data-bp-search].bp-invites-search-form{border:1px solid #eee;width:100%}.buddypress-wrap form#group-members-search label,.buddypress-wrap form.bp-dir-search-form label,.buddypress-wrap form.bp-messages-search-form label,.buddypress-wrap form[data-bp-search].bp-invites-search-form label{margin:0}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{background:0 0;border:0;border-radius:0;background-clip:padding-box}.buddypress-wrap form#group-members-search input[type=search],.buddypress-wrap form#group-members-search input[type=text],.buddypress-wrap form.bp-dir-search-form input[type=search],.buddypress-wrap form.bp-dir-search-form input[type=text],.buddypress-wrap form.bp-messages-search-form input[type=search],.buddypress-wrap form.bp-messages-search-form input[type=text],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search],.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=text]{float:left;line-height:2;padding:3px 10px;width:78%}.buddypress-wrap form#group-members-search button[type=submit],.buddypress-wrap form.bp-dir-search-form button[type=submit],.buddypress-wrap form.bp-messages-search-form button[type=submit],.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit]{float:right;font-size:inherit;font-weight:400;line-height:1.5;padding:3px .7em;text-align:center;text-transform:none;width:20%}.buddypress-wrap form#group-members-search button[type=submit] span,.buddypress-wrap form.bp-dir-search-form button[type=submit] span,.buddypress-wrap form.bp-messages-search-form button[type=submit] span,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit] span{font-family:dashicons;font-size:18px;line-height:1.6}.buddypress-wrap form#group-members-search button[type=submit].bp-show,.buddypress-wrap form.bp-dir-search-form button[type=submit].bp-show,.buddypress-wrap form.bp-messages-search-form button[type=submit].bp-show,.buddypress-wrap form[data-bp-search].bp-invites-search-form button[type=submit].bp-show{height:auto;left:0;overflow:visible;position:static;top:0}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-cancel-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-button,.buddypress-wrap form#group-members-search input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-dir-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form.bp-messages-search-form input[type=search]::-webkit-search-results-decoration,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-button,.buddypress-wrap form[data-bp-search].bp-invites-search-form input[type=search]::-webkit-search-results-decoration{display:none}.buddypress-wrap form#group-members-search:hover{border:1px solid #d5d4d4;box-shadow:inset 0 0 3px #eee}.buddypress-wrap ul.filters li form label input{line-height:1.4;padding:.1em .7em}.buddypress-wrap .current-group-type,.buddypress-wrap .current-member-type{font-style:italic}.buddypress-wrap .dir-form{clear:both}.budypress.no-js form.bp-dir-search-form button[type=submit]{height:auto;left:0;overflow:visible;position:static;top:0}.bp-user [data-bp-search] form input[type=search],.bp-user [data-bp-search] form input[type=text]{padding:6px 10px 7px}.buddypress-wrap .bp-tables-user,.buddypress-wrap table.forum,.buddypress-wrap table.wp-profile-fields{width:100%}.buddypress-wrap .bp-tables-user thead tr,.buddypress-wrap table.forum thead tr,.buddypress-wrap table.wp-profile-fields thead tr{background:0 0;border-bottom:2px solid #ccc}.buddypress-wrap .bp-tables-user tbody tr,.buddypress-wrap table.forum tbody tr,.buddypress-wrap table.wp-profile-fields tbody tr{background:#fafafa}.buddypress-wrap .bp-tables-user tr td,.buddypress-wrap .bp-tables-user tr th,.buddypress-wrap table.forum tr td,.buddypress-wrap table.forum tr th,.buddypress-wrap table.wp-profile-fields tr td,.buddypress-wrap table.wp-profile-fields tr th{padding:.5em;vertical-align:middle}.buddypress-wrap .bp-tables-user tr td.label,.buddypress-wrap table.forum tr td.label,.buddypress-wrap table.wp-profile-fields tr td.label{border-right:1px solid #eaeaea;font-weight:600;width:25%}.buddypress-wrap .bp-tables-user tr.alt td,.buddypress-wrap table.wp-profile-fields tr.alt td{background:#fafafa}.buddypress-wrap table.profile-fields .data{padding:.5em 1em}.buddypress-wrap table.profile-fields tr:last-child{border-bottom:none}.buddypress-wrap table.notifications td{padding:1em .5em}.buddypress-wrap table.notifications .bulk-select-all,.buddypress-wrap table.notifications .bulk-select-check{width:7%}.buddypress-wrap table.notifications .bulk-select-check{vertical-align:middle}.buddypress-wrap table.notifications .date,.buddypress-wrap table.notifications .notification-description,.buddypress-wrap table.notifications .notification-since,.buddypress-wrap table.notifications .title{width:39%}.buddypress-wrap table.notifications .actions,.buddypress-wrap table.notifications .notification-actions{width:15%}.buddypress-wrap table.notification-settings th.title,.buddypress-wrap table.profile-settings th.title{width:80%}.buddypress-wrap table.notifications .notification-actions a.delete,.buddypress-wrap table.notifications .notification-actions a.mark-read{display:inline-block}.buddypress-wrap table.notification-settings{margin-bottom:15px;text-align:left}.buddypress-wrap #groups-notification-settings{margin-bottom:0}.buddypress-wrap table.notification-settings td:first-child,.buddypress-wrap table.notification-settings th.icon,.buddypress-wrap table.notifications td:first-child,.buddypress-wrap table.notifications th.icon{display:none}.buddypress-wrap table.notification-settings .no,.buddypress-wrap table.notification-settings .yes{text-align:center;width:40px;vertical-align:middle}.buddypress-wrap table#message-threads{clear:both}.buddypress-wrap table#message-threads .thread-info{min-width:40%}.buddypress-wrap table#message-threads .thread-info p{margin:0}.buddypress-wrap table#message-threads .thread-info p.thread-excerpt{color:#737373;font-size:12px;margin-top:3px}.buddypress-wrap table.profile-fields{margin-bottom:20px}.buddypress-wrap table.profile-fields:last-child{margin-bottom:0}.buddypress-wrap table.profile-fields p{margin:0}.buddypress-wrap table.profile-fields p:last-child{margin-top:0}.bp-screen-reader-text{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-vert{display:flex;align-items:center}.bp-hide{display:none}.bp-show{height:auto;left:0;overflow:visible;position:static;top:0}.buddypress .buddypress-wrap .activity-read-more a,.buddypress .buddypress-wrap .comment-reply-link,.buddypress .buddypress-wrap .generic-button a,.buddypress .buddypress-wrap a.bp-title-button,.buddypress .buddypress-wrap a.button,.buddypress .buddypress-wrap button,.buddypress .buddypress-wrap input[type=button],.buddypress .buddypress-wrap input[type=reset],.buddypress .buddypress-wrap input[type=submit],.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a{background:#fff;border-color:#ccc;border-style:solid;border-width:1px;border-radius:0;color:#555;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:400;outline:0;padding:.3em .5em;text-align:center;text-decoration:none;width:auto;line-height:1}.buddypress .buddypress-wrap a.button.dashicons,.buddypress .buddypress-wrap button.dashicons{font-family:dashicons}.buddypress .buddypress-wrap .button-small[type=button]{padding:0 8px 1px}.buddypress .buddypress-wrap .activity-read-more a:focus,.buddypress .buddypress-wrap .activity-read-more a:hover,.buddypress .buddypress-wrap .button-nav li a:focus,.buddypress .buddypress-wrap .button-nav li a:hover,.buddypress .buddypress-wrap .button-nav li.current a,.buddypress .buddypress-wrap .comment-reply-link:focus,.buddypress .buddypress-wrap .comment-reply-link:hover,.buddypress .buddypress-wrap .generic-button a:focus,.buddypress .buddypress-wrap .generic-button a:hover,.buddypress .buddypress-wrap a.button:focus,.buddypress .buddypress-wrap a.button:hover,.buddypress .buddypress-wrap button:focus,.buddypress .buddypress-wrap button:hover,.buddypress .buddypress-wrap input[type=button]:focus,.buddypress .buddypress-wrap input[type=button]:hover,.buddypress .buddypress-wrap input[type=reset]:focus,.buddypress .buddypress-wrap input[type=reset]:hover,.buddypress .buddypress-wrap input[type=submit]:focus,.buddypress .buddypress-wrap input[type=submit]:hover{background:#ededed;border-color:#999;color:#333;outline:0;text-decoration:none}.buddypress .buddypress-wrap a.disabled,.buddypress .buddypress-wrap button.disabled,.buddypress .buddypress-wrap button.pending,.buddypress .buddypress-wrap div.pending a,.buddypress .buddypress-wrap input[type=button].disabled,.buddypress .buddypress-wrap input[type=button].pending,.buddypress .buddypress-wrap input[type=reset].disabled,.buddypress .buddypress-wrap input[type=reset].pending,.buddypress .buddypress-wrap input[type=submit].pending,.buddypress .buddypress-wrap input[type=submit]:disabled,.buddypress .buddypress-wrap input[type=submit][disabled=disabled]{border-color:#eee;color:#767676;cursor:default}.buddypress .buddypress-wrap a.disabled:hover,.buddypress .buddypress-wrap button.disabled:hover,.buddypress .buddypress-wrap button.pending:hover,.buddypress .buddypress-wrap div.pending a:hover,.buddypress .buddypress-wrap input[type=button]:hover.disabled,.buddypress .buddypress-wrap input[type=button]:hover.pending,.buddypress .buddypress-wrap input[type=reset]:hover.disabled,.buddypress .buddypress-wrap input[type=reset]:hover.pending,.buddypress .buddypress-wrap input[type=submit]:hover.disabled,.buddypress .buddypress-wrap input[type=submit]:hover.pending{border-color:#eee;color:#767676}.buddypress .buddypress-wrap button.text-button,.buddypress .buddypress-wrap input.text-button{background:0 0;border:0;box-shadow:none;color:#767676}.buddypress .buddypress-wrap button.text-button.small,.buddypress .buddypress-wrap input.text-button.small{font-size:13px}.buddypress .buddypress-wrap button.text-button:focus,.buddypress .buddypress-wrap button.text-button:hover,.buddypress .buddypress-wrap input.text-button:focus,.buddypress .buddypress-wrap input.text-button:hover{background:0 0;text-decoration:underline}.buddypress .buddypress-wrap .activity-list a.button{border:none}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover{color:#1fb3dd}.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li a.invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.group-remove-invite-button:hover,.buddypress .buddypress-wrap .bp-invites-content ul.bp-list li.selected a.invite-button:hover{color:#a00}.buddypress .buddypress-wrap #item-buttons:empty{display:none}.buddypress .buddypress-wrap input:disabled:focus,.buddypress .buddypress-wrap input:disabled:hover{background:0 0}.buddypress .buddypress-wrap .text-links-list a.button{background:0 0;border:none;border-right:1px solid #eee;color:#737373;display:inline-block;padding:.3em 1em}.buddypress .buddypress-wrap .text-links-list a.button:visited{color:#d6d6d6}.buddypress .buddypress-wrap .text-links-list a.button:focus,.buddypress .buddypress-wrap .text-links-list a.button:hover{color:#5087e5}.buddypress .buddypress-wrap .text-links-list a:first-child{padding-left:0}.buddypress .buddypress-wrap .text-links-list a:last-child{border-right:none}.buddypress .buddypress-wrap .bp-list.grid .action a,.buddypress .buddypress-wrap .bp-list.grid .action button{border:1px solid #ccc;display:block;margin:0}.buddypress .buddypress-wrap .bp-list.grid .action a:focus,.buddypress .buddypress-wrap .bp-list.grid .action a:hover,.buddypress .buddypress-wrap .bp-list.grid .action button:focus,.buddypress .buddypress-wrap .bp-list.grid .action button:hover{background:#ededed}.buddypress #buddypress .create-button{background:0 0;text-align:center}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{text-decoration:underline}@media screen and (min-width:46.8em){.buddypress #buddypress .create-button{float:right}}.buddypress #buddypress .create-button a{border:1px solid #ccc;border-radius:5px;background-clip:padding-box;box-shadow:inset 0 0 6px 0 #eaeaea;margin:.2em 0;width:auto}.buddypress #buddypress .create-button a:focus,.buddypress #buddypress .create-button a:hover{background:0 0;border-color:#ccc;box-shadow:inset 0 0 12px 0 #eaeaea}@media screen and (min-width:46.8em){.buddypress #buddypress.bp-dir-vert-nav .create-button{float:none;padding-top:2em}.buddypress #buddypress.bp-dir-vert-nav .create-button a{margin-right:.5em}}.buddypress #buddypress.bp-dir-hori-nav .create-button{float:left}.buddypress #buddypress.bp-dir-hori-nav .create-button a,.buddypress #buddypress.bp-dir-hori-nav .create-button a:hover{background:0 0;border:0;box-shadow:none;margin:0}.buddypress-wrap button.ac-reply-cancel,.buddypress-wrap button.bp-icons{background:0 0;border:0}.buddypress-wrap button.bp-icons:focus,.buddypress-wrap button.bp-icons:hover{background:0 0}.buddypress-wrap button.ac-reply-cancel:focus,.buddypress-wrap button.ac-reply-cancel:hover{background:0 0;text-decoration:underline}.buddypress-wrap .bp-invites-content li .invite-button span.icons:before,.buddypress-wrap .bp-invites-filters .invite-button span.icons:before,.buddypress-wrap .bp-messages-filters li a.messages-button:before,.buddypress-wrap .feed a:before,.buddypress-wrap .filter label:before{font-family:dashicons;font-size:18px}.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:27px}@media screen and (min-width:46.8em){.buddypress-wrap .bp-invites-content .item-list li .invite-button span.icons:before{font-size:32px}}.buddypress-wrap .bp-list a.button.invite-button:focus,.buddypress-wrap .bp-list a.button.invite-button:hover{background:0 0}.buddypress-wrap .filter label:before{content:"\f536"}.buddypress-wrap div.feed a:before,.buddypress-wrap li.feed a:before{content:"\f303"}.buddypress-wrap ul.item-list li .invite-button:not(.group-remove-invite-button) span.icons:before{content:"\f502"}.buddypress-wrap ul.item-list li .group-remove-invite-button span.icons:before,.buddypress-wrap ul.item-list li.selected .invite-button span.icons:before{content:"\f153"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-next-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-next-page:before{content:"\f345"}.buddypress-wrap .bp-invites-filters ul li #bp-invites-prev-page:before,.buddypress-wrap .bp-messages-filters ul li #bp-messages-prev-page:before{content:"\f341"}.buddypress-wrap .warn{color:#b71717}.buddypress-wrap .bp-messages{border:1px solid #ccc;margin:0 0 15px}.buddypress-wrap .bp-messages .sitewide-notices{display:block;margin:5px;padding:.5em}.buddypress-wrap .bp-messages.info{margin-bottom:0}.buddypress-wrap .bp-messages.updated{clear:both;display:block}.buddypress-wrap .bp-messages.bp-user-messages-feedback{border:0}.buddypress-wrap #group-create-body .bp-cover-image-status p.warning{background:#0b80a4;border:0;box-shadow:0 0 3px 0 rgba(0,0,0,.2);color:#fff}.buddypress-wrap .bp-feedback:not(.custom-homepage-info){display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row nowrap;flex-flow:row nowrap;align-items:stretch;align-items:center}.buddypress-wrap .bp-feedback{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;margin:10px 0;position:relative}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback span.bp-icon{color:#fff;display:block;font-family:dashicons;left:0;margin-right:10px;position:relative;padding:0 .5em}.buddypress-wrap .bp-feedback .bp-help-text{font-style:italic}.buddypress-wrap .bp-feedback .text{font-size:14px;margin:0;padding:.5em 0}.buddypress-wrap .bp-feedback.no-icon{padding:.5em}.buddypress-wrap .bp-feedback.small:before{line-height:inherit}.buddypress-wrap a[data-bp-close] span:before,.buddypress-wrap button[data-bp-close] span:before{font-size:32px}.buddypress-wrap a[data-bp-close],.buddypress-wrap button[data-bp-close]{border:0;position:absolute;top:10px;right:10px;width:32px}.buddypress-wrap .bp-feedback.no-icon a[data-bp-close],.buddypress-wrap .bp-feedback.no-icon button[data-bp-close]{top:-6px;right:6px}.buddypress-wrap button[data-bp-close]:hover{background-color:transparent}.buddypress-wrap .bp-feedback p{margin:0}.buddypress-wrap .bp-feedback .bp-icon{font-size:20px;padding:0 2px}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon,.buddypress-wrap .bp-feedback.loading .bp-icon,.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{display:flex;align-items:center;align-self:stretch}.buddypress-wrap .bp-feedback.help .bp-icon,.buddypress-wrap .bp-feedback.info .bp-icon{background-color:#0b80a4}.buddypress-wrap .bp-feedback.help .bp-icon:before,.buddypress-wrap .bp-feedback.info .bp-icon:before{content:"\f348"}.buddypress-wrap .bp-feedback.error .bp-icon,.buddypress-wrap .bp-feedback.warning .bp-icon{background-color:#d33}.buddypress-wrap .bp-feedback.error .bp-icon:before,.buddypress-wrap .bp-feedback.warning .bp-icon:before{content:"\f534"}.buddypress-wrap .bp-feedback.loading .bp-icon{background-color:#ffd087}.buddypress-wrap .bp-feedback.loading .bp-icon:before{content:"\f469"}.buddypress-wrap .bp-feedback.success .bp-icon,.buddypress-wrap .bp-feedback.updated .bp-icon{background-color:#8a2}.buddypress-wrap .bp-feedback.success .bp-icon:before,.buddypress-wrap .bp-feedback.updated .bp-icon:before{content:"\f147"}.buddypress-wrap .bp-feedback.help .bp-icon:before{content:"\f468"}.buddypress-wrap #pass-strength-result{background-color:#eee;border-color:#ddd;border-style:solid;border-width:1px;display:none;font-weight:700;margin:10px 0 10px 0;padding:.5em;text-align:center;width:auto}.buddypress-wrap #pass-strength-result.show{display:block}.buddypress-wrap #pass-strength-result.mismatch{background-color:#333;border-color:transparent;color:#fff}.buddypress-wrap #pass-strength-result.bad,.buddypress-wrap #pass-strength-result.error{background-color:#ffb78c;border-color:#ff853c;color:#333}.buddypress-wrap #pass-strength-result.short{background-color:#ffa0a0;border-color:#f04040;color:#333}.buddypress-wrap #pass-strength-result.good{background-color:#ffec8b;border-color:#fc0;color:#333}.buddypress-wrap #pass-strength-result.strong{background-color:#66d66e;border-color:#438c48;color:#333}.buddypress-wrap .standard-form#signup_form div div.error{background:#faa;color:#a00;margin:0 0 10px 0;padding:.5em;width:90%}.buddypress-wrap .accept,.buddypress-wrap .reject{float:left;margin-left:10px}.buddypress-wrap .members-list.grid .bp-ajax-message{background:rgba(255,255,255,.9);border:1px solid #eee;font-size:14px;left:2%;position:absolute;padding:.5em 1em;right:2%;top:30px}body.create-blog #buddypress .error,body.create-blog #buddypress .success{background:#fff;color:#807f7f;box-shadow:0 1px 1px 1px rgba(0,0,0,.1);color:#737373;padding:10px 15px;background-color:#fff}body.create-blog #buddypress .error{border-left:4px solid #d33}body.create-blog #buddypress .success{border-left:4px solid #8a2}.buddypress.widget .item-options{font-size:12px;margin:0 0 1em;padding:1em 0}.buddypress.widget .bp-login-widget-user-avatar{float:left}.buddypress.widget .bp-login-widget-user-links{margin-left:70px}.buddypress.widget ul.item-list{list-style:none;margin:10px 0}.buddypress.widget ul.activity-list{padding:0}.buddypress.widget ul.activity-list blockquote{margin:0 0 1.5em;overflow:visible;padding:0 0 .75em .75em}.buddypress.widget ul.activity-list img{margin-bottom:.5em}.buddypress.widget ul.activity-list li{border-bottom:1px solid #ccc;margin-bottom:1em}.buddypress.widget ul.activity-list li .activity-header p{margin-bottom:.5em}.buddypress.widget ul.activity-list li:last-child{border-bottom:0}.buddypress.widget div.activity-list blockquote{padding:0;border:none}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini){position:relative;box-shadow:1px 0 4px rgba(0,0,0,.15);padding:0 1em}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after,.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{position:absolute;left:15px;display:block;width:0;height:0;border-style:solid;border-color:transparent;content:""}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):before{bottom:-18px;border-top-color:rgba(0,0,0,.15);border-width:9px;left:14px}.buddypress.widget div.activity-list blockquote .activity-item:not(.mini):after{bottom:-16px;border-top-color:#fff;border-width:8px}.buddypress.widget div.activity-list blockquote .activity-item.mini .avatar{display:inline-block;width:20px;height:20px;vertical-align:middle;margin-right:2px}.buddypress.widget div.activity-list footer{display:flex;align-items:center}.buddypress.widget div.activity-list footer img.avatar{display:inline-block;border:none;margin-right:.5em}.buddypress.widget div.activity-list footer .activity-time-since{font-size:90%}.buddypress.widget .avatar-block{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}.buddypress.widget .avatar-block img{margin:.5em}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#friends-list li:before,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#groups-list li:before,.buddypress.widget ul#members-list li:after,.buddypress.widget ul#members-list li:before{content:" ";display:table}.buddypress.widget ul#friends-list li:after,.buddypress.widget ul#groups-list li:after,.buddypress.widget ul#members-list li:after{clear:both}.buddypress.widget ul#friends-list li,.buddypress.widget ul#groups-list li,.buddypress.widget ul#members-list li{margin-bottom:1em}.buddypress.widget ul#friends-list li .item-avatar,.buddypress.widget ul#groups-list li .item-avatar,.buddypress.widget ul#members-list li .item-avatar{float:left;width:60px}.buddypress.widget ul#friends-list li .item,.buddypress.widget ul#groups-list li .item,.buddypress.widget ul#members-list li .item{margin-left:70px}.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:column nowrap;flex-flow:column nowrap}@media screen and (min-width:32em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{display:-moz-flex;display:-ms-flex;display:-o-flex;display:flex;-o-flex-flow:row wrap;flex-flow:row wrap}}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{border:1px solid #eee;align-items:stretch;-moz-flex:1 1 46%;-o-flex:1 1 46%;flex:1 1 46%;margin:2%}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 20%;-o-flex:0 1 20%;flex:0 1 20%}}.buddypress-wrap .buddypress.widget ul#friends-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#groups-list li .item-avatar,.buddypress-wrap .buddypress.widget ul#members-list li .item-avatar{padding:.5em;text-align:center}.buddypress-wrap .buddypress.widget ul#friends-list li .item,.buddypress-wrap .buddypress.widget ul#groups-list li .item,.buddypress-wrap .buddypress.widget ul#members-list li .item{padding:.5em}.buddypress-wrap .buddypress.widget ul#friends-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#groups-list li .item .item-meta,.buddypress-wrap .buddypress.widget ul#members-list li .item .item-meta{font-size:12px;overflow-wrap:break-word}@media screen and (min-width:75em){.buddypress-wrap .buddypress.widget ul#friends-list,.buddypress-wrap .buddypress.widget ul#groups-list,.buddypress-wrap .buddypress.widget ul#members-list{margin:10px -2%;width:100%}.buddypress-wrap .buddypress.widget ul#friends-list li,.buddypress-wrap .buddypress.widget ul#groups-list li,.buddypress-wrap .buddypress.widget ul#members-list li{-moz-flex:0 1 auto;-o-flex:0 1 auto;flex:0 1 auto;margin:10px 2% 1%;width:46%}}.buddypress-wrap .buddypress.widget blockquote{margin:0 0 1.5em;overflow:visible;padding:0 0 .75em .75em}#buddypress-wrap *{transition:opacity .1s ease-in-out .1s}#buddypress-wrap a.button,#buddypress-wrap a.generic-button,#buddypress-wrap button,#buddypress-wrap input[type=reset],#buddypress-wrap input[type=submit]{transition:background .1s ease-in-out .1s,color .1s ease-in-out .1s,border-color .1s ease-in-out .1s}.buddypress-wrap a.loading,.buddypress-wrap input.loading{animation:loader-pulsate .5s infinite ease-in-out alternate;border-color:#aaa}@keyframes loader-pulsate{from{border-color:#aaa;box-shadow:0 0 6px #ccc}to{border-color:#ccc;box-shadow:0 0 6px #f8f8f8}}.buddypress-wrap a.loading:hover,.buddypress-wrap input.loading:hover{color:#777}[data-bp-tooltip]{position:relative}[data-bp-tooltip]:after{background-color:#fff;display:none;opacity:0;position:absolute;transform:translate3d(0,0,0);visibility:hidden}[data-bp-tooltip]:after{border:1px solid #737373;border-radius:1px;box-shadow:4px 4px 8px rgba(0,0,0,.2);color:#333;content:attr(data-bp-tooltip);font-family:"Helvetica Neue",helvetica,arial,san-serif;font-size:12px;font-weight:400;letter-spacing:normal;line-height:1.25;max-width:200px;padding:5px 8px;pointer-events:none;text-shadow:none;text-transform:none;transition:all 1.5s ease;white-space:nowrap;word-wrap:break-word;z-index:100000}[data-bp-tooltip]:active:after,[data-bp-tooltip]:focus:after,[data-bp-tooltip]:hover:after{display:block;opacity:1;overflow:visible;visibility:visible}[data-bp-tooltip=""]{display:none;opacity:0;visibility:hidden}.bp-tooltip:after{left:50%;margin-top:7px;top:110%;transform:translate(-50%,0)}.user-list .bp-tooltip:after{left:0;transform:translate(0,0)}@media screen and (min-width:46.8em){.user-list .bp-tooltip:after{left:auto;right:0;transform:translate(0,0)}}.activity-list .bp-tooltip:after,.activity-meta-action .bp-tooltip:after,.avatar-block .item-avatar .bp-tooltip:after,.notification-actions .bp-tooltip:after,.participants-list .bp-tooltip:after{left:0;transform:translate(0,0)}.bp-invites-content .bp-tooltip:after,.message-metadata .actions .bp-tooltip:after,.single-message-thread-header .actions .bp-tooltip:after{left:auto;right:0;transform:translate(0,0)}.bp-invites-content #send-invites-editor .bp-tooltip:after{left:0;right:auto}#item-body,.single-screen-navs{box-sizing:border-box}.grid>li,.grid>li .generic-button a{box-sizing:border-box}.grid>li{border-bottom:0;padding-bottom:10px;padding-top:0}.grid>li .list-wrap{background:#fafafa;border:1px solid #eee;padding-bottom:15px;position:relative;overflow:hidden;padding-top:14px}.grid>li .list-wrap .list-title{padding:.5em}.grid>li .list-wrap .update{color:#737373;padding:.5em 2em}.grid>li .item-avatar{text-align:center}.grid>li .item-avatar .avatar{border-radius:50%;display:inline-block;width:50%}@media screen and (min-width:24em){.grid.members-list .list-wrap{min-height:340px}.grid.members-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.members-group-list .list-wrap .item-block{margin:0 auto;min-height:7rem}.grid.groups-list .list-wrap{min-height:470px}.grid.groups-list .list-wrap .item-block{min-height:6rem}.grid.groups-list .list-wrap .group-desc{margin:15px auto 0;min-height:5em;overflow:hidden}.grid.groups-list .list-wrap .group-details,.grid.groups-list .list-wrap .item-desc,.grid.groups-list .list-wrap .last-activity{margin-bottom:0}.grid.groups-list .list-wrap .group-details p,.grid.groups-list .list-wrap .item-desc p,.grid.groups-list .list-wrap .last-activity p{margin-bottom:0}.grid.blogs-list .list-wrap{min-height:350px}.grid.blogs-list .list-wrap .item-block{margin:0 auto;min-height:7rem}}@media screen and (min-width:24em){.grid>li.item-entry{float:left;margin:0}.grid.two>li{padding-bottom:20px}}@media screen and (min-width:24em) and (min-width:75em){.grid.two>li .list-wrap{max-width:500px;margin:0 auto}}@media screen and (min-width:24em){.grid.three>li,.grid.two>li{width:50%}.grid.three>li:nth-child(odd),.grid.two>li:nth-child(odd){padding-right:10px}.grid.three>li:nth-child(even),.grid.two>li:nth-child(even){padding-left:10px}.grid.three>li .item,.grid.two>li .item{margin:1rem auto 0;width:80%}.grid.three>li .item .item-title,.grid.two>li .item .item-title{width:auto}}@media screen and (min-width:46.8em){.grid.three>li{padding-top:0;width:33.333333%;width:calc(100% / 3)}.grid.three>li:nth-child(1n+1){padding-left:5px;padding-right:5px}.grid.three>li:nth-child(3n+3){padding-left:5px;padding-right:0}.grid.three>li:nth-child(3n+1){padding-left:0;padding-right:5px}}@media screen and (min-width:46.8em){.grid.four>li{width:25%}.grid.four>li:nth-child(1n+1){padding-left:5px;padding-right:5px}.grid.four>li:nth-child(4n+4){padding-left:5px;padding-right:0}.grid.four>li:nth-child(4n+1){padding-left:0;padding-right:5px}}.buddypress-wrap .grid.bp-list{padding-top:1em}.buddypress-wrap .grid.bp-list>li{border-bottom:none}.buddypress-wrap .grid.bp-list>li .list-wrap{padding-bottom:3em}.buddypress-wrap .grid.bp-list>li .item-avatar{margin:0;text-align:center;width:auto}.buddypress-wrap .grid.bp-list>li .item-avatar img.avatar{display:inline-block;height:auto;width:50%}.buddypress-wrap .grid.bp-list>li .item-meta,.buddypress-wrap .grid.bp-list>li .list-title{float:none;text-align:center}.buddypress-wrap .grid.bp-list>li .list-title{font-size:inherit;line-height:1.1}.buddypress-wrap .grid.bp-list>li .item{font-size:18px;left:0;margin:0 auto;text-align:center;width:96%}@media screen and (min-width:46.8em){.buddypress-wrap .grid.bp-list>li .item{font-size:22px}}.buddypress-wrap .grid.bp-list>li .item .group-desc,.buddypress-wrap .grid.bp-list>li .item .item-block{float:none;width:96%}.buddypress-wrap .grid.bp-list>li .item .item-block{margin-bottom:10px}.buddypress-wrap .grid.bp-list>li .item .last-activity{margin-top:5px}.buddypress-wrap .grid.bp-list>li .item .group-desc{clear:none}.buddypress-wrap .grid.bp-list>li .item .user-update{clear:both;text-align:left}.buddypress-wrap .grid.bp-list>li .item .activity-read-more a{display:inline}.buddypress-wrap .grid.bp-list>li .action{bottom:5px;float:none;height:auto;left:0;margin:0;padding:0 5px;position:absolute;text-align:center;top:auto;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button{float:none;margin:5px 0 0;text-align:center;width:100%}.buddypress-wrap .grid.bp-list>li .action .generic-button a,.buddypress-wrap .grid.bp-list>li .action .generic-button button{width:100%}.buddypress-wrap .grid.bp-list>li .avatar,.buddypress-wrap .grid.bp-list>li .item,.buddypress-wrap .grid.bp-list>li .item-avatar{float:none}.buddypress-wrap .blogs-list.grid.two>li .blogs-title{min-height:5em}.buddypress-wrap .grid.four>li .group-desc,.buddypress-wrap .grid.three>li .group-desc{min-height:8em}.buddypress-wrap .blogs-list.grid.four>li,.buddypress-wrap .blogs-list.grid.three>li{min-height:350px}.buddypress-wrap .blogs-list.grid.four>li .last-activity,.buddypress-wrap .blogs-list.grid.three>li .last-activity{margin-bottom:0}.buddypress-wrap .blogs-list.grid.four>li .last-post,.buddypress-wrap .blogs-list.grid.three>li .last-post{margin-top:0}.buddypress:not(.logged-in) .grid.bp-list .list-wrap{padding-bottom:5px}.buddypress:not(.logged-in) .grid.groups-list .list-wrap{min-height:430px}.buddypress:not(.logged-in) .grid.members-list .list-wrap{min-height:300px}.buddypress:not(.logged-in) .grid.blogs-list .list-wrap{min-height:320px}@media screen and (min-width:46.8em){.bp-single-vert-nav .bp-navs.vertical{overflow:visible}.bp-single-vert-nav .bp-navs.vertical ul{border-right:1px solid #d6d6d6;border-bottom:0;float:left;margin-right:-1px;width:25%}.bp-single-vert-nav .bp-navs.vertical li{float:none;margin-right:0}.bp-single-vert-nav .bp-navs.vertical li.selected a{background:#ccc;color:#333}.bp-single-vert-nav .bp-navs.vertical li:focus,.bp-single-vert-nav .bp-navs.vertical li:hover{background:#ccc}.bp-single-vert-nav .bp-navs.vertical li span{background:#d6d6d6;border-radius:10%;float:right;margin-right:2px}.bp-single-vert-nav .bp-navs.vertical li:hover span{border-color:#eaeaea}.bp-single-vert-nav .bp-navs.vertical.tabbed-links li.selected a{padding-left:0}.bp-single-vert-nav .bp-wrap{margin-bottom:15px}.bp-single-vert-nav .bp-wrap .group-nav-tabs.groups-nav ul li,.bp-single-vert-nav .bp-wrap .user-nav-tabs.users-nav ul li{left:1px;position:relative}.bp-single-vert-nav .item-body:not(#group-create-body){background:#fff;border-left:1px solid #d6d6d6;float:right;margin:0;min-height:400px;padding:0 0 0 1em;width:calc(75% + 1px)}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:#eaeaea;margin:0 0 0 -5px;width:auto}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li{font-size:16px;margin:10px 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border-right:1px solid #ccc;padding:0 .5em}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:focus,.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a:hover{background:0 0}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current a{background:0 0;color:#333;text-decoration:underline}.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li:last-child a{border:none}.bp-dir-vert-nav .dir-navs{float:left;left:1px;position:relative;width:20%}.bp-dir-vert-nav .dir-navs ul li{float:none;overflow:hidden;width:auto}.bp-dir-vert-nav .dir-navs ul li.selected{border:1px solid #eee}.bp-dir-vert-nav .dir-navs ul li.selected a{background:#555;color:#fff}.bp-dir-vert-nav .dir-navs ul li.selected a span{background:#eaeaea;border-color:#ccc;color:#5087e5}.bp-dir-vert-nav .dir-navs ul li a:focus,.bp-dir-vert-nav .dir-navs ul li a:hover{background:#ccc;color:#333}.bp-dir-vert-nav .dir-navs ul li a:focus span,.bp-dir-vert-nav .dir-navs ul li a:hover span{border:1px solid #555}.bp-dir-vert-nav .screen-content{border-left:1px solid #d6d6d6;margin-left:20%;overflow:hidden;padding:0 0 2em 1em}.bp-dir-vert-nav .screen-content .subnav-filters{margin-top:0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li:not(.selected) a:hover,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:focus,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li:not(.selected) a:hover{background:0 0}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected{background:0 0;border:1px solid #d6d6d6;border-right-color:#fff}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a{background:0 0;color:#333;font-weight:600}.buddypress-wrap.bp-vertical-navs .dir-navs.activity-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.groups-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.members-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .dir-navs.sites-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.group-nav-tabs ul li.selected a span,.buddypress-wrap.bp-vertical-navs .main-navs.user-nav-tabs ul li.selected a span{background:#555;border:1px solid #d6d6d6;color:#fff}}
bp-templates/bp-nouveau/css/twentytwentyone-rtl.css CHANGED
@@ -906,14 +906,14 @@ body.activity-permalink #buddypress.twentytwentyone .activity-list .activity-ava
906
  background: none;
907
  }
908
 
909
- #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before {
910
  width: 32px;
911
  height: 32px;
912
  color: var(--global--color-primary);
913
  background: var(--global--color-background);
914
  }
915
 
916
- #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before {
917
  border-radius: 50%;
918
  color: var(--global--color-background);
919
  background: var(--global--color-primary);
906
  background: none;
907
  }
908
 
909
+ #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before, #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:before {
910
  width: 32px;
911
  height: 32px;
912
  color: var(--global--color-primary);
913
  background: var(--global--color-background);
914
  }
915
 
916
+ #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before, #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before {
917
  border-radius: 50%;
918
  color: var(--global--color-background);
919
  background: var(--global--color-primary);
bp-templates/bp-nouveau/css/twentytwentyone-rtl.min.css CHANGED
@@ -1 +1 @@
1
- .is-dark-theme #buddypress.twentytwentyone .avatar{background:var(--global--color-white-90)}@media screen and (max-width:46.8em){#buddypress.twentytwentyone:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentyone .bp-navs li .count{background-color:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:50%;color:var(--button--color-text)}#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--global--color-background);border:1px solid var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:hover{background:var(--global--color-background);color:var(--global--color-primary);outline-offset:-6px;outline:2px dotted currentColor}#buddypress.twentytwentyone .bp-navs li.current a,#buddypress.twentytwentyone .bp-navs li.current a:focus,#buddypress.twentytwentyone .bp-navs li.current a:hover,#buddypress.twentytwentyone .bp-navs li.selected a,#buddypress.twentytwentyone .bp-navs li.selected a:focus,#buddypress.twentytwentyone .bp-navs li.selected a:hover{color:var(--button--color-text);background-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol,#buddypress.twentytwentyone .bp-navs.tabbed-links ul{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current{border-color:var(--global--color-primary) var(--global--color-primary) var(--global--color-background);border-style:solid;border-top-right-radius:4px;border-top-left-radius:4px}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current a{color:var(--global--color-primary);background-color:var(--global--color-background)}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav li .count{margin-right:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentyone #group-invites-container #send-invites-editor ul{padding-right:0}#buddypress.twentytwentyone.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .subnav-filters>ul{padding-right:0}#buddypress.twentytwentyone .invitations-options-nav,#buddypress.twentytwentyone .notifications-options-nav{margin-top:1em}#buddypress.twentytwentyone .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentyone .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentyone .bp-pagination{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-list>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list{background:inherit;border-right:none;border-left:none;border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list .activity-item{background:inherit;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-left:5%}}#buddypress.twentytwentyone .bp-list li.mini .item-avatar img.avatar{display:block;margin:0 auto;max-width:50px;max-height:50px;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-left:2%}}#buddypress.twentytwentyone .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentyone .bp-list li .item-meta,#buddypress.twentytwentyone .bp-list li .meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .activity-update-form{border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:5px;margin-right:3px;border-radius:0;border-style:dotted;border-width:0;border-right-width:1px;border-left-width:1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--global--color-white-90);color:var(--form--color-text);border-color:var(--form--border-color)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):last-child{border-bottom:dotted 1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--global--color-blue)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}body .site #buddypress.twentytwentyone .activity-list .load-more,body .site #buddypress.twentytwentyone .activity-list .load-newest{background-color:var(--button--color-background);color:var(--button--color-text);border:1px solid var(--button--color-background)}body .site #buddypress.twentytwentyone .activity-list .load-more a,body .site #buddypress.twentytwentyone .activity-list .load-newest a{color:var(--button--color-text)}body .site #buddypress.twentytwentyone .activity-list .load-more a:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest a:focus{color:var(--button--color-text-hover);background:0 0;outline-offset:-6px;outline:2px dotted currentColor}body .site #buddypress.twentytwentyone .activity-list .load-more:focus,body .site #buddypress.twentytwentyone .activity-list .load-more:hover,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .load-more:focus a,body .site #buddypress.twentytwentyone .activity-list .load-more:hover a,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus a,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover a{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header{color:var(--global--color-secondary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a{font-weight:600}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a:hover,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-inner,body .site #buddypress.twentytwentyone .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--global--color-primary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action{background:inherit}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button:before,body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button{background:var(--global--color-background);color:var(--global--color-primary);border:none}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button span{color:var(--global--color-secondary)}body.activity-permalink #buddypress.twentytwentyone .activity-list{border:none}body.activity-permalink #buddypress.twentytwentyone .activity-list .activity-avatar img.avatar{background:var(--global--color-white)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-avatar{width:auto;margin-left:0}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-content{border-right:1px solid var(--global--color-secondary);margin:15px 5% 0 0}#buddypress.twentytwentyone .groups-list li .group-desc{color:var(--global--color-secondary);border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #groups-dir-list .current-group-type{text-align:center}#buddypress.twentytwentyone .members-list li .user-update{border:1px dotted var(--global--color-primary);color:var(--global--color-secondary)}#buddypress.twentytwentyone #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}#buddypress.twentytwentyone .single-headers .bp-group-type-list,#buddypress.twentytwentyone .single-headers .bp-member-type-list,#buddypress.twentytwentyone .single-headers .group-status,#buddypress.twentytwentyone .single-headers .item-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentyone .groups-header .desc-wrap{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentyone .item-body h2.creation-step-name,#buddypress.twentytwentyone .item-body h2.screen-heading{font-size:var(--heading--font-size-h2);letter-spacing:var(--heading--letter-spacing-h2)}#buddypress.twentytwentyone .item-body h3.creation-step-name,#buddypress.twentytwentyone .item-body h3.screen-heading{font-size:var(--heading--font-size-h3);letter-spacing:var(--heading--letter-spacing-h3)}#buddypress.twentytwentyone .item-body h4.creation-step-name,#buddypress.twentytwentyone .item-body h4.screen-heading{font-size:var(--heading--font-size-h4);letter-spacing:var(--heading--letter-spacing-h4)}#buddypress.twentytwentyone .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--global--color-primary);border-bottom:1px solid var(--global--color-background)}#buddypress.twentytwentyone .item-body #drag-drop-area{border:4px dashed var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area .drag-drop-info{color:var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{background-color:var(--global--color-light-gray);border:none;border-right-width:4px;border-right-style:solid;color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{border-right-color:var(--global--color-orange)}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success{border-right-color:var(--global--color-green)}#buddypress.twentytwentyone .item-body .bp-avatar-status .error,#buddypress.twentytwentyone .item-body .bp-cover-image-status .error{border-right-color:var(--global--color-red)}.group-settings #buddypress.twentytwentyone .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentyone #group-manage-members-ui .bp-pagination{padding:.4em .5em .4em 0}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--button--color-background)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentyone #group-manage-members-ui #group-roles-filter label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 10px 6px 25px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone .bp-invites-content ul{border-top:none}#buddypress.twentytwentyone .bp-invites-content ul li{border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--global--color-background);background:var(--global--color-primary);width:32px;height:32px}#buddypress.twentytwentyone .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentyone .profile table.bp-tables-user tr td,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentyone .profile table.profile-fields tr td,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone .profile table.bp-tables-user tr td.label,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentyone .profile table.profile-fields tr td.label,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td.label{border-left-color:var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentyone .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentyone .profile.edit .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .profile.edit .button-tabs li{border:solid 2px var(--global--color-primary);overflow:hidden}#buddypress.twentytwentyone .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentyone .profile.edit .button-tabs li.current{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li.current a{color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentyone .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentyone .profile.edit legend{padding:0}#buddypress.twentytwentyone .field-visibility-settings,#buddypress.twentytwentyone .field-visibility-settings-header{color:var(--global--color-secondary)}#buddypress.twentytwentyone #group-list.invites h2.list-title{float:none}#buddypress.twentytwentyone #group-list.invites .accept{margin-right:0}#buddypress.twentytwentyone #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentyone #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentyone #message-threads{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.selected{border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.unread{border-right:8px solid var(--global--color-yellow)}#buddypress.twentytwentyone #message-threads li .thread-cb{padding-right:15px}#buddypress.twentytwentyone #message-threads li.unread .thread-cb{padding-right:7px}#buddypress.twentytwentyone #message-threads li .thread-from img.avatar,#buddypress.twentytwentyone #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentyone #message-threads li .thread-from .num-recipients,#buddypress.twentytwentyone #message-threads li .thread-to .num-recipients{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-content .excerpt{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-date time{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected .thread-subject .subject{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li:not(.selected){color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentyone .bp-messages-content #thread-preview h2:first-child{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-messages-content #thread-preview{border-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentyone .bp-messages-content #thread-preview dd{padding-right:0}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header dd{padding-right:0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before{width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before{border-radius:50%;color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentyone .bp-messages-content .actions .message-action-unstar:before{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:1em}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--global--color-primary);border-top:none}#buddypress.twentytwentyone .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentyone .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentyone .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-right-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 10px 0 0;padding:3px 5px;background-color:var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentyone.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentyone.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentyone fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentyone .select-wrap{border:1px solid var(--global--color-primary);background:var(--global--color-white-90)}#buddypress.twentytwentyone .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentyone .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentyone .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--global--color-black);vertical-align:-10%}#buddypress.twentytwentyone .select-wrap:focus .select-arrow:before,#buddypress.twentytwentyone .select-wrap:hover .select-arrow:before{color:var(--global--color-black)}#buddypress.twentytwentyone input[type=checkbox],#buddypress.twentytwentyone input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentyone .groups-members-search input[type=text],#buddypress.twentytwentyone input[type=color],#buddypress.twentytwentyone input[type=date],#buddypress.twentytwentyone input[type=datetime-local],#buddypress.twentytwentyone input[type=datetime],#buddypress.twentytwentyone input[type=email],#buddypress.twentytwentyone input[type=month],#buddypress.twentytwentyone input[type=number],#buddypress.twentytwentyone input[type=password],#buddypress.twentytwentyone input[type=range],#buddypress.twentytwentyone input[type=search],#buddypress.twentytwentyone input[type=tel],#buddypress.twentytwentyone input[type=text],#buddypress.twentytwentyone input[type=time],#buddypress.twentytwentyone input[type=url],#buddypress.twentytwentyone input[type=week],#buddypress.twentytwentyone textarea{color:var(--form--color-text);background:var(--global--color-white-90)}#buddypress.twentytwentyone .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentyone .bp-dir-search-form button,#buddypress.twentytwentyone form#group-members-search button,#buddypress.twentytwentyone form#group_invites_search_form button{background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-right-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-dir-search-form button:hover,#buddypress.twentytwentyone form#group-members-search button:hover,#buddypress.twentytwentyone form#group_invites_search_form button:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .standard-form p.description{color:var(--global--primary-color);background-color:var(--global--color-background)}body.bp-user.settings.general #buddypress.twentytwentyone .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentyone [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentyone form#group-members-search,#buddypress.twentytwentyone form.bp-dir-search-form,#buddypress.twentytwentyone form.bp-messages-search-form,#buddypress.twentytwentyone form[data-bp-search].bp-invites-search-form{border:1px solid var(--global--color-primary);background-color:var(--global--color-white-90)}#buddypress.twentytwentyone .bp-tables-user tbody tr,#buddypress.twentytwentyone .bp-tables-user tbody tr.alt,#buddypress.twentytwentyone table.forum tbody tr,#buddypress.twentytwentyone table.forum tbody tr.alt,#buddypress.twentytwentyone table.wp-profile-fields tbody tr,#buddypress.twentytwentyone table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentyone .activity-read-more a,#buddypress.twentytwentyone .comment-reply-link,#buddypress.twentytwentyone .generic-button a,#buddypress.twentytwentyone a.bp-title-button,#buddypress.twentytwentyone a.button,#buddypress.twentytwentyone button,#buddypress.twentytwentyone input[type=button],#buddypress.twentytwentyone input[type=submit],#buddypress.twentytwentyone ul.button-nav:not(.button-tabs) li a{background:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:0;color:var(--button--color-text)}#buddypress.twentytwentyone #bp-messages-reset,#buddypress.twentytwentyone .activity-read-more a:focus,#buddypress.twentytwentyone .activity-read-more a:hover,#buddypress.twentytwentyone .button-nav li a:focus,#buddypress.twentytwentyone .button-nav li a:hover,#buddypress.twentytwentyone .button-nav li.current a,#buddypress.twentytwentyone .comment-reply-link:focus,#buddypress.twentytwentyone .comment-reply-link:hover,#buddypress.twentytwentyone .generic-button a:focus,#buddypress.twentytwentyone .generic-button a:hover,#buddypress.twentytwentyone a.button:focus,#buddypress.twentytwentyone a.button:hover,#buddypress.twentytwentyone button:focus,#buddypress.twentytwentyone button:hover,#buddypress.twentytwentyone input[type=button]:focus,#buddypress.twentytwentyone input[type=button]:hover,#buddypress.twentytwentyone input[type=reset],#buddypress.twentytwentyone input[type=submit]:focus,#buddypress.twentytwentyone input[type=submit]:hover{background:0 0;border-color:var(--button--color-background);color:var(--button--color-text-hover);outline:0;text-decoration:none}#buddypress.twentytwentyone #bp-messages-reset:focus,#buddypress.twentytwentyone #bp-messages-reset:hover,#buddypress.twentytwentyone input[type=reset]:focus,#buddypress.twentytwentyone input[type=reset]:hover{outline-offset:-1px;outline:2px dotted currentColor}#buddypress.twentytwentyone a.disabled,#buddypress.twentytwentyone a.disabled:hover button.pending,#buddypress.twentytwentyone button.disabled,#buddypress.twentytwentyone button.disabled:hover,#buddypress.twentytwentyone button.pending:hover,#buddypress.twentytwentyone div.pending a,#buddypress.twentytwentyone div.pending a:hover,#buddypress.twentytwentyone input[type=button].disabled,#buddypress.twentytwentyone input[type=button].pending,#buddypress.twentytwentyone input[type=button]:hover.disabled,#buddypress.twentytwentyone input[type=button]:hover.pending,#buddypress.twentytwentyone input[type=reset].disabled,#buddypress.twentytwentyone input[type=reset].pending,#buddypress.twentytwentyone input[type=reset]:hover.disabled,#buddypress.twentytwentyone input[type=reset]:hover.pending,#buddypress.twentytwentyone input[type=submit].pending,#buddypress.twentytwentyone input[type=submit]:disabled,#buddypress.twentytwentyone input[type=submit]:hover.disabled,#buddypress.twentytwentyone input[type=submit]:hover.pending,#buddypress.twentytwentyone input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentyone .blog-button:after,#buddypress.twentytwentyone .blog-button:before{display:none}#buddypress.twentytwentyone .create-button a:focus,#buddypress.twentytwentyone .create-button a:hover{text-decoration:none}#buddypress.twentytwentyone.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--button--color-text);background-color:var(--button--color-background);border-radius:var(--button--border-radius);border:var(--button--border-width) solid var(--button--color-background);background-clip:border-box}#buddypress.twentytwentyone .warn{color:var(--global--color-primary);font-weight:600}#buddypress.twentytwentyone .bp-feedback{color:var(--global--color-primary);background:var(--global--color-background);box-shadow:none}#buddypress.twentytwentyone .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback .bp-icon{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-feedback a{border-bottom:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;left:15px}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentyone #group-create-body .bp-cover-image-status p.warning{background-color:var(--global--color-light-gray);border:none;border-right-width:4px;border-right-style:solid;border-right-color:var(--global--color-orange);color:var(--global--color-dark-gray);box-shadow:none}body.buddypress .site #buddypress.twentytwentyone .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--button--color-background);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--global--color-background)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--global--color-background);border-right:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--global--color-primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentyone .grid.bp-list{border-top:none}#buddypress.twentytwentyone .grid>li{border:none}#buddypress.twentytwentyone .grid>li .list-wrap{border:1px solid var(--global--color-primary);background:0 0}#buddypress.twentytwentyone .grid>li .item-avatar,#buddypress.twentytwentyone .grid>li:not(.mini) .item-avatar{margin-left:auto}
1
+ .is-dark-theme #buddypress.twentytwentyone .avatar{background:var(--global--color-white-90)}@media screen and (max-width:46.8em){#buddypress.twentytwentyone:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentyone .bp-navs li .count{background-color:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:50%;color:var(--button--color-text)}#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--global--color-background);border:1px solid var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:hover{background:var(--global--color-background);color:var(--global--color-primary);outline-offset:-6px;outline:2px dotted currentColor}#buddypress.twentytwentyone .bp-navs li.current a,#buddypress.twentytwentyone .bp-navs li.current a:focus,#buddypress.twentytwentyone .bp-navs li.current a:hover,#buddypress.twentytwentyone .bp-navs li.selected a,#buddypress.twentytwentyone .bp-navs li.selected a:focus,#buddypress.twentytwentyone .bp-navs li.selected a:hover{color:var(--button--color-text);background-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol,#buddypress.twentytwentyone .bp-navs.tabbed-links ul{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current{border-color:var(--global--color-primary) var(--global--color-primary) var(--global--color-background);border-style:solid;border-top-right-radius:4px;border-top-left-radius:4px}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current a{color:var(--global--color-primary);background-color:var(--global--color-background)}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav li .count{margin-right:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentyone #group-invites-container #send-invites-editor ul{padding-right:0}#buddypress.twentytwentyone.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .subnav-filters>ul{padding-right:0}#buddypress.twentytwentyone .invitations-options-nav,#buddypress.twentytwentyone .notifications-options-nav{margin-top:1em}#buddypress.twentytwentyone .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentyone .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentyone .bp-pagination{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-list>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list{background:inherit;border-right:none;border-left:none;border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list .activity-item{background:inherit;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-left:5%}}#buddypress.twentytwentyone .bp-list li.mini .item-avatar img.avatar{display:block;margin:0 auto;max-width:50px;max-height:50px;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-left:2%}}#buddypress.twentytwentyone .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentyone .bp-list li .item-meta,#buddypress.twentytwentyone .bp-list li .meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .activity-update-form{border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:5px;margin-right:3px;border-radius:0;border-style:dotted;border-width:0;border-right-width:1px;border-left-width:1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--global--color-white-90);color:var(--form--color-text);border-color:var(--form--border-color)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):last-child{border-bottom:dotted 1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--global--color-blue)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}body .site #buddypress.twentytwentyone .activity-list .load-more,body .site #buddypress.twentytwentyone .activity-list .load-newest{background-color:var(--button--color-background);color:var(--button--color-text);border:1px solid var(--button--color-background)}body .site #buddypress.twentytwentyone .activity-list .load-more a,body .site #buddypress.twentytwentyone .activity-list .load-newest a{color:var(--button--color-text)}body .site #buddypress.twentytwentyone .activity-list .load-more a:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest a:focus{color:var(--button--color-text-hover);background:0 0;outline-offset:-6px;outline:2px dotted currentColor}body .site #buddypress.twentytwentyone .activity-list .load-more:focus,body .site #buddypress.twentytwentyone .activity-list .load-more:hover,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .load-more:focus a,body .site #buddypress.twentytwentyone .activity-list .load-more:hover a,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus a,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover a{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header{color:var(--global--color-secondary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a{font-weight:600}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a:hover,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-inner,body .site #buddypress.twentytwentyone .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--global--color-primary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action{background:inherit}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button:before,body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button{background:var(--global--color-background);color:var(--global--color-primary);border:none}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button span{color:var(--global--color-secondary)}body.activity-permalink #buddypress.twentytwentyone .activity-list{border:none}body.activity-permalink #buddypress.twentytwentyone .activity-list .activity-avatar img.avatar{background:var(--global--color-white)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-avatar{width:auto;margin-left:0}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-content{border-right:1px solid var(--global--color-secondary);margin:15px 5% 0 0}#buddypress.twentytwentyone .groups-list li .group-desc{color:var(--global--color-secondary);border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #groups-dir-list .current-group-type{text-align:center}#buddypress.twentytwentyone .members-list li .user-update{border:1px dotted var(--global--color-primary);color:var(--global--color-secondary)}#buddypress.twentytwentyone #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}#buddypress.twentytwentyone .single-headers .bp-group-type-list,#buddypress.twentytwentyone .single-headers .bp-member-type-list,#buddypress.twentytwentyone .single-headers .group-status,#buddypress.twentytwentyone .single-headers .item-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentyone .groups-header .desc-wrap{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentyone .item-body h2.creation-step-name,#buddypress.twentytwentyone .item-body h2.screen-heading{font-size:var(--heading--font-size-h2);letter-spacing:var(--heading--letter-spacing-h2)}#buddypress.twentytwentyone .item-body h3.creation-step-name,#buddypress.twentytwentyone .item-body h3.screen-heading{font-size:var(--heading--font-size-h3);letter-spacing:var(--heading--letter-spacing-h3)}#buddypress.twentytwentyone .item-body h4.creation-step-name,#buddypress.twentytwentyone .item-body h4.screen-heading{font-size:var(--heading--font-size-h4);letter-spacing:var(--heading--letter-spacing-h4)}#buddypress.twentytwentyone .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--global--color-primary);border-bottom:1px solid var(--global--color-background)}#buddypress.twentytwentyone .item-body #drag-drop-area{border:4px dashed var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area .drag-drop-info{color:var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{background-color:var(--global--color-light-gray);border:none;border-right-width:4px;border-right-style:solid;color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{border-right-color:var(--global--color-orange)}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success{border-right-color:var(--global--color-green)}#buddypress.twentytwentyone .item-body .bp-avatar-status .error,#buddypress.twentytwentyone .item-body .bp-cover-image-status .error{border-right-color:var(--global--color-red)}.group-settings #buddypress.twentytwentyone .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentyone #group-manage-members-ui .bp-pagination{padding:.4em .5em .4em 0}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--button--color-background)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentyone #group-manage-members-ui #group-roles-filter label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 10px 6px 25px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone .bp-invites-content ul{border-top:none}#buddypress.twentytwentyone .bp-invites-content ul li{border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--global--color-background);background:var(--global--color-primary);width:32px;height:32px}#buddypress.twentytwentyone .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentyone .profile table.bp-tables-user tr td,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentyone .profile table.profile-fields tr td,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone .profile table.bp-tables-user tr td.label,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentyone .profile table.profile-fields tr td.label,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td.label{border-left-color:var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentyone .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentyone .profile.edit .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .profile.edit .button-tabs li{border:solid 2px var(--global--color-primary);overflow:hidden}#buddypress.twentytwentyone .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentyone .profile.edit .button-tabs li.current{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li.current a{color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentyone .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentyone .profile.edit legend{padding:0}#buddypress.twentytwentyone .field-visibility-settings,#buddypress.twentytwentyone .field-visibility-settings-header{color:var(--global--color-secondary)}#buddypress.twentytwentyone #group-list.invites h2.list-title{float:none}#buddypress.twentytwentyone #group-list.invites .accept{margin-right:0}#buddypress.twentytwentyone #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentyone #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentyone #message-threads{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.selected{border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.unread{border-right:8px solid var(--global--color-yellow)}#buddypress.twentytwentyone #message-threads li .thread-cb{padding-right:15px}#buddypress.twentytwentyone #message-threads li.unread .thread-cb{padding-right:7px}#buddypress.twentytwentyone #message-threads li .thread-from img.avatar,#buddypress.twentytwentyone #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentyone #message-threads li .thread-from .num-recipients,#buddypress.twentytwentyone #message-threads li .thread-to .num-recipients{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-content .excerpt{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-date time{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected .thread-subject .subject{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li:not(.selected){color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentyone .bp-messages-content #thread-preview h2:first-child{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-messages-content #thread-preview{border-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentyone .bp-messages-content #thread-preview dd{padding-right:0}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header dd{padding-right:0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before,#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:before{width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before,#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before{border-radius:50%;color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentyone .bp-messages-content .actions .message-action-unstar:before{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:1em}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--global--color-primary);border-top:none}#buddypress.twentytwentyone .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentyone .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentyone .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-right-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 10px 0 0;padding:3px 5px;background-color:var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentyone.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentyone.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentyone fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentyone .select-wrap{border:1px solid var(--global--color-primary);background:var(--global--color-white-90)}#buddypress.twentytwentyone .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentyone .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentyone .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--global--color-black);vertical-align:-10%}#buddypress.twentytwentyone .select-wrap:focus .select-arrow:before,#buddypress.twentytwentyone .select-wrap:hover .select-arrow:before{color:var(--global--color-black)}#buddypress.twentytwentyone input[type=checkbox],#buddypress.twentytwentyone input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentyone .groups-members-search input[type=text],#buddypress.twentytwentyone input[type=color],#buddypress.twentytwentyone input[type=date],#buddypress.twentytwentyone input[type=datetime-local],#buddypress.twentytwentyone input[type=datetime],#buddypress.twentytwentyone input[type=email],#buddypress.twentytwentyone input[type=month],#buddypress.twentytwentyone input[type=number],#buddypress.twentytwentyone input[type=password],#buddypress.twentytwentyone input[type=range],#buddypress.twentytwentyone input[type=search],#buddypress.twentytwentyone input[type=tel],#buddypress.twentytwentyone input[type=text],#buddypress.twentytwentyone input[type=time],#buddypress.twentytwentyone input[type=url],#buddypress.twentytwentyone input[type=week],#buddypress.twentytwentyone textarea{color:var(--form--color-text);background:var(--global--color-white-90)}#buddypress.twentytwentyone .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentyone .bp-dir-search-form button,#buddypress.twentytwentyone form#group-members-search button,#buddypress.twentytwentyone form#group_invites_search_form button{background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-right-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-dir-search-form button:hover,#buddypress.twentytwentyone form#group-members-search button:hover,#buddypress.twentytwentyone form#group_invites_search_form button:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .standard-form p.description{color:var(--global--primary-color);background-color:var(--global--color-background)}body.bp-user.settings.general #buddypress.twentytwentyone .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentyone [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentyone form#group-members-search,#buddypress.twentytwentyone form.bp-dir-search-form,#buddypress.twentytwentyone form.bp-messages-search-form,#buddypress.twentytwentyone form[data-bp-search].bp-invites-search-form{border:1px solid var(--global--color-primary);background-color:var(--global--color-white-90)}#buddypress.twentytwentyone .bp-tables-user tbody tr,#buddypress.twentytwentyone .bp-tables-user tbody tr.alt,#buddypress.twentytwentyone table.forum tbody tr,#buddypress.twentytwentyone table.forum tbody tr.alt,#buddypress.twentytwentyone table.wp-profile-fields tbody tr,#buddypress.twentytwentyone table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentyone .activity-read-more a,#buddypress.twentytwentyone .comment-reply-link,#buddypress.twentytwentyone .generic-button a,#buddypress.twentytwentyone a.bp-title-button,#buddypress.twentytwentyone a.button,#buddypress.twentytwentyone button,#buddypress.twentytwentyone input[type=button],#buddypress.twentytwentyone input[type=submit],#buddypress.twentytwentyone ul.button-nav:not(.button-tabs) li a{background:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:0;color:var(--button--color-text)}#buddypress.twentytwentyone #bp-messages-reset,#buddypress.twentytwentyone .activity-read-more a:focus,#buddypress.twentytwentyone .activity-read-more a:hover,#buddypress.twentytwentyone .button-nav li a:focus,#buddypress.twentytwentyone .button-nav li a:hover,#buddypress.twentytwentyone .button-nav li.current a,#buddypress.twentytwentyone .comment-reply-link:focus,#buddypress.twentytwentyone .comment-reply-link:hover,#buddypress.twentytwentyone .generic-button a:focus,#buddypress.twentytwentyone .generic-button a:hover,#buddypress.twentytwentyone a.button:focus,#buddypress.twentytwentyone a.button:hover,#buddypress.twentytwentyone button:focus,#buddypress.twentytwentyone button:hover,#buddypress.twentytwentyone input[type=button]:focus,#buddypress.twentytwentyone input[type=button]:hover,#buddypress.twentytwentyone input[type=reset],#buddypress.twentytwentyone input[type=submit]:focus,#buddypress.twentytwentyone input[type=submit]:hover{background:0 0;border-color:var(--button--color-background);color:var(--button--color-text-hover);outline:0;text-decoration:none}#buddypress.twentytwentyone #bp-messages-reset:focus,#buddypress.twentytwentyone #bp-messages-reset:hover,#buddypress.twentytwentyone input[type=reset]:focus,#buddypress.twentytwentyone input[type=reset]:hover{outline-offset:-1px;outline:2px dotted currentColor}#buddypress.twentytwentyone a.disabled,#buddypress.twentytwentyone a.disabled:hover button.pending,#buddypress.twentytwentyone button.disabled,#buddypress.twentytwentyone button.disabled:hover,#buddypress.twentytwentyone button.pending:hover,#buddypress.twentytwentyone div.pending a,#buddypress.twentytwentyone div.pending a:hover,#buddypress.twentytwentyone input[type=button].disabled,#buddypress.twentytwentyone input[type=button].pending,#buddypress.twentytwentyone input[type=button]:hover.disabled,#buddypress.twentytwentyone input[type=button]:hover.pending,#buddypress.twentytwentyone input[type=reset].disabled,#buddypress.twentytwentyone input[type=reset].pending,#buddypress.twentytwentyone input[type=reset]:hover.disabled,#buddypress.twentytwentyone input[type=reset]:hover.pending,#buddypress.twentytwentyone input[type=submit].pending,#buddypress.twentytwentyone input[type=submit]:disabled,#buddypress.twentytwentyone input[type=submit]:hover.disabled,#buddypress.twentytwentyone input[type=submit]:hover.pending,#buddypress.twentytwentyone input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentyone .blog-button:after,#buddypress.twentytwentyone .blog-button:before{display:none}#buddypress.twentytwentyone .create-button a:focus,#buddypress.twentytwentyone .create-button a:hover{text-decoration:none}#buddypress.twentytwentyone.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--button--color-text);background-color:var(--button--color-background);border-radius:var(--button--border-radius);border:var(--button--border-width) solid var(--button--color-background);background-clip:border-box}#buddypress.twentytwentyone .warn{color:var(--global--color-primary);font-weight:600}#buddypress.twentytwentyone .bp-feedback{color:var(--global--color-primary);background:var(--global--color-background);box-shadow:none}#buddypress.twentytwentyone .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback .bp-icon{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-feedback a{border-bottom:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;left:15px}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentyone #group-create-body .bp-cover-image-status p.warning{background-color:var(--global--color-light-gray);border:none;border-right-width:4px;border-right-style:solid;border-right-color:var(--global--color-orange);color:var(--global--color-dark-gray);box-shadow:none}body.buddypress .site #buddypress.twentytwentyone .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--button--color-background);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--global--color-background)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--global--color-background);border-right:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--global--color-primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentyone .grid.bp-list{border-top:none}#buddypress.twentytwentyone .grid>li{border:none}#buddypress.twentytwentyone .grid>li .list-wrap{border:1px solid var(--global--color-primary);background:0 0}#buddypress.twentytwentyone .grid>li .item-avatar,#buddypress.twentytwentyone .grid>li:not(.mini) .item-avatar{margin-left:auto}
bp-templates/bp-nouveau/css/twentytwentyone.css CHANGED
@@ -906,14 +906,14 @@ body.activity-permalink #buddypress.twentytwentyone .activity-list .activity-ava
906
  background: none;
907
  }
908
 
909
- #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before {
910
  width: 32px;
911
  height: 32px;
912
  color: var(--global--color-primary);
913
  background: var(--global--color-background);
914
  }
915
 
916
- #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before {
917
  border-radius: 50%;
918
  color: var(--global--color-background);
919
  background: var(--global--color-primary);
906
  background: none;
907
  }
908
 
909
+ #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before, #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:before {
910
  width: 32px;
911
  height: 32px;
912
  color: var(--global--color-primary);
913
  background: var(--global--color-background);
914
  }
915
 
916
+ #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before, #buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before {
917
  border-radius: 50%;
918
  color: var(--global--color-background);
919
  background: var(--global--color-primary);
bp-templates/bp-nouveau/css/twentytwentyone.min.css CHANGED
@@ -1 +1 @@
1
- .is-dark-theme #buddypress.twentytwentyone .avatar{background:var(--global--color-white-90)}@media screen and (max-width:46.8em){#buddypress.twentytwentyone:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentyone .bp-navs li .count{background-color:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:50%;color:var(--button--color-text)}#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--global--color-background);border:1px solid var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:hover{background:var(--global--color-background);color:var(--global--color-primary);outline-offset:-6px;outline:2px dotted currentColor}#buddypress.twentytwentyone .bp-navs li.current a,#buddypress.twentytwentyone .bp-navs li.current a:focus,#buddypress.twentytwentyone .bp-navs li.current a:hover,#buddypress.twentytwentyone .bp-navs li.selected a,#buddypress.twentytwentyone .bp-navs li.selected a:focus,#buddypress.twentytwentyone .bp-navs li.selected a:hover{color:var(--button--color-text);background-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol,#buddypress.twentytwentyone .bp-navs.tabbed-links ul{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current{border-color:var(--global--color-primary) var(--global--color-primary) var(--global--color-background);border-style:solid;border-top-left-radius:4px;border-top-right-radius:4px}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current a{color:var(--global--color-primary);background-color:var(--global--color-background)}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav li .count{margin-left:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentyone #group-invites-container #send-invites-editor ul{padding-left:0}#buddypress.twentytwentyone.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .subnav-filters>ul{padding-left:0}#buddypress.twentytwentyone .invitations-options-nav,#buddypress.twentytwentyone .notifications-options-nav{margin-top:1em}#buddypress.twentytwentyone .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentyone .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentyone .bp-pagination{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-list>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list{background:inherit;border-left:none;border-right:none;border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list .activity-item{background:inherit;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-right:5%}}#buddypress.twentytwentyone .bp-list li.mini .item-avatar img.avatar{display:block;margin:0 auto;max-width:50px;max-height:50px;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-right:2%}}#buddypress.twentytwentyone .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentyone .bp-list li .item-meta,#buddypress.twentytwentyone .bp-list li .meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .activity-update-form{border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:5px;margin-left:3px;border-radius:0;border-style:dotted;border-width:0;border-left-width:1px;border-right-width:1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--global--color-white-90);color:var(--form--color-text);border-color:var(--form--border-color)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):last-child{border-bottom:dotted 1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--global--color-blue)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}body .site #buddypress.twentytwentyone .activity-list .load-more,body .site #buddypress.twentytwentyone .activity-list .load-newest{background-color:var(--button--color-background);color:var(--button--color-text);border:1px solid var(--button--color-background)}body .site #buddypress.twentytwentyone .activity-list .load-more a,body .site #buddypress.twentytwentyone .activity-list .load-newest a{color:var(--button--color-text)}body .site #buddypress.twentytwentyone .activity-list .load-more a:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest a:focus{color:var(--button--color-text-hover);background:0 0;outline-offset:-6px;outline:2px dotted currentColor}body .site #buddypress.twentytwentyone .activity-list .load-more:focus,body .site #buddypress.twentytwentyone .activity-list .load-more:hover,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .load-more:focus a,body .site #buddypress.twentytwentyone .activity-list .load-more:hover a,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus a,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover a{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header{color:var(--global--color-secondary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a{font-weight:600}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a:hover,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-inner,body .site #buddypress.twentytwentyone .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--global--color-primary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action{background:inherit}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button:before,body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button{background:var(--global--color-background);color:var(--global--color-primary);border:none}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button span{color:var(--global--color-secondary)}body.activity-permalink #buddypress.twentytwentyone .activity-list{border:none}body.activity-permalink #buddypress.twentytwentyone .activity-list .activity-avatar img.avatar{background:var(--global--color-white)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-avatar{width:auto;margin-right:0}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-content{border-left:1px solid var(--global--color-secondary);margin:15px 0 0 5%}#buddypress.twentytwentyone .groups-list li .group-desc{color:var(--global--color-secondary);border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #groups-dir-list .current-group-type{text-align:center}#buddypress.twentytwentyone .members-list li .user-update{border:1px dotted var(--global--color-primary);color:var(--global--color-secondary)}#buddypress.twentytwentyone #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}#buddypress.twentytwentyone .single-headers .bp-group-type-list,#buddypress.twentytwentyone .single-headers .bp-member-type-list,#buddypress.twentytwentyone .single-headers .group-status,#buddypress.twentytwentyone .single-headers .item-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentyone .groups-header .desc-wrap{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentyone .item-body h2.creation-step-name,#buddypress.twentytwentyone .item-body h2.screen-heading{font-size:var(--heading--font-size-h2);letter-spacing:var(--heading--letter-spacing-h2)}#buddypress.twentytwentyone .item-body h3.creation-step-name,#buddypress.twentytwentyone .item-body h3.screen-heading{font-size:var(--heading--font-size-h3);letter-spacing:var(--heading--letter-spacing-h3)}#buddypress.twentytwentyone .item-body h4.creation-step-name,#buddypress.twentytwentyone .item-body h4.screen-heading{font-size:var(--heading--font-size-h4);letter-spacing:var(--heading--letter-spacing-h4)}#buddypress.twentytwentyone .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--global--color-primary);border-bottom:1px solid var(--global--color-background)}#buddypress.twentytwentyone .item-body #drag-drop-area{border:4px dashed var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area .drag-drop-info{color:var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{background-color:var(--global--color-light-gray);border:none;border-left-width:4px;border-left-style:solid;color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{border-left-color:var(--global--color-orange)}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success{border-left-color:var(--global--color-green)}#buddypress.twentytwentyone .item-body .bp-avatar-status .error,#buddypress.twentytwentyone .item-body .bp-cover-image-status .error{border-left-color:var(--global--color-red)}.group-settings #buddypress.twentytwentyone .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentyone #group-manage-members-ui .bp-pagination{padding:.4em 0 .4em .5em}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--button--color-background)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentyone #group-manage-members-ui #group-roles-filter label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 25px 6px 10px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone .bp-invites-content ul{border-top:none}#buddypress.twentytwentyone .bp-invites-content ul li{border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--global--color-background);background:var(--global--color-primary);width:32px;height:32px}#buddypress.twentytwentyone .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentyone .profile table.bp-tables-user tr td,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentyone .profile table.profile-fields tr td,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone .profile table.bp-tables-user tr td.label,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentyone .profile table.profile-fields tr td.label,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td.label{border-right-color:var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentyone .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentyone .profile.edit .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .profile.edit .button-tabs li{border:solid 2px var(--global--color-primary);overflow:hidden}#buddypress.twentytwentyone .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentyone .profile.edit .button-tabs li.current{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li.current a{color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentyone .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentyone .profile.edit legend{padding:0}#buddypress.twentytwentyone .field-visibility-settings,#buddypress.twentytwentyone .field-visibility-settings-header{color:var(--global--color-secondary)}#buddypress.twentytwentyone #group-list.invites h2.list-title{float:none}#buddypress.twentytwentyone #group-list.invites .accept{margin-left:0}#buddypress.twentytwentyone #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentyone #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentyone #message-threads{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.selected{border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.unread{border-left:8px solid var(--global--color-yellow)}#buddypress.twentytwentyone #message-threads li .thread-cb{padding-left:15px}#buddypress.twentytwentyone #message-threads li.unread .thread-cb{padding-left:7px}#buddypress.twentytwentyone #message-threads li .thread-from img.avatar,#buddypress.twentytwentyone #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentyone #message-threads li .thread-from .num-recipients,#buddypress.twentytwentyone #message-threads li .thread-to .num-recipients{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-content .excerpt{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-date time{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected .thread-subject .subject{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li:not(.selected){color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentyone .bp-messages-content #thread-preview h2:first-child{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-messages-content #thread-preview{border-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentyone .bp-messages-content #thread-preview dd{padding-left:0}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header dd{padding-left:0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before{width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before{border-radius:50%;color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentyone .bp-messages-content .actions .message-action-unstar:before{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:1em}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--global--color-primary);border-top:none}#buddypress.twentytwentyone .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentyone .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentyone .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-left-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 0 0 10px;padding:3px 5px;background-color:var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentyone.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentyone.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentyone fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentyone .select-wrap{border:1px solid var(--global--color-primary);background:var(--global--color-white-90)}#buddypress.twentytwentyone .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentyone .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentyone .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--global--color-black);vertical-align:-10%}#buddypress.twentytwentyone .select-wrap:focus .select-arrow:before,#buddypress.twentytwentyone .select-wrap:hover .select-arrow:before{color:var(--global--color-black)}#buddypress.twentytwentyone input[type=checkbox],#buddypress.twentytwentyone input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentyone .groups-members-search input[type=text],#buddypress.twentytwentyone input[type=color],#buddypress.twentytwentyone input[type=date],#buddypress.twentytwentyone input[type=datetime-local],#buddypress.twentytwentyone input[type=datetime],#buddypress.twentytwentyone input[type=email],#buddypress.twentytwentyone input[type=month],#buddypress.twentytwentyone input[type=number],#buddypress.twentytwentyone input[type=password],#buddypress.twentytwentyone input[type=range],#buddypress.twentytwentyone input[type=search],#buddypress.twentytwentyone input[type=tel],#buddypress.twentytwentyone input[type=text],#buddypress.twentytwentyone input[type=time],#buddypress.twentytwentyone input[type=url],#buddypress.twentytwentyone input[type=week],#buddypress.twentytwentyone textarea{color:var(--form--color-text);background:var(--global--color-white-90)}#buddypress.twentytwentyone .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentyone .bp-dir-search-form button,#buddypress.twentytwentyone form#group-members-search button,#buddypress.twentytwentyone form#group_invites_search_form button{background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-left-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-dir-search-form button:hover,#buddypress.twentytwentyone form#group-members-search button:hover,#buddypress.twentytwentyone form#group_invites_search_form button:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .standard-form p.description{color:var(--global--primary-color);background-color:var(--global--color-background)}body.bp-user.settings.general #buddypress.twentytwentyone .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentyone [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentyone form#group-members-search,#buddypress.twentytwentyone form.bp-dir-search-form,#buddypress.twentytwentyone form.bp-messages-search-form,#buddypress.twentytwentyone form[data-bp-search].bp-invites-search-form{border:1px solid var(--global--color-primary);background-color:var(--global--color-white-90)}#buddypress.twentytwentyone .bp-tables-user tbody tr,#buddypress.twentytwentyone .bp-tables-user tbody tr.alt,#buddypress.twentytwentyone table.forum tbody tr,#buddypress.twentytwentyone table.forum tbody tr.alt,#buddypress.twentytwentyone table.wp-profile-fields tbody tr,#buddypress.twentytwentyone table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentyone .activity-read-more a,#buddypress.twentytwentyone .comment-reply-link,#buddypress.twentytwentyone .generic-button a,#buddypress.twentytwentyone a.bp-title-button,#buddypress.twentytwentyone a.button,#buddypress.twentytwentyone button,#buddypress.twentytwentyone input[type=button],#buddypress.twentytwentyone input[type=submit],#buddypress.twentytwentyone ul.button-nav:not(.button-tabs) li a{background:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:0;color:var(--button--color-text)}#buddypress.twentytwentyone #bp-messages-reset,#buddypress.twentytwentyone .activity-read-more a:focus,#buddypress.twentytwentyone .activity-read-more a:hover,#buddypress.twentytwentyone .button-nav li a:focus,#buddypress.twentytwentyone .button-nav li a:hover,#buddypress.twentytwentyone .button-nav li.current a,#buddypress.twentytwentyone .comment-reply-link:focus,#buddypress.twentytwentyone .comment-reply-link:hover,#buddypress.twentytwentyone .generic-button a:focus,#buddypress.twentytwentyone .generic-button a:hover,#buddypress.twentytwentyone a.button:focus,#buddypress.twentytwentyone a.button:hover,#buddypress.twentytwentyone button:focus,#buddypress.twentytwentyone button:hover,#buddypress.twentytwentyone input[type=button]:focus,#buddypress.twentytwentyone input[type=button]:hover,#buddypress.twentytwentyone input[type=reset],#buddypress.twentytwentyone input[type=submit]:focus,#buddypress.twentytwentyone input[type=submit]:hover{background:0 0;border-color:var(--button--color-background);color:var(--button--color-text-hover);outline:0;text-decoration:none}#buddypress.twentytwentyone #bp-messages-reset:focus,#buddypress.twentytwentyone #bp-messages-reset:hover,#buddypress.twentytwentyone input[type=reset]:focus,#buddypress.twentytwentyone input[type=reset]:hover{outline-offset:-1px;outline:2px dotted currentColor}#buddypress.twentytwentyone a.disabled,#buddypress.twentytwentyone a.disabled:hover button.pending,#buddypress.twentytwentyone button.disabled,#buddypress.twentytwentyone button.disabled:hover,#buddypress.twentytwentyone button.pending:hover,#buddypress.twentytwentyone div.pending a,#buddypress.twentytwentyone div.pending a:hover,#buddypress.twentytwentyone input[type=button].disabled,#buddypress.twentytwentyone input[type=button].pending,#buddypress.twentytwentyone input[type=button]:hover.disabled,#buddypress.twentytwentyone input[type=button]:hover.pending,#buddypress.twentytwentyone input[type=reset].disabled,#buddypress.twentytwentyone input[type=reset].pending,#buddypress.twentytwentyone input[type=reset]:hover.disabled,#buddypress.twentytwentyone input[type=reset]:hover.pending,#buddypress.twentytwentyone input[type=submit].pending,#buddypress.twentytwentyone input[type=submit]:disabled,#buddypress.twentytwentyone input[type=submit]:hover.disabled,#buddypress.twentytwentyone input[type=submit]:hover.pending,#buddypress.twentytwentyone input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentyone .blog-button:after,#buddypress.twentytwentyone .blog-button:before{display:none}#buddypress.twentytwentyone .create-button a:focus,#buddypress.twentytwentyone .create-button a:hover{text-decoration:none}#buddypress.twentytwentyone.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--button--color-text);background-color:var(--button--color-background);border-radius:var(--button--border-radius);border:var(--button--border-width) solid var(--button--color-background);background-clip:border-box}#buddypress.twentytwentyone .warn{color:var(--global--color-primary);font-weight:600}#buddypress.twentytwentyone .bp-feedback{color:var(--global--color-primary);background:var(--global--color-background);box-shadow:none}#buddypress.twentytwentyone .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback .bp-icon{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-feedback a{border-bottom:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;right:15px}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentyone #group-create-body .bp-cover-image-status p.warning{background-color:var(--global--color-light-gray);border:none;border-left-width:4px;border-left-style:solid;border-left-color:var(--global--color-orange);color:var(--global--color-dark-gray);box-shadow:none}body.buddypress .site #buddypress.twentytwentyone .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--button--color-background);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--global--color-background)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--global--color-background);border-left:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--global--color-primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentyone .grid.bp-list{border-top:none}#buddypress.twentytwentyone .grid>li{border:none}#buddypress.twentytwentyone .grid>li .list-wrap{border:1px solid var(--global--color-primary);background:0 0}#buddypress.twentytwentyone .grid>li .item-avatar,#buddypress.twentytwentyone .grid>li:not(.mini) .item-avatar{margin-right:auto}
1
+ .is-dark-theme #buddypress.twentytwentyone .avatar{background:var(--global--color-white-90)}@media screen and (max-width:46.8em){#buddypress.twentytwentyone:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentyone .bp-navs li .count{background-color:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:50%;color:var(--button--color-text)}#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentyone .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--global--color-background);border:1px solid var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentyone .bp-navs li:not(.current):not(.selected) a:hover{background:var(--global--color-background);color:var(--global--color-primary);outline-offset:-6px;outline:2px dotted currentColor}#buddypress.twentytwentyone .bp-navs li.current a,#buddypress.twentytwentyone .bp-navs li.current a:focus,#buddypress.twentytwentyone .bp-navs li.current a:hover,#buddypress.twentytwentyone .bp-navs li.selected a,#buddypress.twentytwentyone .bp-navs li.selected a:focus,#buddypress.twentytwentyone .bp-navs li.selected a:hover{color:var(--button--color-text);background-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol,#buddypress.twentytwentyone .bp-navs.tabbed-links ul{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current{border-color:var(--global--color-primary) var(--global--color-primary) var(--global--color-background);border-style:solid;border-top-left-radius:4px;border-top-right-radius:4px}#buddypress.twentytwentyone .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentyone .bp-navs.tabbed-links ul li.current a{color:var(--global--color-primary);background-color:var(--global--color-background)}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentyone #group-invites-container .bp-invites-nav li .count{margin-left:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentyone #group-invites-container #send-invites-editor ul{padding-left:0}#buddypress.twentytwentyone.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .subnav-filters>ul{padding-left:0}#buddypress.twentytwentyone .invitations-options-nav,#buddypress.twentytwentyone .notifications-options-nav{margin-top:1em}#buddypress.twentytwentyone .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentyone .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentyone .bp-pagination{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-list>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list{background:inherit;border-left:none;border-right:none;border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .activity-list.bp-list .activity-item{background:inherit;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentyone .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-right:5%}}#buddypress.twentytwentyone .bp-list li.mini .item-avatar img.avatar{display:block;margin:0 auto;max-width:50px;max-height:50px;margin-bottom:1em}@media screen and (min-width:46.8em){#buddypress.twentytwentyone .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-right:2%}}#buddypress.twentytwentyone .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentyone .bp-list li .item-meta,#buddypress.twentytwentyone .bp-list li .meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .activity-update-form{border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:5px;margin-left:3px;border-radius:0;border-style:dotted;border-width:0;border-left-width:1px;border-right-width:1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--global--color-white-90);color:var(--form--color-text);border-color:var(--form--border-color)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):last-child{border-bottom:dotted 1px}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--global--color-blue)}#buddypress.twentytwentyone .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}body .site #buddypress.twentytwentyone .activity-list .load-more,body .site #buddypress.twentytwentyone .activity-list .load-newest{background-color:var(--button--color-background);color:var(--button--color-text);border:1px solid var(--button--color-background)}body .site #buddypress.twentytwentyone .activity-list .load-more a,body .site #buddypress.twentytwentyone .activity-list .load-newest a{color:var(--button--color-text)}body .site #buddypress.twentytwentyone .activity-list .load-more a:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest a:focus{color:var(--button--color-text-hover);background:0 0;outline-offset:-6px;outline:2px dotted currentColor}body .site #buddypress.twentytwentyone .activity-list .load-more:focus,body .site #buddypress.twentytwentyone .activity-list .load-more:hover,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .load-more:focus a,body .site #buddypress.twentytwentyone .activity-list .load-more:hover a,body .site #buddypress.twentytwentyone .activity-list .load-newest:focus a,body .site #buddypress.twentytwentyone .activity-list .load-newest:hover a{color:var(--button--color-text-hover);background:0 0}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header{color:var(--global--color-secondary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a{font-weight:600}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-header a:hover,body .site #buddypress.twentytwentyone .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-inner,body .site #buddypress.twentytwentyone .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--global--color-primary)}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action{background:inherit}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button:before,body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button{background:var(--global--color-background);color:var(--global--color-primary);border:none}body .site #buddypress.twentytwentyone .activity-list .activity-content .activity-meta.action .button span{color:var(--global--color-secondary)}body.activity-permalink #buddypress.twentytwentyone .activity-list{border:none}body.activity-permalink #buddypress.twentytwentyone .activity-list .activity-avatar img.avatar{background:var(--global--color-white)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-avatar{width:auto;margin-right:0}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentyone .bp-list li .activity-comments .acomment-content{border-left:1px solid var(--global--color-secondary);margin:15px 0 0 5%}#buddypress.twentytwentyone .groups-list li .group-desc{color:var(--global--color-secondary);border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #groups-dir-list .current-group-type{text-align:center}#buddypress.twentytwentyone .members-list li .user-update{border:1px dotted var(--global--color-primary);color:var(--global--color-secondary)}#buddypress.twentytwentyone #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentyone #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}#buddypress.twentytwentyone .single-headers .bp-group-type-list,#buddypress.twentytwentyone .single-headers .bp-member-type-list,#buddypress.twentytwentyone .single-headers .group-status,#buddypress.twentytwentyone .single-headers .item-meta{color:var(--global--color-secondary)}#buddypress.twentytwentyone .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentyone .groups-header .desc-wrap{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentyone .item-body h2.creation-step-name,#buddypress.twentytwentyone .item-body h2.screen-heading{font-size:var(--heading--font-size-h2);letter-spacing:var(--heading--letter-spacing-h2)}#buddypress.twentytwentyone .item-body h3.creation-step-name,#buddypress.twentytwentyone .item-body h3.screen-heading{font-size:var(--heading--font-size-h3);letter-spacing:var(--heading--letter-spacing-h3)}#buddypress.twentytwentyone .item-body h4.creation-step-name,#buddypress.twentytwentyone .item-body h4.screen-heading{font-size:var(--heading--font-size-h4);letter-spacing:var(--heading--letter-spacing-h4)}#buddypress.twentytwentyone .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--global--color-primary);border-bottom:1px solid var(--global--color-background)}#buddypress.twentytwentyone .item-body #drag-drop-area{border:4px dashed var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area .drag-drop-info{color:var(--global--color-secondary)}#buddypress.twentytwentyone .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{background-color:var(--global--color-light-gray);border:none;border-left-width:4px;border-left-style:solid;color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .item-body .bp-avatar-status .warning,#buddypress.twentytwentyone .item-body .bp-cover-image-status .warning{border-left-color:var(--global--color-orange)}#buddypress.twentytwentyone .item-body .bp-avatar-status .success,#buddypress.twentytwentyone .item-body .bp-cover-image-status .success{border-left-color:var(--global--color-green)}#buddypress.twentytwentyone .item-body .bp-avatar-status .error,#buddypress.twentytwentyone .item-body .bp-cover-image-status .error{border-left-color:var(--global--color-red)}.group-settings #buddypress.twentytwentyone .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentyone #group-manage-members-ui .bp-pagination{padding:.4em 0 .4em .5em}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentyone #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--button--color-background)}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentyone #group-manage-members-ui #group-roles-filter label{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 25px 6px 10px}#buddypress.twentytwentyone #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentyone #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--form--border-color)}#buddypress.twentytwentyone .bp-invites-content ul{border-top:none}#buddypress.twentytwentyone .bp-invites-content ul li{border:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--global--color-background);background:var(--global--color-primary);width:32px;height:32px}#buddypress.twentytwentyone .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentyone .profile table.bp-tables-user tr td,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentyone .profile table.profile-fields tr td,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone .profile table.bp-tables-user tr td.label,#buddypress.twentytwentyone .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentyone .profile table.profile-fields tr td.label,#buddypress.twentytwentyone .profile table.profile-fields tr.alt td.label{border-right-color:var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield{background:var(--global--color-background);border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentyone .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentyone .profile.edit .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .profile.edit .button-tabs li{border:solid 2px var(--global--color-primary);overflow:hidden}#buddypress.twentytwentyone .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentyone .profile.edit .button-tabs li.current{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li.current a{color:var(--button--color-text)}#buddypress.twentytwentyone .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentyone .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentyone .profile.edit legend{padding:0}#buddypress.twentytwentyone .field-visibility-settings,#buddypress.twentytwentyone .field-visibility-settings-header{color:var(--global--color-secondary)}#buddypress.twentytwentyone #group-list.invites h2.list-title{float:none}#buddypress.twentytwentyone #group-list.invites .accept{margin-left:0}#buddypress.twentytwentyone #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentyone #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentyone #message-threads{border-top:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li{border-bottom:1px dotted var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.selected{border:1px solid var(--global--color-primary)}#buddypress.twentytwentyone #message-threads>li.unread{border-left:8px solid var(--global--color-yellow)}#buddypress.twentytwentyone #message-threads li .thread-cb{padding-left:15px}#buddypress.twentytwentyone #message-threads li.unread .thread-cb{padding-left:7px}#buddypress.twentytwentyone #message-threads li .thread-from img.avatar,#buddypress.twentytwentyone #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentyone #message-threads li .thread-from .num-recipients,#buddypress.twentytwentyone #message-threads li .thread-to .num-recipients{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-content .excerpt{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li .thread-date time{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li.selected .thread-subject .subject{color:var(--global--color-primary)}#buddypress.twentytwentyone #message-threads li:not(.selected){color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentyone .bp-messages-content #thread-preview h2:first-child{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-messages-content #thread-preview{border-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentyone .bp-messages-content #thread-preview dd{padding-left:0}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentyone .bp-messages-content .single-message-thread-header dd{padding-left:0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:before,#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:before{width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before,#buddypress.twentytwentyone .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before{border-radius:50%;color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentyone .bp-messages-content .actions .message-action-unstar:before{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--global--color-primary);box-shadow:none}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--global--color-secondary)}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:1em}#buddypress.twentytwentyone .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--global--color-primary);border-top:none}#buddypress.twentytwentyone .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentyone .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--global--color-dark-gray);background:var(--global--color-white-90);border-color:var(--global--color-dark-gray)}#buddypress.twentytwentyone .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentyone .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-left-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters button#user_messages_search_submit:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 0 0 10px;padding:3px 5px;background-color:var(--global--color-background);color:var(--button--color-text-hover)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--button--color-background);color:var(--button--color-text)}#buddypress.twentytwentyone .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentyone.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentyone.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentyone fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentyone fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentyone .select-wrap{border:1px solid var(--global--color-primary);background:var(--global--color-white-90)}#buddypress.twentytwentyone .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentyone .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentyone .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--global--color-black);vertical-align:-10%}#buddypress.twentytwentyone .select-wrap:focus .select-arrow:before,#buddypress.twentytwentyone .select-wrap:hover .select-arrow:before{color:var(--global--color-black)}#buddypress.twentytwentyone input[type=checkbox],#buddypress.twentytwentyone input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentyone .groups-members-search input[type=text],#buddypress.twentytwentyone input[type=color],#buddypress.twentytwentyone input[type=date],#buddypress.twentytwentyone input[type=datetime-local],#buddypress.twentytwentyone input[type=datetime],#buddypress.twentytwentyone input[type=email],#buddypress.twentytwentyone input[type=month],#buddypress.twentytwentyone input[type=number],#buddypress.twentytwentyone input[type=password],#buddypress.twentytwentyone input[type=range],#buddypress.twentytwentyone input[type=search],#buddypress.twentytwentyone input[type=tel],#buddypress.twentytwentyone input[type=text],#buddypress.twentytwentyone input[type=time],#buddypress.twentytwentyone input[type=url],#buddypress.twentytwentyone input[type=week],#buddypress.twentytwentyone textarea{color:var(--form--color-text);background:var(--global--color-white-90)}#buddypress.twentytwentyone .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentyone .bp-dir-search-form button,#buddypress.twentytwentyone form#group-members-search button,#buddypress.twentytwentyone form#group_invites_search_form button{background-color:var(--global--color-background);color:var(--button--color-text-hover);border-color:var(--global--color-background);border-left-color:var(--button--color-background)}#buddypress.twentytwentyone .bp-dir-search-form button:hover,#buddypress.twentytwentyone form#group-members-search button:hover,#buddypress.twentytwentyone form#group_invites_search_form button:hover{background-color:var(--button--color-background);color:var(--button--color-text);border-color:var(--button--color-background)}#buddypress.twentytwentyone .standard-form p.description{color:var(--global--primary-color);background-color:var(--global--color-background)}body.bp-user.settings.general #buddypress.twentytwentyone .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentyone [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentyone form#group-members-search,#buddypress.twentytwentyone form.bp-dir-search-form,#buddypress.twentytwentyone form.bp-messages-search-form,#buddypress.twentytwentyone form[data-bp-search].bp-invites-search-form{border:1px solid var(--global--color-primary);background-color:var(--global--color-white-90)}#buddypress.twentytwentyone .bp-tables-user tbody tr,#buddypress.twentytwentyone .bp-tables-user tbody tr.alt,#buddypress.twentytwentyone table.forum tbody tr,#buddypress.twentytwentyone table.forum tbody tr.alt,#buddypress.twentytwentyone table.wp-profile-fields tbody tr,#buddypress.twentytwentyone table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentyone .activity-read-more a,#buddypress.twentytwentyone .comment-reply-link,#buddypress.twentytwentyone .generic-button a,#buddypress.twentytwentyone a.bp-title-button,#buddypress.twentytwentyone a.button,#buddypress.twentytwentyone button,#buddypress.twentytwentyone input[type=button],#buddypress.twentytwentyone input[type=submit],#buddypress.twentytwentyone ul.button-nav:not(.button-tabs) li a{background:var(--button--color-background);border:1px solid var(--button--color-background);border-radius:0;color:var(--button--color-text)}#buddypress.twentytwentyone #bp-messages-reset,#buddypress.twentytwentyone .activity-read-more a:focus,#buddypress.twentytwentyone .activity-read-more a:hover,#buddypress.twentytwentyone .button-nav li a:focus,#buddypress.twentytwentyone .button-nav li a:hover,#buddypress.twentytwentyone .button-nav li.current a,#buddypress.twentytwentyone .comment-reply-link:focus,#buddypress.twentytwentyone .comment-reply-link:hover,#buddypress.twentytwentyone .generic-button a:focus,#buddypress.twentytwentyone .generic-button a:hover,#buddypress.twentytwentyone a.button:focus,#buddypress.twentytwentyone a.button:hover,#buddypress.twentytwentyone button:focus,#buddypress.twentytwentyone button:hover,#buddypress.twentytwentyone input[type=button]:focus,#buddypress.twentytwentyone input[type=button]:hover,#buddypress.twentytwentyone input[type=reset],#buddypress.twentytwentyone input[type=submit]:focus,#buddypress.twentytwentyone input[type=submit]:hover{background:0 0;border-color:var(--button--color-background);color:var(--button--color-text-hover);outline:0;text-decoration:none}#buddypress.twentytwentyone #bp-messages-reset:focus,#buddypress.twentytwentyone #bp-messages-reset:hover,#buddypress.twentytwentyone input[type=reset]:focus,#buddypress.twentytwentyone input[type=reset]:hover{outline-offset:-1px;outline:2px dotted currentColor}#buddypress.twentytwentyone a.disabled,#buddypress.twentytwentyone a.disabled:hover button.pending,#buddypress.twentytwentyone button.disabled,#buddypress.twentytwentyone button.disabled:hover,#buddypress.twentytwentyone button.pending:hover,#buddypress.twentytwentyone div.pending a,#buddypress.twentytwentyone div.pending a:hover,#buddypress.twentytwentyone input[type=button].disabled,#buddypress.twentytwentyone input[type=button].pending,#buddypress.twentytwentyone input[type=button]:hover.disabled,#buddypress.twentytwentyone input[type=button]:hover.pending,#buddypress.twentytwentyone input[type=reset].disabled,#buddypress.twentytwentyone input[type=reset].pending,#buddypress.twentytwentyone input[type=reset]:hover.disabled,#buddypress.twentytwentyone input[type=reset]:hover.pending,#buddypress.twentytwentyone input[type=submit].pending,#buddypress.twentytwentyone input[type=submit]:disabled,#buddypress.twentytwentyone input[type=submit]:hover.disabled,#buddypress.twentytwentyone input[type=submit]:hover.pending,#buddypress.twentytwentyone input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentyone .blog-button:after,#buddypress.twentytwentyone .blog-button:before{display:none}#buddypress.twentytwentyone .create-button a:focus,#buddypress.twentytwentyone .create-button a:hover{text-decoration:none}#buddypress.twentytwentyone.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--button--color-text);background-color:var(--button--color-background);border-radius:var(--button--border-radius);border:var(--button--border-width) solid var(--button--color-background);background-clip:border-box}#buddypress.twentytwentyone .warn{color:var(--global--color-primary);font-weight:600}#buddypress.twentytwentyone .bp-feedback{color:var(--global--color-primary);background:var(--global--color-background);box-shadow:none}#buddypress.twentytwentyone .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback .bp-icon{background-color:var(--global--color-primary);color:var(--button--color-text)}#buddypress.twentytwentyone .bp-feedback a{border-bottom:solid 1px var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--global--color-primary);background:var(--global--color-background)}#buddypress.twentytwentyone .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--global--color-background);background:var(--global--color-primary)}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;right:15px}#buddypress.twentytwentyone .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentyone #group-create-body .bp-cover-image-status p.warning{background-color:var(--global--color-light-gray);border:none;border-left-width:4px;border-left-style:solid;border-left-color:var(--global--color-orange);color:var(--global--color-dark-gray);box-shadow:none}body.buddypress .site #buddypress.twentytwentyone .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--button--color-background);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentyone.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--global--color-background)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--global--color-background);border-left:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--global--color-primary)}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentyone.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--global--color-primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentyone .grid.bp-list{border-top:none}#buddypress.twentytwentyone .grid>li{border:none}#buddypress.twentytwentyone .grid>li .list-wrap{border:1px solid var(--global--color-primary);background:0 0}#buddypress.twentytwentyone .grid>li .item-avatar,#buddypress.twentytwentyone .grid>li:not(.mini) .item-avatar{margin-right:auto}
bp-templates/bp-nouveau/includes/groups/ajax.php CHANGED
@@ -283,6 +283,22 @@ function bp_nouveau_ajax_get_users_to_invite() {
283
  wp_send_json_error( $response );
284
  }
285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
286
  $request = bp_parse_args(
287
  $_POST,
288
  array(
283
  wp_send_json_error( $response );
284
  }
285
 
286
+ if ( ! bp_is_group_create() && ! bp_groups_user_can_send_invites( bp_get_current_group_id(), bp_loggedin_user_id() ) ) {
287
+ $invite_status = bp_group_get_invite_status( bp_get_current_group_id() );
288
+ if ( 'admins' === $invite_status ) {
289
+ $message = __( 'Inviting members to join this group is restricted to Group Administrators.', 'buddypress' );
290
+ } else {
291
+ $message = __( 'Inviting members to join this group is restricted to Group Moderators and Administrators.', 'buddypress' );
292
+ }
293
+
294
+ wp_send_json_error(
295
+ array(
296
+ 'feedback' => $message,
297
+ 'type' => 'error',
298
+ )
299
+ );
300
+ }
301
+
302
  $request = bp_parse_args(
303
  $_POST,
304
  array(
bp-templates/bp-nouveau/includes/groups/functions.php CHANGED
@@ -199,26 +199,37 @@ function bp_nouveau_groups_get_inviter_ids( $user_id, $group_id ) {
199
  * @since 3.0.0
200
  */
201
  function bp_nouveau_prepare_group_potential_invites_for_js( $user ) {
202
- $bp = buddypress();
 
 
 
 
203
 
204
  $response = array(
205
- 'id' => intval( $user->ID ),
206
- 'name' => $user->display_name,
207
- 'avatar' => htmlspecialchars_decode( bp_core_fetch_avatar( array(
208
- 'item_id' => $user->ID,
209
- 'object' => 'user',
210
- 'type' => 'thumb',
211
- 'width' => 50,
212
- 'height' => 50,
213
- 'html' => false )
214
- ) ),
 
 
 
 
 
 
 
 
215
  );
216
 
217
  // Do extra queries only if needed
218
- if ( ! empty( $bp->groups->invites_scope ) && 'invited' === $bp->groups->invites_scope ) {
219
- $response['is_sent'] = (bool) groups_check_user_has_invite( $user->ID, bp_get_current_group_id() );
220
-
221
- $inviter_ids = bp_nouveau_groups_get_inviter_ids( $user->ID, bp_get_current_group_id() );
222
 
223
  foreach ( $inviter_ids as $inviter_id ) {
224
  $class = false;
@@ -228,25 +239,25 @@ function bp_nouveau_prepare_group_potential_invites_for_js( $user ) {
228
  }
229
 
230
  $response['invited_by'][] = array(
231
- 'avatar' => htmlspecialchars_decode( bp_core_fetch_avatar( array(
232
- 'item_id' => $inviter_id,
233
- 'object' => 'user',
234
- 'type' => 'thumb',
235
- 'width' => 50,
236
- 'height' => 50,
237
- 'html' => false,
238
- 'class' => $class,
239
- ) ) ),
 
 
 
 
240
  'user_link' => bp_core_get_userlink( $inviter_id, false, true ),
241
  'user_name' => bp_core_get_username( $inviter_id ),
242
  );
243
  }
244
 
245
- if ( bp_is_item_admin() ) {
246
- $response['can_edit'] = true;
247
- } else {
248
- $response['can_edit'] = in_array( bp_loggedin_user_id(), $inviter_ids, true );
249
- }
250
  }
251
 
252
  /**
@@ -1211,7 +1222,7 @@ function bp_nouveau_group_get_core_manage_screens( $id = '' ) {
1211
  $screens = array(
1212
  'edit-details' => array( 'hook' => 'group_details_admin', 'nonce' => 'groups_edit_group_details' ),
1213
  'group-settings' => array( 'hook' => 'group_settings_admin', 'nonce' => 'groups_edit_group_settings' ),
1214
- 'group-avatar' => array(),
1215
  'group-cover-image' => array( 'hook' => 'group_settings_cover_image', 'nonce' => '' ),
1216
  'manage-members' => array( 'hook' => 'group_manage_members_admin', 'nonce' => '' ),
1217
  'membership-requests' => array( 'hook' => 'group_membership_requests_admin', 'nonce' => '' ),
199
  * @since 3.0.0
200
  */
201
  function bp_nouveau_prepare_group_potential_invites_for_js( $user ) {
202
+ $bp = buddypress();
203
+ $scope = '';
204
+ if ( isset( $bp->groups->invites_scope ) ) {
205
+ $scope = $bp->groups->invites_scope;
206
+ }
207
 
208
  $response = array(
209
+ 'id' => intval( $user->ID ),
210
+ 'name' => $user->display_name,
211
+ 'avatar' => htmlspecialchars_decode(
212
+ bp_core_fetch_avatar(
213
+ array(
214
+ 'item_id' => $user->ID,
215
+ 'object' => 'user',
216
+ 'type' => 'thumb',
217
+ 'width' => 50,
218
+ 'height' => 50,
219
+ 'html' => false
220
+ )
221
+ )
222
+ ),
223
+ 'scope' => $scope,
224
+ 'is_sent' => false,
225
+ 'invited_by' => array(),
226
+ 'can_invite' => 'invited' !== $scope,
227
  );
228
 
229
  // Do extra queries only if needed
230
+ if ( 'invited' === $scope ) {
231
+ $response['is_sent'] = (bool) groups_check_user_has_invite( $user->ID, bp_get_current_group_id() );
232
+ $inviter_ids = bp_nouveau_groups_get_inviter_ids( $user->ID, bp_get_current_group_id() );
 
233
 
234
  foreach ( $inviter_ids as $inviter_id ) {
235
  $class = false;
239
  }
240
 
241
  $response['invited_by'][] = array(
242
+ 'avatar' => htmlspecialchars_decode(
243
+ bp_core_fetch_avatar(
244
+ array(
245
+ 'item_id' => $inviter_id,
246
+ 'object' => 'user',
247
+ 'type' => 'thumb',
248
+ 'width' => 50,
249
+ 'height' => 50,
250
+ 'html' => false,
251
+ 'class' => $class,
252
+ )
253
+ )
254
+ ),
255
  'user_link' => bp_core_get_userlink( $inviter_id, false, true ),
256
  'user_name' => bp_core_get_username( $inviter_id ),
257
  );
258
  }
259
 
260
+ $response['can_edit'] = bp_is_item_admin() || in_array( bp_loggedin_user_id(), $inviter_ids, true );
 
 
 
 
261
  }
262
 
263
  /**
1222
  $screens = array(
1223
  'edit-details' => array( 'hook' => 'group_details_admin', 'nonce' => 'groups_edit_group_details' ),
1224
  'group-settings' => array( 'hook' => 'group_settings_admin', 'nonce' => 'groups_edit_group_settings' ),
1225
+ 'group-avatar' => array( 'hook' => 'group_settings_avatar', 'nonce' => '' ),
1226
  'group-cover-image' => array( 'hook' => 'group_settings_cover_image', 'nonce' => '' ),
1227
  'manage-members' => array( 'hook' => 'group_manage_members_admin', 'nonce' => '' ),
1228
  'membership-requests' => array( 'hook' => 'group_membership_requests_admin', 'nonce' => '' ),
bp-templates/bp-nouveau/includes/groups/template-tags.php CHANGED
@@ -3,7 +3,7 @@
3
  * Groups Template tags
4
  *
5
  * @since 3.0.0
6
- * @version 9.0.0
7
  */
8
 
9
  // Exit if accessed directly.
@@ -156,6 +156,46 @@ function bp_nouveau_groups_activity_post_form() {
156
  do_action( 'bp_after_group_activity_post_form' );
157
  }
158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  /**
160
  * Load the Group Invites UI.
161
  *
@@ -171,7 +211,21 @@ function bp_nouveau_group_invites_interface() {
171
  */
172
  do_action( 'bp_before_group_send_invites_content' );
173
 
174
- bp_get_template_part( 'common/js-templates/invites/index' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
175
 
176
  /**
177
  * Fires after the send invites content.
3
  * Groups Template tags
4
  *
5
  * @since 3.0.0
6
+ * @version 10.0.0
7
  */
8
 
9
  // Exit if accessed directly.
156
  do_action( 'bp_after_group_activity_post_form' );
157
  }
158
 
159
+ /**
160
+ * Prints the JS Templates to invite new members to join the Group.
161
+ *
162
+ * @since 10.0.0
163
+ */
164
+ function bp_nouveau_group_print_invites_templates() {
165
+ bp_get_template_part( 'common/js-templates/invites/index' );
166
+ }
167
+
168
+ /**
169
+ * Prints the HTML placeholders to invite new members to join the Group.
170
+ *
171
+ * @since 10.0.0
172
+ */
173
+ function bp_nouveau_group_print_invites_placeholders() {
174
+ if ( bp_is_group_create() ) : ?>
175
+
176
+ <h3 class="bp-screen-title creation-step-name">
177
+ <?php esc_html_e( 'Invite Members', 'buddypress' ); ?>
178
+ </h3>
179
+
180
+ <?php else : ?>
181
+
182
+ <h2 class="bp-screen-title">
183
+ <?php esc_html_e( 'Invite Members', 'buddypress' ); ?>
184
+ </h2>
185
+
186
+ <?php endif; ?>
187
+
188
+ <div id="group-invites-container">
189
+ <nav class="<?php bp_nouveau_single_item_subnav_classes(); ?>" id="subnav" role="navigation" aria-label="<?php esc_attr_e( 'Group invitations menu', 'buddypress' ); ?>"></nav>
190
+ <div class="group-invites-column">
191
+ <div class="subnav-filters group-subnav-filters bp-invites-filters"></div>
192
+ <div class="bp-invites-feedback"></div>
193
+ <div class="members bp-invites-content"></div>
194
+ </div>
195
+ </div>
196
+ <?php
197
+ }
198
+
199
  /**
200
  * Load the Group Invites UI.
201
  *
211
  */
212
  do_action( 'bp_before_group_send_invites_content' );
213
 
214
+ /**
215
+ * Get the templates to manage Group Members using the BP REST API.
216
+ *
217
+ * @since 10.0.0 Hook to the `wp_footer` action to print the JS templates.
218
+ */
219
+ add_action( 'wp_footer', 'bp_nouveau_group_print_invites_templates' );
220
+ bp_nouveau_group_print_invites_placeholders();
221
+
222
+ /**
223
+ * Private hook to preserve backward compatibility with plugins needing the above placeholders to be located
224
+ * into: `bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php`.
225
+ *
226
+ * @since 10.0.0
227
+ */
228
+ do_action( '_bp_nouveau_group_print_invites_placeholders' );
229
 
230
  /**
231
  * Fires after the send invites content.
bp-templates/bp-nouveau/includes/messages/ajax.php CHANGED
@@ -3,7 +3,7 @@
3
  * Messages Ajax functions
4
  *
5
  * @since 3.0.0
6
- * @version 8.0.0
7
  */
8
 
9
  // Exit if accessed directly.
@@ -11,17 +11,78 @@ defined( 'ABSPATH' ) || exit;
11
 
12
  add_action( 'admin_init', function() {
13
  $ajax_actions = array(
14
- array( 'messages_send_message' => array( 'function' => 'bp_nouveau_ajax_messages_send_message', 'nopriv' => false ) ),
15
- array( 'messages_send_reply' => array( 'function' => 'bp_nouveau_ajax_messages_send_reply', 'nopriv' => false ) ),
16
- array( 'messages_get_user_message_threads' => array( 'function' => 'bp_nouveau_ajax_get_user_message_threads', 'nopriv' => false ) ),
17
- array( 'messages_thread_read' => array( 'function' => 'bp_nouveau_ajax_messages_thread_read', 'nopriv' => false ) ),
18
- array( 'messages_get_thread_messages' => array( 'function' => 'bp_nouveau_ajax_get_thread_messages', 'nopriv' => false ) ),
19
- array( 'messages_delete' => array( 'function' => 'bp_nouveau_ajax_delete_thread_messages', 'nopriv' => false ) ),
20
- array( 'messages_unstar' => array( 'function' => 'bp_nouveau_ajax_star_thread_messages', 'nopriv' => false ) ),
21
- array( 'messages_star' => array( 'function' => 'bp_nouveau_ajax_star_thread_messages', 'nopriv' => false ) ),
22
- array( 'messages_unread' => array( 'function' => 'bp_nouveau_ajax_readunread_thread_messages', 'nopriv' => false ) ),
23
- array( 'messages_read' => array( 'function' => 'bp_nouveau_ajax_readunread_thread_messages', 'nopriv' => false ) ),
24
- array( 'messages_dismiss_sitewide_notice' => array( 'function' => 'bp_nouveau_ajax_dismiss_sitewide_notice', 'nopriv' => false ) ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  );
26
 
27
  foreach ( $ajax_actions as $ajax_action ) {
@@ -780,3 +841,38 @@ function bp_nouveau_ajax_dismiss_sitewide_notice() {
780
  ) );
781
  }
782
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  * Messages Ajax functions
4
  *
5
  * @since 3.0.0
6
+ * @version 10.0.0
7
  */
8
 
9
  // Exit if accessed directly.
11
 
12
  add_action( 'admin_init', function() {
13
  $ajax_actions = array(
14
+ array(
15
+ 'messages_send_message' => array(
16
+ 'function' => 'bp_nouveau_ajax_messages_send_message',
17
+ 'nopriv' => false,
18
+ ),
19
+ ),
20
+ array(
21
+ 'messages_send_reply' => array(
22
+ 'function' => 'bp_nouveau_ajax_messages_send_reply',
23
+ 'nopriv' => false,
24
+ ),
25
+ ),
26
+ array(
27
+ 'messages_get_user_message_threads' => array(
28
+ 'function' => 'bp_nouveau_ajax_get_user_message_threads',
29
+ 'nopriv' => false,
30
+ ),
31
+ ),
32
+ array(
33
+ 'messages_thread_read' => array(
34
+ 'function' => 'bp_nouveau_ajax_messages_thread_read',
35
+ 'nopriv' => false,
36
+ ),
37
+ ),
38
+ array(
39
+ 'messages_get_thread_messages' => array(
40
+ 'function' => 'bp_nouveau_ajax_get_thread_messages',
41
+ 'nopriv' => false,
42
+ ),
43
+ ),
44
+ array(
45
+ 'messages_delete' => array(
46
+ 'function' => 'bp_nouveau_ajax_delete_thread_messages',
47
+ 'nopriv' => false,
48
+ ),
49
+ ),
50
+ array(
51
+ 'messages_exit' => array(
52
+ 'function' => 'bp_nouveau_ajax_exit_thread_messages',
53
+ 'nopriv' => false,
54
+ ),
55
+ ),
56
+ array(
57
+ 'messages_unstar' => array(
58
+ 'function' => 'bp_nouveau_ajax_star_thread_messages',
59
+ 'nopriv' => false,
60
+ ),
61
+ ),
62
+ array(
63
+ 'messages_star' => array(
64
+ 'function' => 'bp_nouveau_ajax_star_thread_messages',
65
+ 'nopriv' => false,
66
+ ),
67
+ ),
68
+ array(
69
+ 'messages_unread' => array(
70
+ 'function' => 'bp_nouveau_ajax_readunread_thread_messages',
71
+ 'nopriv' => false,
72
+ ),
73
+ ),
74
+ array(
75
+ 'messages_read' => array(
76
+ 'function' => 'bp_nouveau_ajax_readunread_thread_messages',
77
+ 'nopriv' => false,
78
+ ),
79
+ ),
80
+ array(
81
+ 'messages_dismiss_sitewide_notice' => array(
82
+ 'function' => 'bp_nouveau_ajax_dismiss_sitewide_notice',
83
+ 'nopriv' => false,
84
+ ),
85
+ ),
86
  );
87
 
88
  foreach ( $ajax_actions as $ajax_action ) {
841
  ) );
842
  }
843
  }
844
+
845
+ /**
846
+ * Ajax Handler of the exit action.
847
+ *
848
+ * @since 10.0.0
849
+ */
850
+ function bp_nouveau_ajax_exit_thread_messages() {
851
+ $response = array(
852
+ 'feedback' => __( 'There was a problem exiting the conversation. Please try again.', 'buddypress' ),
853
+ 'type' => 'error',
854
+ );
855
+
856
+ if ( empty( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'bp_nouveau_messages' ) ) {
857
+ wp_send_json_error( $response );
858
+ }
859
+
860
+ if ( empty( $_POST['id'] ) ) {
861
+ wp_send_json_error( $response );
862
+ }
863
+
864
+ $thread_ids = wp_parse_id_list( $_POST['id'] );
865
+
866
+ foreach ( $thread_ids as $thread_id ) {
867
+ if ( ! messages_check_thread_access( $thread_id ) && ! bp_current_user_can( 'bp_moderate' ) ) {
868
+ wp_send_json_error( $response );
869
+ }
870
+
871
+ bp_messages_exit_thread( $thread_id );
872
+ }
873
+
874
+ wp_send_json_success( array(
875
+ 'feedback' => __( 'You have left the message thread.', 'buddypress' ),
876
+ 'type' => 'success',
877
+ ) );
878
+ }
bp-templates/bp-nouveau/includes/template-tags.php CHANGED
@@ -2370,6 +2370,10 @@ function bp_nouveau_signup_form( $section = 'account_details' ) {
2370
  if ( 'signup_password' === $name ) {
2371
  ?>
2372
  <label for="pass1"><?php esc_html_e( 'Choose a Password (required)', 'buddypress' ); ?></label>
 
 
 
 
2373
  <div class="user-pass1-wrap">
2374
  <div class="wp-pwd">
2375
  <div class="password-input-wrapper">
2370
  if ( 'signup_password' === $name ) {
2371
  ?>
2372
  <label for="pass1"><?php esc_html_e( 'Choose a Password (required)', 'buddypress' ); ?></label>
2373
+ <?php if ( isset( buddypress()->signup->errors['signup_password'] ) ) :
2374
+ nouveau_error_template( buddypress()->signup->errors['signup_password'] );
2375
+ endif; ?>
2376
+
2377
  <div class="user-pass1-wrap">
2378
  <div class="wp-pwd">
2379
  <div class="password-input-wrapper">
bp-templates/bp-nouveau/js/buddypress-messages.js CHANGED
@@ -978,7 +978,7 @@ window.bp = window.bp || {};
978
 
979
  bp.Nouveau.Messages.displayFeedback( response.feedback, response.type );
980
 
981
- if ( 'delete' === action || ( 'starred' === self.collection.options.box && 'unstar' === action ) ) {
982
  // Remove from the list of messages.
983
  self.collection.remove( model.get( 'id' ) );
984
 
@@ -1089,7 +1089,7 @@ window.bp = window.bp || {};
1089
 
1090
  bp.Nouveau.Messages.displayFeedback( response.feedback, response.type );
1091
 
1092
- if ( 'delete' === action || ( 'starred' === self.collection.options.box && 'unstar' === action ) ) {
1093
  // Remove from the list of messages.
1094
  self.collection.remove( thread_ids );
1095
 
@@ -1241,7 +1241,7 @@ window.bp = window.bp || {};
1241
 
1242
  bp.Nouveau.Messages.threads.doAction( action, this.model.get( 'id' ), options ).done( function( response ) {
1243
  // Remove all views
1244
- if ( 'delete' === action ) {
1245
  bp.Nouveau.Messages.clearViews();
1246
  } else if ( response.messages ) {
1247
  self.model.set( _.first( response.messages ) );
978
 
979
  bp.Nouveau.Messages.displayFeedback( response.feedback, response.type );
980
 
981
+ if ( 'delete' === action || 'exit' === action || ( 'starred' === self.collection.options.box && 'unstar' === action ) ) {
982
  // Remove from the list of messages.
983
  self.collection.remove( model.get( 'id' ) );
984
 
1089
 
1090
  bp.Nouveau.Messages.displayFeedback( response.feedback, response.type );
1091
 
1092
+ if ( 'delete' === action || 'exit' === action || ( 'starred' === self.collection.options.box && 'unstar' === action ) ) {
1093
  // Remove from the list of messages.
1094
  self.collection.remove( thread_ids );
1095
 
1241
 
1242
  bp.Nouveau.Messages.threads.doAction( action, this.model.get( 'id' ), options ).done( function( response ) {
1243
  // Remove all views
1244
+ if ( 'delete' === action || 'exit' === action ) {
1245
  bp.Nouveau.Messages.clearViews();
1246
  } else if ( response.messages ) {
1247
  self.model.set( _.first( response.messages ) );
bp-templates/bp-nouveau/js/buddypress-messages.min.js CHANGED
@@ -1 +1 @@
1
- window.wp=window.wp||{},window.bp=window.bp||{},function(c,u){"undefined"!=typeof BP_Nouveau&&(_.extend(c,_.pick(wp,"Backbone","ajax","template")),c.Models=c.Models||{},c.Collections=c.Collections||{},c.Views=c.Views||{},c.Nouveau=c.Nouveau||{},c.Nouveau.Messages={start:function(){this.views=new Backbone.Collection,this.threads=new c.Collections.Threads,this.messages=new c.Collections.Messages,this.router=new c.Nouveau.Messages.Router,this.box="inbox",this.setupNav(),Backbone.history.start({pushState:!0,root:BP_Nouveau.messages.rootUrl})},setupNav:function(){var t=this;u("#compose-personal-li").addClass("last"),u("#subnav a").on("click",function(e){var s=u(e.target).prop("id");if(-1===_.indexOf(["inbox","starred","sentbox","compose"],s)||"unsupported"===t.box)return e;e.preventDefault(),t.removeTinyMCE(),"compose"===s?_.isUndefined(t.views.get("compose"))?t.router.navigate("compose/",{trigger:!0}):((e=t.views.get("compose")).get("view").remove(),t.views.remove({id:"compose",view:e}),"single"===t.box&&(t.box="inbox"),t.router.navigate(t.box+"/",{trigger:!0})):t.box===s&&_.isUndefined(t.views.get("compose"))||(t.clearViews(),t.router.navigate(s+"/",{trigger:!0}))})},removeTinyMCE:function(){"undefined"!=typeof tinymce&&null!==tinymce.get("message_content")&&tinymce.EditorManager.execCommand("mceRemoveEditor",!0,"message_content")},tinyMCEinit:function(){void 0===window.tinyMCE||null===window.tinyMCE.activeEditor||void 0===window.tinyMCE.activeEditor||_.isEmpty(c.mentions)||u(window.tinyMCE.activeEditor.contentDocument.activeElement).atwho("setIframe",u("#message_content_ifr")[0]).bp_mentions({data:[],suffix:" "})},removeFeedback:function(){var e;_.isUndefined(this.views.get("feedback"))||((e=this.views.get("feedback")).get("view").remove(),this.views.remove({id:"feedback",view:e}))},displayFeedback:function(e,s){this.removeFeedback(),e&&(s=new c.Views.Feedback({value:e,type:s||"info"}),this.views.add({id:"feedback",view:s}),s.inject(".bp-messages-feedback"))},clearViews:function(){_.isUndefined(this.views.models)||(_.each(this.views.models,function(e){e.get("view").remove()},this),this.views.reset())},composeView:function(){this.clearViews();var e=new c.Views.messageForm({model:new c.Models.Message});this.views.add({id:"compose",view:e}),e.inject(".bp-messages-content")},threadsView:function(){u("#subnav ul li").each(function(e,s){u(s).removeClass("current selected")}),u("#subnav a#"+this.box).closest("li").addClass("current selected");var e=new c.Views.userThreads({collection:this.threads,box:this.box});this.views.add({id:"threads",view:e}),e.inject(".bp-messages-content"),this.displayFilters(this.threads)},displayFilters:function(e){this.filters=new Backbone.Model({page:1,total_page:0,search_terms:"",box:this.box}),e=new c.Views.messageFilters({model:this.filters,threads:e}),this.views.add({id:"filters",view:e}),e.inject(".bp-messages-filters")},singleView:function(e){this.clearViews(),this.box="single";e=new c.Views.userMessages({collection:this.messages,thread:e});this.views.add({id:"single",view:e}),e.inject(".bp-messages-content")}},c.Models.Message=Backbone.Model.extend({defaults:{send_to:[],subject:"",message_content:"",meta:{}},sendMessage:function(){if(!0!==this.get("sending")){this.set("sending",!0,{silent:!0});var e=c.ajax.post("messages_send_message",_.extend({nonce:BP_Nouveau.messages.nonces.send},this.attributes));return this.set("sending",!1,{silent:!0}),e}}}),c.Models.Thread=Backbone.Model.extend({defaults:{id:0,message_id:0,subject:"",excerpt:"",content:"",unread:!0,sender_name:"",sender_link:"",sender_avatar:"",count:0,date:0,display_date:"",recipients:[]},updateReadState:function(e){return(e=e||{}).data=_.extend(_.pick(this.attributes,["id","message_id"]),{action:"messages_thread_read",nonce:BP_Nouveau.nonces.messages}),c.ajax.send(e)}}),c.Models.messageThread=Backbone.Model.extend({defaults:{id:0,content:"",sender_id:0,sender_name:"",sender_link:"",sender_avatar:"",date:0,display_date:""}}),c.Collections.Threads=Backbone.Collection.extend({model:c.Models.Thread,initialize:function(){this.options={page:1,total_page:0}},sync:function(e,s,t){if((t=t||{}).context=this,t.data=t.data||{},t.data.nonce=BP_Nouveau.nonces.messages,"read"===e)return t.data=_.extend(t.data,{action:"messages_get_user_message_threads"}),c.ajax.send(t)},parse:function(t){return _.isArray(t.threads)||(t.threads=[t.threads]),_.each(t.threads,function(e,s){_.isNull(e)||(t.threads[s].id=e.id,t.threads[s].message_id=e.message_id,t.threads[s].subject=e.subject,t.threads[s].excerpt=e.excerpt,t.threads[s].content=e.content,t.threads[s].unread=e.unread,t.threads[s].sender_name=e.sender_name,t.threads[s].sender_link=e.sender_link,t.threads[s].sender_avatar=e.sender_avatar,t.threads[s].count=e.count,t.threads[s].date=new Date(e.date),t.threads[s].display_date=e.display_date,t.threads[s].recipients=e.recipients,t.threads[s].star_link=e.star_link,t.threads[s].is_starred=e.is_starred)}),_.isUndefined(t.meta)||(this.options.page=t.meta.page,this.options.total_page=t.meta.total_page),c.Nouveau.Messages.box&&(this.options.box=c.Nouveau.Messages.box),_.isUndefined(t.extraContent)||_.extend(this.options,_.pick(t.extraContent,["beforeLoop","afterLoop"])),t.threads},doAction:function(e,s,t){return(t=t||{}).context=this,t.data=t.data||{},t.data=_.extend(t.data,{action:"messages_"+e,nonce:BP_Nouveau.nonces.messages,id:s}),c.ajax.send(t)}}),c.Collections.Messages=Backbone.Collection.extend({model:c.Models.messageThread,options:{},sync:function(e,s,t){return(t=t||{}).context=this,t.data=t.data||{},t.data.nonce=BP_Nouveau.nonces.messages,"read"===e?(t.data=_.extend(t.data,{action:"messages_get_thread_messages"}),c.ajax.send(t)):"create"===e?(t.data=_.extend(t.data,{action:"messages_send_reply",nonce:BP_Nouveau.messages.nonces.send},s||{}),c.ajax.send(t)):void 0},parse:function(t){return _.isArray(t.messages)||(t.messages=[t.messages]),_.each(t.messages,function(e,s){_.isNull(e)||(t.messages[s].id=e.id,t.messages[s].content=e.content,t.messages[s].sender_id=e.sender_id,t.messages[s].sender_name=e.sender_name,t.messages[s].sender_link=e.sender_link,t.messages[s].sender_avatar=e.sender_avatar,t.messages[s].date=new Date(e.date),t.messages[s].display_date=e.display_date,t.messages[s].star_link=e.star_link,t.messages[s].is_starred=e.is_starred)}),_.isUndefined(t.thread)||(this.options.thread_id=t.thread.id,this.options.thread_subject=t.thread.subject,this.options.recipients=t.thread.recipients),t.messages}}),c.Nouveau.Messages.View=c.Backbone.View.extend({inject:function(e){this.render(),u(e).html(this.el),this.views.ready()},prepare:function(){return!_.isUndefined(this.model)&&_.isFunction(this.model.toJSON)?this.model.toJSON():{}}}),c.Views.Feedback=c.Nouveau.Messages.View.extend({tagName:"div",className:"bp-messages bp-user-messages-feedback",template:c.template("bp-messages-feedback"),initialize:function(){this.model=new Backbone.Model({type:this.options.type||"info",message:this.options.value})}}),c.Views.Hook=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-messages-hook"),initialize:function(){this.model=new Backbone.Model({extraContent:this.options.extraContent}),this.el.className="bp-messages-hook",this.options.className&&(this.el.className+=" "+this.options.className)}}),c.Views.messageEditor=c.Nouveau.Messages.View.extend({template:c.template("bp-messages-editor"),initialize:function(){this.on("ready",this.activateTinyMce,this)},activateTinyMce:function(){"undefined"!=typeof tinymce&&tinymce.EditorManager.execCommand("mceAddEditor",!0,"message_content")}}),c.Views.messageForm=c.Nouveau.Messages.View.extend({tagName:"form",id:"send_message_form",className:"standard-form",template:c.template("bp-messages-form"),events:{"click #bp-messages-send":"sendMessage","click #bp-messages-reset":"resetForm"},initialize:function(){this.resetModel=this.model.clone(),this.views.add("#bp-message-content",new c.Views.messageEditor),this.model.on("change",this.resetFields,this),this.on("ready",this.addMentions,this)},addMentions:function(){var e=u(this.el).find("#send-to-input"),s=c.Nouveau.getLinkParams(null,"r")||null;e.bp_mentions({data:[],suffix:" "}),_.isNull(s)||(e.val("@"+_.escape(s)+" "),e.focus())},resetFields:function(e){_.each(e.previousAttributes(),function(e,s){"message_content"===s?void 0!==tinyMCE.activeEditor&&null!==tinyMCE.activeEditor&&tinyMCE.activeEditor.setContent(""):"meta"!==s&&!1!==e&&u('input[name="'+s+'"]').val("")}),u(this.el).trigger("message:reset",_.pick(e.previousAttributes(),"meta"))},sendMessage:function(e){var t={},a=[],s=this;if(e.preventDefault(),c.Nouveau.Messages.removeFeedback(),_.each(this.$el.serializeArray(),function(e){var s;e.name=e.name.replace("[]",""),-1===_.indexOf(["send_to","subject","message_content"],e.name)?_.isUndefined(t[e.name])?t[e.name]=e.value:(_.isArray(t[e.name])||(t[e.name]=[t[e.name]]),t[e.name].push(e.value)):"send_to"===e.name?(s=e.value.match(/(^|[^@\w\-])@([a-zA-Z0-9_\-]{1,50})\b/g))?((s=s.map(function(e){return e=e.trim()}))&&_.isArray(s)||a.push("send_to"),this.model.set("send_to",s,{silent:!0})):a.push("send_to"):("message_content"===e.name&&void 0!==tinyMCE.activeEditor&&(e.value=tinyMCE.activeEditor.getContent()),e.value?this.model.set(e.name,e.value,{silent:!0}):a.push(e.name))},this),a.length){var i="";return _.each(a,function(e){i+=BP_Nouveau.messages.errors[e]+"<br/>"}),void c.Nouveau.Messages.displayFeedback(i,"error")}this.model.set("meta",t,{silent:!0}),this.model.sendMessage().done(function(e){s.model.set(s.resetModel),c.Nouveau.Messages.displayFeedback(e.feedback,e.type),c.Nouveau.Messages.removeTinyMCE();e=c.Nouveau.Messages.views.get("compose");e.get("view").remove(),c.Nouveau.Messages.views.remove({id:"compose",view:e}),c.Nouveau.Messages.router.navigate("sentbox/",{trigger:!0})}).fail(function(e){e.feedback&&c.Nouveau.Messages.displayFeedback(e.feedback,e.type)})},resetForm:function(e){e.preventDefault(),this.model.set(this.resetModel)}}),c.Views.userThreads=c.Nouveau.Messages.View.extend({tagName:"div",events:{"click .subject":"changePreview"},initialize:function(){var e=[new c.Nouveau.Messages.View({tagName:"ul",id:"message-threads",className:"message-lists"}),new c.Views.previewThread({collection:this.collection})];_.each(e,function(e){this.views.add(e)},this),this.requestThreads(),this.collection.on("reset",this.cleanContent,this),this.collection.on("add",this.addThread,this)},requestThreads:function(){this.collection.reset(),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.loading,"loading"),this.collection.fetch({data:_.pick(this.options,"box"),success:_.bind(this.threadsFetched,this),error:this.threadsFetchError})},threadsFetched:function(){c.Nouveau.Messages.removeFeedback(),this.collection.options.afterLoop&&this.views.add(new c.Views.Hook({extraContent:this.collection.options.afterLoop,className:"after-messages-loop"}),{at:1}),this.collection.options.beforeLoop&&this.views.add(new c.Views.Hook({extraContent:this.collection.options.beforeLoop,className:"before-messages-loop"}),{at:0}),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.howto,"info")},threadsFetchError:function(e,s){c.Nouveau.Messages.displayFeedback(s.feedback,s.type)},cleanContent:function(){_.each(this.views._views["#message-threads"],function(e){e.remove()})},addThread:function(e){var s=this.collection.findWhere({active:!0});_.isUndefined(s)&&e.set("active",!0),this.views.add("#message-threads",new c.Views.userThread({model:e}))},setActiveThread:function(s){s&&_.each(this.collection.models,function(e){e.id===s?e.set("active",!0):e.unset("active")},this)},changePreview:function(e){var s=u(e.currentTarget);e.preventDefault(),c.Nouveau.Messages.removeFeedback(),s.closest(".thread-item").hasClass("selected")?c.Nouveau.Messages.router.navigate("view/"+s.closest(".thread-content").data("thread-id")+"/",{trigger:!0}):(this.setActiveThread(s.closest(".thread-content").data("thread-id")),u(".message-action-view").focus())}}),c.Views.userThread=c.Nouveau.Messages.View.extend({tagName:"li",template:c.template("bp-messages-thread"),className:"thread-item",events:{"click .message-check":"singleSelect"},initialize:function(){var e,s;this.model.get("active")&&(this.el.className+=" selected"),this.model.get("unread")&&(this.el.className+=" unread"),"sentbox"===c.Nouveau.Messages.box?(s="",2===(e=this.model.get("recipients").length)?s=BP_Nouveau.messages.toOthers.one:2<e&&(s=BP_Nouveau.messages.toOthers.more.replace("%d",Number(e-1))),this.model.set({recipientsCount:e,toOthers:s},{silent:!0})):this.model.get("recipientsCount")&&this.model.unset("recipientsCount",{silent:!0}),this.model.on("change:active",this.toggleClass,this),this.model.on("change:unread",this.updateReadState,this),this.model.on("change:checked",this.bulkSelect,this),this.model.on("remove",this.cleanView,this)},toggleClass:function(e){!0===e.get("active")?u(this.el).addClass("selected"):u(this.el).removeClass("selected")},updateReadState:function(e,s){!1===s?u(this.el).removeClass("unread"):u(this.el).addClass("unread")},bulkSelect:function(e){u("#bp-message-thread-"+e.get("id")).length&&u("#bp-message-thread-"+e.get("id")).prop("checked",e.get("checked"))},singleSelect:function(e){e=u(e.currentTarget).prop("checked");this.model.set("checked",e,{silent:!0});var s=!1;_.each(this.model.collection.models,function(e){!0===e.get("checked")&&(s=!0)}),s?(u("#user-messages-bulk-actions").closest(".bulk-actions-wrap").removeClass("bp-hide"),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.howtoBulk,"info")):(u("#user-messages-bulk-actions").closest(".bulk-actions-wrap").addClass("bp-hide"),c.Nouveau.Messages.removeFeedback())},cleanView:function(){this.views.view.remove()}}),c.Views.previewThread=c.Nouveau.Messages.View.extend({tagName:"div",id:"thread-preview",template:c.template("bp-messages-preview"),events:{"click .actions button":"doAction","click .actions a":"doAction"},initialize:function(){this.collection.on("change:active",this.setPreview,this),this.collection.on("change:is_starred",this.updatePreview,this),this.collection.on("reset",this.emptyPreview,this),this.collection.on("remove",this.emptyPreview,this)},render:function(){_.isUndefined(this.model)||!0!==this.model.get("active")||c.Nouveau.Messages.View.prototype.render.apply(this,arguments)},setPreview:function(e){var s=this;!0===(this.model=e).get("unread")&&this.model.updateReadState().done(function(){s.model.set("unread",!1)}),this.render()},updatePreview:function(e){!0===e.get("active")&&this.render()},emptyPreview:function(){u(this.el).html("")},doAction:function(e){var s=u(e.currentTarget).data("bp-action"),t=this,a={},i=BP_Nouveau.messages.doingAction;if(!s)return e;e.preventDefault();var n=this.collection.findWhere({active:!0});n.get("id")&&(e=n.get("id"),"view"!==s?("star"!==s&&"unstar"!==s||(a.data={star_nonce:n.get("star_nonce")},e=n.get("starred_id")),_.isUndefined(i[s])||c.Nouveau.Messages.displayFeedback(i[s],"loading"),this.collection.doAction(s,e,a).done(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type),"delete"===s||"starred"===t.collection.options.box&&"unstar"===s?(t.collection.remove(n.get("id")),t.collection.fetch({data:_.pick(t.collection.options,["box","search_terms","page"])})):"unstar"===s||"star"===s?(_.each(e.messages,function(e){n.set(e)}),n.set(_.first(e.messages))):e.messages&&n.set(_.first(e.messages))}).fail(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)})):c.Nouveau.Messages.router.navigate("view/"+e+"/",{trigger:!0}))}}),c.Views.Pagination=c.Nouveau.Messages.View.extend({tagName:"li",className:"last filter",template:c.template("bp-messages-paginate")}),c.Views.BulkActions=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-bulk-actions"),events:{"click #user_messages_select_all":"bulkSelect","click .bulk-apply":"doBulkAction"},bulkSelect:function(e){var s=u(e.currentTarget).prop("checked");s?(u(this.el).find(".bulk-actions-wrap").removeClass("bp-hide").addClass("bp-show"),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.howtoBulk,"info")):(u(this.el).find(".bulk-actions-wrap").addClass("bp-hide"),c.Nouveau.Messages.removeFeedback()),_.each(this.collection.models,function(e){e.set("checked",s)})},doBulkAction:function(e){var t=this,s={},a="id",i=BP_Nouveau.messages.doingAction;e.preventDefault();var n,o,d,r=u("#user-messages-bulk-actions").val();r&&(n=this.collection.where({checked:!0}),e=o=_.map(n,function(e){return e.get("id")}),"star"!==r&&"unstar"!==r||(1===(e=_.map(n,function(e){return e.get("starred_id")})).length&&(s.data={star_nonce:n[0].get("star_nonce")}),a="starred_id"),d=_.object(_.map(n,function(e){return[e.get(a),e.get("id")]})),_.isUndefined(i[r])||c.Nouveau.Messages.displayFeedback(i[r],"loading"),this.collection.doAction(r,e,s).done(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type),"delete"===r||"starred"===t.collection.options.box&&"unstar"===r?(t.collection.remove(o),t.collection.fetch({data:_.pick(t.collection.options,["box","search_terms","page"])})):e.messages&&_.each(e.messages,function(e,s){t.collection.get(d[s]).set(e)})}).fail(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}))}}),c.Views.messageFilters=c.Nouveau.Messages.View.extend({tagName:"ul",template:c.template("bp-messages-filters"),events:{"search #user_messages_search":"resetSearchTerms","submit #user_messages_search_form":"setSearchTerms","click #bp-messages-next-page":"nextPage","click #bp-messages-prev-page":"prevPage"},initialize:function(){this.model.on("change",this.filterThreads,this),this.options.threads.on("sync",this.addPaginatation,this)},addPaginatation:function(e){_.each(this.views._views,function(e){_.isUndefined(e)||_.first(e).remove()}),this.views.add(new c.Views.Pagination({model:new Backbone.Model(e.options)})),this.views.add(".user-messages-bulk-actions",new c.Views.BulkActions({model:new Backbone.Model(BP_Nouveau.messages.bulk_actions),collection:e}))},filterThreads:function(){c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.loading,"loading"),this.options.threads.reset(),_.extend(this.options.threads.options,_.pick(this.model.attributes,["box","search_terms"])),this.options.threads.fetch({data:_.pick(this.model.attributes,["box","search_terms","page"]),success:this.threadsFiltered,error:this.threadsFilterError})},threadsFiltered:function(){c.Nouveau.Messages.removeFeedback()},threadsFilterError:function(e,s){c.Nouveau.Messages.displayFeedback(s.feedback,s.type)},resetSearchTerms:function(e){e.preventDefault(),u(e.target).val()?u(e.target).closest("form").find("[type=submit]").addClass("bp-show").removeClass("bp-hide"):u(e.target).closest("form").submit()},setSearchTerms:function(e){e.preventDefault(),this.model.set({search_terms:u(e.target).find("input[type=search]").val()||"",page:1})},nextPage:function(e){e.preventDefault(),this.model.set("page",this.model.get("page")+1)},prevPage:function(e){e.preventDefault(),this.model.set("page",this.model.get("page")-1)}}),c.Views.userMessagesHeader=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-messages-single-header"),events:{"click .actions a":"doAction","click .actions button":"doAction"},doAction:function(e){var s=u(e.currentTarget).data("bp-action"),t=this,a={},i=BP_Nouveau.messages.doingAction;if(!s)return e;e.preventDefault(),this.model.get("id")&&("star"!==s&&"unstar"!==s||(a.data={star_nonce:this.model.get("star_nonce")},u(e.currentTarget).addClass("bp-hide"),u(e.currentTarget).parent().find('[data-bp-action="'+{star:"unstar",unstar:"star"}[s]+'"]').removeClass("bp-hide")),_.isUndefined(i[s])||c.Nouveau.Messages.displayFeedback(i[s],"loading"),c.Nouveau.Messages.threads.doAction(s,this.model.get("id"),a).done(function(e){"delete"===s?c.Nouveau.Messages.clearViews():e.messages&&t.model.set(_.first(e.messages)),c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}).fail(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}))}}),c.Views.userMessagesEntry=c.Views.userMessagesHeader.extend({tagName:"li",template:c.template("bp-messages-single-list"),events:{"click [data-bp-action]":"doAction"},initialize:function(){this.model.on("change:is_starred",this.updateMessage,this)},updateMessage:function(e){this.model.get("id")===e.get("id")&&this.render()}}),c.Views.userMessages=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-messages-single"),initialize:function(){this.requestMessages(),this.reply=new c.Models.messageThread,this.collection.on("add",this.addMessage,this),this.views.add("#bp-message-content",new c.Views.messageEditor)},events:{"click #send_reply_button":"sendReply"},requestMessages:function(){var e={};this.collection.reset(),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.loading,"loading"),_.isUndefined(this.options.thread.attributes)?e.id=this.options.thread.id:(e.id=this.options.thread.get("id"),e.js_thread=!_.isEmpty(this.options.thread.get("subject"))),this.collection.fetch({data:e,success:_.bind(this.messagesFetched,this),error:this.messagesFetchError})},messagesFetched:function(e,s){_.isUndefined(s.thread)||(this.options.thread=new Backbone.Model(s.thread)),c.Nouveau.Messages.removeFeedback(),this.views.add("#bp-message-thread-header",new c.Views.userMessagesHeader({model:this.options.thread}))},messagesFetchError:function(e,s){s.feedback&&s.type&&c.Nouveau.Messages.displayFeedback(s.feedback,s.type)},addMessage:function(e){this.views.add("#bp-message-thread-list",new c.Views.userMessagesEntry({model:e}))},addEditor:function(){this.views.add("#bp-message-content",new c.Views.messageEditor)},sendReply:function(e){e.preventDefault(),!0!==this.reply.get("sending")&&(this.reply.set({thread_id:this.options.thread.get("id"),content:tinyMCE.activeEditor.getContent(),sending:!0}),this.collection.sync("create",_.pick(this.reply.attributes,["thread_id","content"]),{success:_.bind(this.replySent,this),error:_.bind(this.replyError,this)}))},replySent:function(e){e=this.collection.parse(e);tinyMCE.activeEditor.setContent(""),this.reply.set("sending",!1),this.collection.add(_.first(e))},replyError:function(e){e.feedback&&e.type&&c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}}),c.Nouveau.Messages.Router=Backbone.Router.extend({routes:{"compose/":"composeMessage","view/:id/":"viewMessage","sentbox/":"sentboxView","starred/":"starredView","inbox/":"inboxView","":"inboxView","*unSupported":"unSupported"},composeMessage:function(){c.Nouveau.Messages.composeView()},viewMessage:function(e){var s;e&&(void 0===(s=c.Nouveau.Messages.threads.get(e))&&((s={}).id=e),c.Nouveau.Messages.singleView(s))},sentboxView:function(){c.Nouveau.Messages.box="sentbox",c.Nouveau.Messages.threadsView()},starredView:function(){c.Nouveau.Messages.box="starred",c.Nouveau.Messages.threadsView()},unSupported:function(){c.Nouveau.Messages.box="unsupported"},inboxView:function(){c.Nouveau.Messages.box="inbox",c.Nouveau.Messages.threadsView()}}),c.Nouveau.Messages.start())}(window.bp,jQuery);
1
+ window.wp=window.wp||{},window.bp=window.bp||{},function(c,u){"undefined"!=typeof BP_Nouveau&&(_.extend(c,_.pick(wp,"Backbone","ajax","template")),c.Models=c.Models||{},c.Collections=c.Collections||{},c.Views=c.Views||{},c.Nouveau=c.Nouveau||{},c.Nouveau.Messages={start:function(){this.views=new Backbone.Collection,this.threads=new c.Collections.Threads,this.messages=new c.Collections.Messages,this.router=new c.Nouveau.Messages.Router,this.box="inbox",this.setupNav(),Backbone.history.start({pushState:!0,root:BP_Nouveau.messages.rootUrl})},setupNav:function(){var t=this;u("#compose-personal-li").addClass("last"),u("#subnav a").on("click",function(e){var s=u(e.target).prop("id");if(-1===_.indexOf(["inbox","starred","sentbox","compose"],s)||"unsupported"===t.box)return e;e.preventDefault(),t.removeTinyMCE(),"compose"===s?_.isUndefined(t.views.get("compose"))?t.router.navigate("compose/",{trigger:!0}):((e=t.views.get("compose")).get("view").remove(),t.views.remove({id:"compose",view:e}),"single"===t.box&&(t.box="inbox"),t.router.navigate(t.box+"/",{trigger:!0})):t.box===s&&_.isUndefined(t.views.get("compose"))||(t.clearViews(),t.router.navigate(s+"/",{trigger:!0}))})},removeTinyMCE:function(){"undefined"!=typeof tinymce&&null!==tinymce.get("message_content")&&tinymce.EditorManager.execCommand("mceRemoveEditor",!0,"message_content")},tinyMCEinit:function(){void 0===window.tinyMCE||null===window.tinyMCE.activeEditor||void 0===window.tinyMCE.activeEditor||_.isEmpty(c.mentions)||u(window.tinyMCE.activeEditor.contentDocument.activeElement).atwho("setIframe",u("#message_content_ifr")[0]).bp_mentions({data:[],suffix:" "})},removeFeedback:function(){var e;_.isUndefined(this.views.get("feedback"))||((e=this.views.get("feedback")).get("view").remove(),this.views.remove({id:"feedback",view:e}))},displayFeedback:function(e,s){this.removeFeedback(),e&&(s=new c.Views.Feedback({value:e,type:s||"info"}),this.views.add({id:"feedback",view:s}),s.inject(".bp-messages-feedback"))},clearViews:function(){_.isUndefined(this.views.models)||(_.each(this.views.models,function(e){e.get("view").remove()},this),this.views.reset())},composeView:function(){this.clearViews();var e=new c.Views.messageForm({model:new c.Models.Message});this.views.add({id:"compose",view:e}),e.inject(".bp-messages-content")},threadsView:function(){u("#subnav ul li").each(function(e,s){u(s).removeClass("current selected")}),u("#subnav a#"+this.box).closest("li").addClass("current selected");var e=new c.Views.userThreads({collection:this.threads,box:this.box});this.views.add({id:"threads",view:e}),e.inject(".bp-messages-content"),this.displayFilters(this.threads)},displayFilters:function(e){this.filters=new Backbone.Model({page:1,total_page:0,search_terms:"",box:this.box}),e=new c.Views.messageFilters({model:this.filters,threads:e}),this.views.add({id:"filters",view:e}),e.inject(".bp-messages-filters")},singleView:function(e){this.clearViews(),this.box="single";e=new c.Views.userMessages({collection:this.messages,thread:e});this.views.add({id:"single",view:e}),e.inject(".bp-messages-content")}},c.Models.Message=Backbone.Model.extend({defaults:{send_to:[],subject:"",message_content:"",meta:{}},sendMessage:function(){if(!0!==this.get("sending")){this.set("sending",!0,{silent:!0});var e=c.ajax.post("messages_send_message",_.extend({nonce:BP_Nouveau.messages.nonces.send},this.attributes));return this.set("sending",!1,{silent:!0}),e}}}),c.Models.Thread=Backbone.Model.extend({defaults:{id:0,message_id:0,subject:"",excerpt:"",content:"",unread:!0,sender_name:"",sender_link:"",sender_avatar:"",count:0,date:0,display_date:"",recipients:[]},updateReadState:function(e){return(e=e||{}).data=_.extend(_.pick(this.attributes,["id","message_id"]),{action:"messages_thread_read",nonce:BP_Nouveau.nonces.messages}),c.ajax.send(e)}}),c.Models.messageThread=Backbone.Model.extend({defaults:{id:0,content:"",sender_id:0,sender_name:"",sender_link:"",sender_avatar:"",date:0,display_date:""}}),c.Collections.Threads=Backbone.Collection.extend({model:c.Models.Thread,initialize:function(){this.options={page:1,total_page:0}},sync:function(e,s,t){if((t=t||{}).context=this,t.data=t.data||{},t.data.nonce=BP_Nouveau.nonces.messages,"read"===e)return t.data=_.extend(t.data,{action:"messages_get_user_message_threads"}),c.ajax.send(t)},parse:function(t){return _.isArray(t.threads)||(t.threads=[t.threads]),_.each(t.threads,function(e,s){_.isNull(e)||(t.threads[s].id=e.id,t.threads[s].message_id=e.message_id,t.threads[s].subject=e.subject,t.threads[s].excerpt=e.excerpt,t.threads[s].content=e.content,t.threads[s].unread=e.unread,t.threads[s].sender_name=e.sender_name,t.threads[s].sender_link=e.sender_link,t.threads[s].sender_avatar=e.sender_avatar,t.threads[s].count=e.count,t.threads[s].date=new Date(e.date),t.threads[s].display_date=e.display_date,t.threads[s].recipients=e.recipients,t.threads[s].star_link=e.star_link,t.threads[s].is_starred=e.is_starred)}),_.isUndefined(t.meta)||(this.options.page=t.meta.page,this.options.total_page=t.meta.total_page),c.Nouveau.Messages.box&&(this.options.box=c.Nouveau.Messages.box),_.isUndefined(t.extraContent)||_.extend(this.options,_.pick(t.extraContent,["beforeLoop","afterLoop"])),t.threads},doAction:function(e,s,t){return(t=t||{}).context=this,t.data=t.data||{},t.data=_.extend(t.data,{action:"messages_"+e,nonce:BP_Nouveau.nonces.messages,id:s}),c.ajax.send(t)}}),c.Collections.Messages=Backbone.Collection.extend({model:c.Models.messageThread,options:{},sync:function(e,s,t){return(t=t||{}).context=this,t.data=t.data||{},t.data.nonce=BP_Nouveau.nonces.messages,"read"===e?(t.data=_.extend(t.data,{action:"messages_get_thread_messages"}),c.ajax.send(t)):"create"===e?(t.data=_.extend(t.data,{action:"messages_send_reply",nonce:BP_Nouveau.messages.nonces.send},s||{}),c.ajax.send(t)):void 0},parse:function(t){return _.isArray(t.messages)||(t.messages=[t.messages]),_.each(t.messages,function(e,s){_.isNull(e)||(t.messages[s].id=e.id,t.messages[s].content=e.content,t.messages[s].sender_id=e.sender_id,t.messages[s].sender_name=e.sender_name,t.messages[s].sender_link=e.sender_link,t.messages[s].sender_avatar=e.sender_avatar,t.messages[s].date=new Date(e.date),t.messages[s].display_date=e.display_date,t.messages[s].star_link=e.star_link,t.messages[s].is_starred=e.is_starred)}),_.isUndefined(t.thread)||(this.options.thread_id=t.thread.id,this.options.thread_subject=t.thread.subject,this.options.recipients=t.thread.recipients),t.messages}}),c.Nouveau.Messages.View=c.Backbone.View.extend({inject:function(e){this.render(),u(e).html(this.el),this.views.ready()},prepare:function(){return!_.isUndefined(this.model)&&_.isFunction(this.model.toJSON)?this.model.toJSON():{}}}),c.Views.Feedback=c.Nouveau.Messages.View.extend({tagName:"div",className:"bp-messages bp-user-messages-feedback",template:c.template("bp-messages-feedback"),initialize:function(){this.model=new Backbone.Model({type:this.options.type||"info",message:this.options.value})}}),c.Views.Hook=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-messages-hook"),initialize:function(){this.model=new Backbone.Model({extraContent:this.options.extraContent}),this.el.className="bp-messages-hook",this.options.className&&(this.el.className+=" "+this.options.className)}}),c.Views.messageEditor=c.Nouveau.Messages.View.extend({template:c.template("bp-messages-editor"),initialize:function(){this.on("ready",this.activateTinyMce,this)},activateTinyMce:function(){"undefined"!=typeof tinymce&&tinymce.EditorManager.execCommand("mceAddEditor",!0,"message_content")}}),c.Views.messageForm=c.Nouveau.Messages.View.extend({tagName:"form",id:"send_message_form",className:"standard-form",template:c.template("bp-messages-form"),events:{"click #bp-messages-send":"sendMessage","click #bp-messages-reset":"resetForm"},initialize:function(){this.resetModel=this.model.clone(),this.views.add("#bp-message-content",new c.Views.messageEditor),this.model.on("change",this.resetFields,this),this.on("ready",this.addMentions,this)},addMentions:function(){var e=u(this.el).find("#send-to-input"),s=c.Nouveau.getLinkParams(null,"r")||null;e.bp_mentions({data:[],suffix:" "}),_.isNull(s)||(e.val("@"+_.escape(s)+" "),e.focus())},resetFields:function(e){_.each(e.previousAttributes(),function(e,s){"message_content"===s?void 0!==tinyMCE.activeEditor&&null!==tinyMCE.activeEditor&&tinyMCE.activeEditor.setContent(""):"meta"!==s&&!1!==e&&u('input[name="'+s+'"]').val("")}),u(this.el).trigger("message:reset",_.pick(e.previousAttributes(),"meta"))},sendMessage:function(e){var t={},a=[],s=this;if(e.preventDefault(),c.Nouveau.Messages.removeFeedback(),_.each(this.$el.serializeArray(),function(e){var s;e.name=e.name.replace("[]",""),-1===_.indexOf(["send_to","subject","message_content"],e.name)?_.isUndefined(t[e.name])?t[e.name]=e.value:(_.isArray(t[e.name])||(t[e.name]=[t[e.name]]),t[e.name].push(e.value)):"send_to"===e.name?(s=e.value.match(/(^|[^@\w\-])@([a-zA-Z0-9_\-]{1,50})\b/g))?((s=s.map(function(e){return e=e.trim()}))&&_.isArray(s)||a.push("send_to"),this.model.set("send_to",s,{silent:!0})):a.push("send_to"):("message_content"===e.name&&void 0!==tinyMCE.activeEditor&&(e.value=tinyMCE.activeEditor.getContent()),e.value?this.model.set(e.name,e.value,{silent:!0}):a.push(e.name))},this),a.length){var i="";return _.each(a,function(e){i+=BP_Nouveau.messages.errors[e]+"<br/>"}),void c.Nouveau.Messages.displayFeedback(i,"error")}this.model.set("meta",t,{silent:!0}),this.model.sendMessage().done(function(e){s.model.set(s.resetModel),c.Nouveau.Messages.displayFeedback(e.feedback,e.type),c.Nouveau.Messages.removeTinyMCE();e=c.Nouveau.Messages.views.get("compose");e.get("view").remove(),c.Nouveau.Messages.views.remove({id:"compose",view:e}),c.Nouveau.Messages.router.navigate("sentbox/",{trigger:!0})}).fail(function(e){e.feedback&&c.Nouveau.Messages.displayFeedback(e.feedback,e.type)})},resetForm:function(e){e.preventDefault(),this.model.set(this.resetModel)}}),c.Views.userThreads=c.Nouveau.Messages.View.extend({tagName:"div",events:{"click .subject":"changePreview"},initialize:function(){var e=[new c.Nouveau.Messages.View({tagName:"ul",id:"message-threads",className:"message-lists"}),new c.Views.previewThread({collection:this.collection})];_.each(e,function(e){this.views.add(e)},this),this.requestThreads(),this.collection.on("reset",this.cleanContent,this),this.collection.on("add",this.addThread,this)},requestThreads:function(){this.collection.reset(),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.loading,"loading"),this.collection.fetch({data:_.pick(this.options,"box"),success:_.bind(this.threadsFetched,this),error:this.threadsFetchError})},threadsFetched:function(){c.Nouveau.Messages.removeFeedback(),this.collection.options.afterLoop&&this.views.add(new c.Views.Hook({extraContent:this.collection.options.afterLoop,className:"after-messages-loop"}),{at:1}),this.collection.options.beforeLoop&&this.views.add(new c.Views.Hook({extraContent:this.collection.options.beforeLoop,className:"before-messages-loop"}),{at:0}),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.howto,"info")},threadsFetchError:function(e,s){c.Nouveau.Messages.displayFeedback(s.feedback,s.type)},cleanContent:function(){_.each(this.views._views["#message-threads"],function(e){e.remove()})},addThread:function(e){var s=this.collection.findWhere({active:!0});_.isUndefined(s)&&e.set("active",!0),this.views.add("#message-threads",new c.Views.userThread({model:e}))},setActiveThread:function(s){s&&_.each(this.collection.models,function(e){e.id===s?e.set("active",!0):e.unset("active")},this)},changePreview:function(e){var s=u(e.currentTarget);e.preventDefault(),c.Nouveau.Messages.removeFeedback(),s.closest(".thread-item").hasClass("selected")?c.Nouveau.Messages.router.navigate("view/"+s.closest(".thread-content").data("thread-id")+"/",{trigger:!0}):(this.setActiveThread(s.closest(".thread-content").data("thread-id")),u(".message-action-view").focus())}}),c.Views.userThread=c.Nouveau.Messages.View.extend({tagName:"li",template:c.template("bp-messages-thread"),className:"thread-item",events:{"click .message-check":"singleSelect"},initialize:function(){var e,s;this.model.get("active")&&(this.el.className+=" selected"),this.model.get("unread")&&(this.el.className+=" unread"),"sentbox"===c.Nouveau.Messages.box?(s="",2===(e=this.model.get("recipients").length)?s=BP_Nouveau.messages.toOthers.one:2<e&&(s=BP_Nouveau.messages.toOthers.more.replace("%d",Number(e-1))),this.model.set({recipientsCount:e,toOthers:s},{silent:!0})):this.model.get("recipientsCount")&&this.model.unset("recipientsCount",{silent:!0}),this.model.on("change:active",this.toggleClass,this),this.model.on("change:unread",this.updateReadState,this),this.model.on("change:checked",this.bulkSelect,this),this.model.on("remove",this.cleanView,this)},toggleClass:function(e){!0===e.get("active")?u(this.el).addClass("selected"):u(this.el).removeClass("selected")},updateReadState:function(e,s){!1===s?u(this.el).removeClass("unread"):u(this.el).addClass("unread")},bulkSelect:function(e){u("#bp-message-thread-"+e.get("id")).length&&u("#bp-message-thread-"+e.get("id")).prop("checked",e.get("checked"))},singleSelect:function(e){e=u(e.currentTarget).prop("checked");this.model.set("checked",e,{silent:!0});var s=!1;_.each(this.model.collection.models,function(e){!0===e.get("checked")&&(s=!0)}),s?(u("#user-messages-bulk-actions").closest(".bulk-actions-wrap").removeClass("bp-hide"),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.howtoBulk,"info")):(u("#user-messages-bulk-actions").closest(".bulk-actions-wrap").addClass("bp-hide"),c.Nouveau.Messages.removeFeedback())},cleanView:function(){this.views.view.remove()}}),c.Views.previewThread=c.Nouveau.Messages.View.extend({tagName:"div",id:"thread-preview",template:c.template("bp-messages-preview"),events:{"click .actions button":"doAction","click .actions a":"doAction"},initialize:function(){this.collection.on("change:active",this.setPreview,this),this.collection.on("change:is_starred",this.updatePreview,this),this.collection.on("reset",this.emptyPreview,this),this.collection.on("remove",this.emptyPreview,this)},render:function(){_.isUndefined(this.model)||!0!==this.model.get("active")||c.Nouveau.Messages.View.prototype.render.apply(this,arguments)},setPreview:function(e){var s=this;!0===(this.model=e).get("unread")&&this.model.updateReadState().done(function(){s.model.set("unread",!1)}),this.render()},updatePreview:function(e){!0===e.get("active")&&this.render()},emptyPreview:function(){u(this.el).html("")},doAction:function(e){var s=u(e.currentTarget).data("bp-action"),t=this,a={},i=BP_Nouveau.messages.doingAction;if(!s)return e;e.preventDefault();var n=this.collection.findWhere({active:!0});n.get("id")&&(e=n.get("id"),"view"!==s?("star"!==s&&"unstar"!==s||(a.data={star_nonce:n.get("star_nonce")},e=n.get("starred_id")),_.isUndefined(i[s])||c.Nouveau.Messages.displayFeedback(i[s],"loading"),this.collection.doAction(s,e,a).done(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type),"delete"===s||"exit"===s||"starred"===t.collection.options.box&&"unstar"===s?(t.collection.remove(n.get("id")),t.collection.fetch({data:_.pick(t.collection.options,["box","search_terms","page"])})):"unstar"===s||"star"===s?(_.each(e.messages,function(e){n.set(e)}),n.set(_.first(e.messages))):e.messages&&n.set(_.first(e.messages))}).fail(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)})):c.Nouveau.Messages.router.navigate("view/"+e+"/",{trigger:!0}))}}),c.Views.Pagination=c.Nouveau.Messages.View.extend({tagName:"li",className:"last filter",template:c.template("bp-messages-paginate")}),c.Views.BulkActions=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-bulk-actions"),events:{"click #user_messages_select_all":"bulkSelect","click .bulk-apply":"doBulkAction"},bulkSelect:function(e){var s=u(e.currentTarget).prop("checked");s?(u(this.el).find(".bulk-actions-wrap").removeClass("bp-hide").addClass("bp-show"),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.howtoBulk,"info")):(u(this.el).find(".bulk-actions-wrap").addClass("bp-hide"),c.Nouveau.Messages.removeFeedback()),_.each(this.collection.models,function(e){e.set("checked",s)})},doBulkAction:function(e){var t=this,s={},a="id",i=BP_Nouveau.messages.doingAction;e.preventDefault();var n,o,d,r=u("#user-messages-bulk-actions").val();r&&(n=this.collection.where({checked:!0}),e=o=_.map(n,function(e){return e.get("id")}),"star"!==r&&"unstar"!==r||(1===(e=_.map(n,function(e){return e.get("starred_id")})).length&&(s.data={star_nonce:n[0].get("star_nonce")}),a="starred_id"),d=_.object(_.map(n,function(e){return[e.get(a),e.get("id")]})),_.isUndefined(i[r])||c.Nouveau.Messages.displayFeedback(i[r],"loading"),this.collection.doAction(r,e,s).done(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type),"delete"===r||"exit"===r||"starred"===t.collection.options.box&&"unstar"===r?(t.collection.remove(o),t.collection.fetch({data:_.pick(t.collection.options,["box","search_terms","page"])})):e.messages&&_.each(e.messages,function(e,s){t.collection.get(d[s]).set(e)})}).fail(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}))}}),c.Views.messageFilters=c.Nouveau.Messages.View.extend({tagName:"ul",template:c.template("bp-messages-filters"),events:{"search #user_messages_search":"resetSearchTerms","submit #user_messages_search_form":"setSearchTerms","click #bp-messages-next-page":"nextPage","click #bp-messages-prev-page":"prevPage"},initialize:function(){this.model.on("change",this.filterThreads,this),this.options.threads.on("sync",this.addPaginatation,this)},addPaginatation:function(e){_.each(this.views._views,function(e){_.isUndefined(e)||_.first(e).remove()}),this.views.add(new c.Views.Pagination({model:new Backbone.Model(e.options)})),this.views.add(".user-messages-bulk-actions",new c.Views.BulkActions({model:new Backbone.Model(BP_Nouveau.messages.bulk_actions),collection:e}))},filterThreads:function(){c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.loading,"loading"),this.options.threads.reset(),_.extend(this.options.threads.options,_.pick(this.model.attributes,["box","search_terms"])),this.options.threads.fetch({data:_.pick(this.model.attributes,["box","search_terms","page"]),success:this.threadsFiltered,error:this.threadsFilterError})},threadsFiltered:function(){c.Nouveau.Messages.removeFeedback()},threadsFilterError:function(e,s){c.Nouveau.Messages.displayFeedback(s.feedback,s.type)},resetSearchTerms:function(e){e.preventDefault(),u(e.target).val()?u(e.target).closest("form").find("[type=submit]").addClass("bp-show").removeClass("bp-hide"):u(e.target).closest("form").submit()},setSearchTerms:function(e){e.preventDefault(),this.model.set({search_terms:u(e.target).find("input[type=search]").val()||"",page:1})},nextPage:function(e){e.preventDefault(),this.model.set("page",this.model.get("page")+1)},prevPage:function(e){e.preventDefault(),this.model.set("page",this.model.get("page")-1)}}),c.Views.userMessagesHeader=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-messages-single-header"),events:{"click .actions a":"doAction","click .actions button":"doAction"},doAction:function(e){var s=u(e.currentTarget).data("bp-action"),t=this,a={},i=BP_Nouveau.messages.doingAction;if(!s)return e;e.preventDefault(),this.model.get("id")&&("star"!==s&&"unstar"!==s||(a.data={star_nonce:this.model.get("star_nonce")},u(e.currentTarget).addClass("bp-hide"),u(e.currentTarget).parent().find('[data-bp-action="'+{star:"unstar",unstar:"star"}[s]+'"]').removeClass("bp-hide")),_.isUndefined(i[s])||c.Nouveau.Messages.displayFeedback(i[s],"loading"),c.Nouveau.Messages.threads.doAction(s,this.model.get("id"),a).done(function(e){"delete"===s||"exit"===s?c.Nouveau.Messages.clearViews():e.messages&&t.model.set(_.first(e.messages)),c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}).fail(function(e){c.Nouveau.Messages.removeFeedback(),c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}))}}),c.Views.userMessagesEntry=c.Views.userMessagesHeader.extend({tagName:"li",template:c.template("bp-messages-single-list"),events:{"click [data-bp-action]":"doAction"},initialize:function(){this.model.on("change:is_starred",this.updateMessage,this)},updateMessage:function(e){this.model.get("id")===e.get("id")&&this.render()}}),c.Views.userMessages=c.Nouveau.Messages.View.extend({tagName:"div",template:c.template("bp-messages-single"),initialize:function(){this.requestMessages(),this.reply=new c.Models.messageThread,this.collection.on("add",this.addMessage,this),this.views.add("#bp-message-content",new c.Views.messageEditor)},events:{"click #send_reply_button":"sendReply"},requestMessages:function(){var e={};this.collection.reset(),c.Nouveau.Messages.displayFeedback(BP_Nouveau.messages.loading,"loading"),_.isUndefined(this.options.thread.attributes)?e.id=this.options.thread.id:(e.id=this.options.thread.get("id"),e.js_thread=!_.isEmpty(this.options.thread.get("subject"))),this.collection.fetch({data:e,success:_.bind(this.messagesFetched,this),error:this.messagesFetchError})},messagesFetched:function(e,s){_.isUndefined(s.thread)||(this.options.thread=new Backbone.Model(s.thread)),c.Nouveau.Messages.removeFeedback(),this.views.add("#bp-message-thread-header",new c.Views.userMessagesHeader({model:this.options.thread}))},messagesFetchError:function(e,s){s.feedback&&s.type&&c.Nouveau.Messages.displayFeedback(s.feedback,s.type)},addMessage:function(e){this.views.add("#bp-message-thread-list",new c.Views.userMessagesEntry({model:e}))},addEditor:function(){this.views.add("#bp-message-content",new c.Views.messageEditor)},sendReply:function(e){e.preventDefault(),!0!==this.reply.get("sending")&&(this.reply.set({thread_id:this.options.thread.get("id"),content:tinyMCE.activeEditor.getContent(),sending:!0}),this.collection.sync("create",_.pick(this.reply.attributes,["thread_id","content"]),{success:_.bind(this.replySent,this),error:_.bind(this.replyError,this)}))},replySent:function(e){e=this.collection.parse(e);tinyMCE.activeEditor.setContent(""),this.reply.set("sending",!1),this.collection.add(_.first(e))},replyError:function(e){e.feedback&&e.type&&c.Nouveau.Messages.displayFeedback(e.feedback,e.type)}}),c.Nouveau.Messages.Router=Backbone.Router.extend({routes:{"compose/":"composeMessage","view/:id/":"viewMessage","sentbox/":"sentboxView","starred/":"starredView","inbox/":"inboxView","":"inboxView","*unSupported":"unSupported"},composeMessage:function(){c.Nouveau.Messages.composeView()},viewMessage:function(e){var s;e&&(void 0===(s=c.Nouveau.Messages.threads.get(e))&&((s={}).id=e),c.Nouveau.Messages.singleView(s))},sentboxView:function(){c.Nouveau.Messages.box="sentbox",c.Nouveau.Messages.threadsView()},starredView:function(){c.Nouveau.Messages.box="starred",c.Nouveau.Messages.threadsView()},unSupported:function(){c.Nouveau.Messages.box="unsupported"},inboxView:function(){c.Nouveau.Messages.box="inbox",c.Nouveau.Messages.threadsView()}}),c.Nouveau.Messages.start())}(window.bp,jQuery);
bp-templates/bp-nouveau/js/buddypress-nouveau.js CHANGED
@@ -2,7 +2,7 @@
2
  /* jshint devel: true */
3
  /* jshint browser: true */
4
  /* @since 3.0.0 */
5
- /* @version 8.0.0 */
6
  window.wp = window.wp || {};
7
  window.bp = window.bp || {};
8
 
@@ -468,6 +468,11 @@ window.bp = window.bp || {};
468
 
469
  // Pagination.
470
  $( '#buddypress [data-bp-list]' ).on( 'click', '[data-bp-pagination] a', this, this.paginateAction );
 
 
 
 
 
471
  },
472
 
473
  /** Event Callbacks ***********************************************************/
@@ -823,6 +828,54 @@ window.bp = window.bp || {};
823
 
824
  // Request the page.
825
  self.objectRequest( queryData );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
826
  }
827
  };
828
 
2
  /* jshint devel: true */
3
  /* jshint browser: true */
4
  /* @since 3.0.0 */
5
+ /* @version 10.0.0 */
6
  window.wp = window.wp || {};
7
  window.bp = window.bp || {};
8
 
468
 
469
  // Pagination.
470
  $( '#buddypress [data-bp-list]' ).on( 'click', '[data-bp-pagination] a', this, this.paginateAction );
471
+
472
+ // Password updates.
473
+ if ( BP_Nouveau.bpPasswordVerify && BP_Nouveau.bpPasswordVerify.requiredPassStrength ) {
474
+ $( '#pass1' ).on( 'input pwupdate', this.checkPassStrength );
475
+ }
476
  },
477
 
478
  /** Event Callbacks ***********************************************************/
828
 
829
  // Request the page.
830
  self.objectRequest( queryData );
831
+ },
832
+
833
+ checkPassStrength: function( event ) {
834
+ var bpPasswordVerify = BP_Nouveau.bpPasswordVerify, strength,
835
+ requiredStrength = parseInt( bpPasswordVerify.requiredPassStrength, 10 ),
836
+ pass1 = $( event.currentTarget ).val(), pass2 = $( '#pass2' ).val(),
837
+ currentForm = $( event.currentTarget ).closest( 'form' );
838
+
839
+
840
+ // wp.passwordStrength.userInputBlacklist() has been deprecated in WP 5.5.0.
841
+ if ( 'function' === typeof wp.passwordStrength.userInputDisallowedList ) {
842
+ strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputDisallowedList(), pass2 );
843
+ } else {
844
+ strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputBlacklist(), pass2 );
845
+ }
846
+
847
+ if ( requiredStrength && 4 >= requiredStrength ) {
848
+ var passwordWarningContainer = $( currentForm ).find( '#password-warning' );
849
+
850
+ if ( strength < requiredStrength ) {
851
+ if ( ! $( passwordWarningContainer ).length ) {
852
+ $( event.currentTarget ).before(
853
+ $( '<p></p>' ).prop( 'id', 'password-warning' )
854
+ .addClass( 'description' )
855
+ );
856
+ }
857
+
858
+ $( passwordWarningContainer ).html( bpPasswordVerify.tooWeakPasswordWarning );
859
+ } else if ( $( passwordWarningContainer ).length ) {
860
+ $( passwordWarningContainer ).remove();
861
+ }
862
+
863
+ if ( ! $( currentForm ).find( '#password-strength-score' ).length ) {
864
+ $( currentForm ).prepend(
865
+ $('<input></input>').prop( {
866
+ id: 'password-strength-score',
867
+ type: 'hidden',
868
+ 'name': '_password_strength_score'
869
+ } )
870
+ );
871
+ }
872
+
873
+ $( '#password-strength-score' ).val( strength );
874
+
875
+ if ( requiredStrength > strength ) {
876
+ $( '.pw-weak' ).remove();
877
+ }
878
+ }
879
  }
880
  };
881
 
bp-templates/bp-nouveau/js/buddypress-nouveau.min.js CHANGED
@@ -1 +1 @@
1
- window.wp=window.wp||{},window.bp=window.bp||{},function(s,p){"undefined"!=typeof BP_Nouveau&&(s.Nouveau={start:function(){this.setupGlobals(),this.prepareDocument(),this.initObjects(),this.setHeartBeat(),this.addListeners()},setupGlobals:function(){this.ajax_request=null,this.objects=p.map(BP_Nouveau.objects,function(e){return e}),this.objectNavParent=BP_Nouveau.object_nav_parent,this.heartbeat=wp.heartbeat||{},this.querystring=this.getLinkParams()},prepareDocument:function(){var a;p("body").hasClass("no-js")&&p("body").removeClass("no-js").addClass("js"),BP_Nouveau.warnings&&"undefined"!=typeof console&&console.warn&&p.each(BP_Nouveau.warnings,function(e,t){console.warn(t)}),p(".buddypress_object_nav .widget-title").length&&(a=p(".buddypress_object_nav .widget-title").html(),p("body").find('*:contains("'+a+'")').each(function(e,t){p(t).hasClass("widget-title")||a!==p(t).html()||p(t).is("a")||p(t).remove()}))},getStorage:function(e,t){e=(e=sessionStorage.getItem(e))?JSON.parse(e):{};return void 0!==t?e[t]||!1:e},setStorage:function(e,t,a){var s=this.getStorage(e);return void 0===a&&void 0!==s[t]?delete s[t]:s[t]=a,sessionStorage.setItem(e,JSON.stringify(s)),null!==sessionStorage.getItem(e)},getLinkParams:function(e,t){e=e?-1!==e.indexOf("?")?"?"+e.split("?")[1]:"":document.location.search;if(!e)return null;e=e.replace(/(^\?)/,"").split("&").map(function(e){return this[(e=e.split("="))[0]]=e[1],this}.bind({}))[0];return t?e[t]:e},urlDecode:function(e,t){var a=t||{amp:"&",lt:"<",gt:">",quot:'"',"#039":"'"};return decodeURIComponent(e.replace(/\+/g," ")).replace(/&([^;]+);/g,function(e,t){return a[t]||""})},ajax:function(e,t){this.ajax_request&&this.ajax_request.abort();e=p.extend({},s.Nouveau.getStorage("bp-"+t),{nonce:BP_Nouveau.nonces[t]},e);return void 0!==BP_Nouveau.customizer_settings&&(e.customized=BP_Nouveau.customizer_settings),this.ajax_request=p.post(BP_Nouveau.ajaxurl,e,"json"),this.ajax_request},inject:function(e,t,a){p(e).length&&t&&("append"===(a=a||"reset")?p(e).append(t):"prepend"===a?p(e).prepend(t):p(e).html(t),"undefined"==typeof bp_mentions&&void 0===s.mentions||p(".bp-suggestions").bp_mentions(s.mentions.users))},objectRequest:function(a){var e,s=this;if((a=p.extend({object:"",scope:null,filter:null,target:"#buddypress [data-bp-list]",search_terms:"",page:1,extras:null,caller:null,template:null,method:"reset"},a)).object&&a.target)return a.search_terms&&(a.search_terms=a.search_terms.replace(/</g,"&lt;").replace(/>/g,"&gt;")),null!==a.scope&&this.setStorage("bp-"+a.object,"scope",a.scope),null!==a.filter&&this.setStorage("bp-"+a.object,"filter",a.filter),null!==a.extras&&this.setStorage("bp-"+a.object,"extras",a.extras),p(this.objectNavParent+" [data-bp-object]").each(function(){p(this).removeClass("selected loading")}),p(this.objectNavParent+' [data-bp-scope="'+a.scope+'"], #object-nav li.current').addClass("selected loading"),p('#buddypress [data-bp-filter="'+a.object+'"] option[value="'+a.filter+'"]').prop("selected",!0),"friends"===a.object||"friend_requests"===a.object||"group_members"===a.object?(a.template=a.object,a.object="members"):"group_requests"===a.object?(a.object="groups",a.template="group_requests"):"notifications"===a.object&&(a.object="members",a.template="member_notifications"),e=p.extend({action:a.object+"_filter"},a),this.ajax(e,a.object).done(function(e){var t;!1!==e.success&&((t=p(s.objectNavParent+' [data-bp-scope="'+a.scope+'"]')).removeClass("loading"),e.data&&e.data.totalItems&&e.data.navLabel&&t.find("a").first().html(e.data.navLabel+"&nbsp;").append(p("<span></span>").addClass("count").html(e.data.totalItems)),"reset"!==a.method?(s.inject(a.target,e.data.contents,a.method),p(a.target).trigger("bp_ajax_"+a.method,p.extend(a,{response:e.data}))):"pag-bottom"===a.caller&&p("#subnav").length?(t=p("#subnav").parent(),p("html,body").animate({scrollTop:t.offset().top},"slow",function(){p(a.target).fadeOut(100,function(){s.inject(this,e.data.contents,a.method),p(this).fadeIn(100,"swing",function(){p(a.target).trigger("bp_ajax_request",p.extend(a,{response:e.data}))})})})):p(a.target).fadeOut(100,function(){s.inject(this,e.data.contents,a.method),p(this).fadeIn(100,"swing",function(){p(a.target).trigger("bp_ajax_request",p.extend(a,{response:e.data}))})}))})},initObjects:function(){var a,s,r=this,n="all",i="",o=null,d=null;p.each(this.objects,function(e,t){void 0!==(a=r.getStorage("bp-"+t)).scope&&(n=a.scope),void 0!==a.extras&&"notifications"!==t&&(o=a.extras),p('#buddypress [data-bp-filter="'+t+'"]').length&&("-1"!==p('#buddypress [data-bp-filter="'+t+'"]').val()&&"0"!==p('#buddypress [data-bp-filter="'+t+'"]').val()?d=p('#buddypress [data-bp-filter="'+t+'"]').val():void 0!==a.filter&&(d=a.filter,p('#buddypress [data-bp-filter="'+t+'"] option[value="'+d+'"]').prop("selected",!0))),p(this.objectNavParent+' [data-bp-object="'+t+'"]').length&&(p(this.objectNavParent+' [data-bp-object="'+t+'"]').each(function(){p(this).removeClass("selected")}),p(this.objectNavParent+' [data-bp-scope="'+t+'"], #object-nav li.current').addClass("selected")),null!==r.querystring&&(void 0!==r.querystring[t+"_search"]?i=r.querystring[t+"_search"]:void 0!==r.querystring.s&&(i=r.querystring.s),i&&(i=r.urlDecode(i),p('#buddypress [data-bp-search="'+t+'"] input[type=search]').val(i))),p('#buddypress [data-bp-list="'+t+'"]').length&&(s={object:t,scope:n,filter:d,search_terms:i,extras:o},r.objectRequest(s))})},setHeartBeat:function(){void 0!==BP_Nouveau.pulse&&this.heartbeat&&(this.heartbeat.interval(Number(BP_Nouveau.pulse)),p.fn.extend({"heartbeat-send":function(){return this.bind("heartbeat-send.buddypress")}}),p.fn.extend({"heartbeat-tick":function(){return this.bind("heartbeat-tick.buddypress")}}))},addListeners:function(){p("[data-bp-disable-input]").on("change",this.toggleDisabledInput),p(document).on("heartbeat-send.buddypress",this.heartbeatSend),p(document).on("heartbeat-tick.buddypress",this.heartbeatTick),p(this.objectNavParent+" .bp-navs").on("click","a",this,this.scopeQuery),p("#buddypress [data-bp-filter]").on("change",this,this.filterQuery),p("#buddypress [data-bp-search]").on("submit","form",this,this.searchQuery),p("#buddypress [data-bp-search] form").on("search","input[type=search]",this.resetSearch),p("#buddypress [data-bp-list], #buddypress #item-header").on("click","[data-bp-btn-action]",this,this.buttonAction),p("#buddypress [data-bp-close]").on("click",this,this.closeNotice),p("#buddypress [data-bp-list]").on("click","[data-bp-pagination] a",this,this.paginateAction)},toggleDisabledInput:function(e){var t=p(e.currentTarget),a="#"+t.data("bp-disable-input"),e=t.prop("checked");t.removeClass("enabled disabled"),e?(t.addClass("enabled"),p(a).prop("disabled",!1)):(p(a).prop("disabled",!0),t.addClass("disabled"))},heartbeatSend:function(e,t){p("#buddypress").trigger("bp_heartbeat_send",t)},heartbeatTick:function(e,t){p("#buddypress").trigger("bp_heartbeat_tick",t)},scopeQuery:function(e){var t,a,s,r=e.data,n=p(e.currentTarget).parent(),i="";return n.hasClass("no-ajax")||p(e.currentTarget).hasClass("no-ajax")||!n.attr("data-bp-scope")?e:(t=n.data("bp-scope"),a=n.data("bp-object"),t&&a?(e.preventDefault(),s=p("#buddypress").find('[data-bp-filter="'+a+'"]').first().val(),p('#buddypress [data-bp-search="'+a+'"] input[type=search]').length&&(i=p('#buddypress [data-bp-search="'+a+'"] input[type=search]').val()),n.hasClass("dynamic")&&n.find("a span").html(""),void r.objectRequest({object:a,scope:t,filter:s,search_terms:i,page:1})):e)},filterQuery:function(e){var t=e.data,a=p(e.target).data("bp-filter"),s="all",r=p(e.target).val(),n="";if(!a)return e;p(t.objectNavParent+" [data-bp-object].selected").length&&(s=p(t.objectNavParent+" [data-bp-object].selected").data("bp-scope")),p('#buddypress [data-bp-search="'+a+'"] input[type=search]').length&&(n=p('#buddypress [data-bp-search="'+a+'"] input[type=search]').val()),t.objectRequest({object:a,scope:s,filter:r,search_terms:n,page:1,template:null})},searchQuery:function(e){var t,a,s,r=e.data,n="all";if(p(e.delegateTarget).hasClass("no-ajax")||void 0===p(e.delegateTarget).data("bp-search"))return e;e.preventDefault(),t=p(e.delegateTarget).data("bp-search"),a=p("#buddypress").find('[data-bp-filter="'+t+'"]').first().val(),s=p(e.delegateTarget).find("input[type=search]").first().val(),p(r.objectNavParent+" [data-bp-object]").length&&(n=p(r.objectNavParent+' [data-bp-object="'+t+'"].selected').data("bp-scope")),r.objectRequest({object:t,scope:n,filter:a,search_terms:s,page:1,template:null})},showSearchSubmit:function(e){p(e.delegateTarget).find("[type=submit]").addClass("bp-show"),p("[type=submit]").hasClass("bp-hide")&&p("[type=submit]").removeClass("bp-hide")},resetSearch:function(e){p(e.target).val()?p(e.delegateTarget).find("[type=submit]").show():p(e.delegateTarget).submit()},buttonAction:function(e){var a=e.data,s=p(e.currentTarget),r=s.data("bp-btn-action"),t=s.data("bp-nonce"),n=s.closest("[data-bp-item-id]"),i=n.data("bp-item-id"),o=s.closest(".list-wrap"),d=n.data("bp-item-component");if(!r||!i||!d)return e;if(e.preventDefault(),void 0!==BP_Nouveau[r+"_confirm"]&&!1===window.confirm(BP_Nouveau[r+"_confirm"])||s.hasClass("pending"))return!1;var t=t||s.prop("href"),c=a.getLinkParams(t,"_wpnonce"),t={is_friend:"remove_friend",not_friends:"add_friend",pending:"withdraw_friendship",accept_friendship:"accept_friendship",reject_friendship:"reject_friendship"};"members"===d&&void 0!==t[r]&&(r=t[r],d="friends"),s.addClass("pending loading"),a.ajax({action:d+"_"+r,item_id:i,_wpnonce:c},d).done(function(e){var t;{if(!1!==e.success)return"groups"===d&&void 0!==e.data.is_group&&e.data.is_group?window.location.reload():void 0!==e.data.is_user&&e.data.is_user?(s.parent().html(e.data.feedback),void n.fadeOut(1500)):(p(a.objectNavParent+' [data-bp-scope="personal"]').length&&(t=Number(p(a.objectNavParent+' [data-bp-scope="personal"] span').html())||0,-1!==p.inArray(r,["leave_group","remove_friend"])?--t:-1!==p.inArray(r,["join_group"])&&(t+=1),t<0&&(t=0),p(a.objectNavParent+' [data-bp-scope="personal"] span').html(t)),void s.parent().replaceWith(e.data.contents));o.prepend(e.data.feedback),s.removeClass("pending loading"),n.find(".bp-feedback").fadeOut(6e3)}})},closeNotice:function(e){var t=p(e.currentTarget);e.preventDefault(),"clear"===t.data("bp-close")&&(void 0!==p.cookie("bp-message")&&p.removeCookie("bp-message"),void 0!==p.cookie("bp-message-type")&&p.removeCookie("bp-message-type")),t.closest(".bp-feedback").hasClass("bp-sitewide-notice")&&s.Nouveau.ajax({action:"messages_dismiss_sitewide_notice"},"messages"),t.closest(".bp-feedback").remove()},paginateAction:function(e){var t,a=e.data,s=p(e.currentTarget),r=null,n=null,i=null,o=null,d=s.closest("[data-bp-pagination]").data("bp-pagination")||null;if(null===d)return e;e.preventDefault(),null!==(t=p(e.delegateTarget).data("bp-list")||null)&&(void 0!==(e=a.getStorage("bp-"+t)).scope&&(r=e.scope),void 0!==e.filter&&(n=e.filter),void 0!==e.extras&&(o=e.extras));d={object:t,scope:r,filter:n,search_terms:i=p('#buddypress [data-bp-search="'+t+'"] input[type=search]').length?p('#buddypress [data-bp-search="'+t+'"] input[type=search]').val():i,extras:o,page:a.getLinkParams(s.prop("href"),d)||1};a.objectRequest(d)}},s.Nouveau.start())}(window.bp,jQuery);
1
+ window.wp=window.wp||{},window.bp=window.bp||{},function(s,c){"undefined"!=typeof BP_Nouveau&&(s.Nouveau={start:function(){this.setupGlobals(),this.prepareDocument(),this.initObjects(),this.setHeartBeat(),this.addListeners()},setupGlobals:function(){this.ajax_request=null,this.objects=c.map(BP_Nouveau.objects,function(e){return e}),this.objectNavParent=BP_Nouveau.object_nav_parent,this.heartbeat=wp.heartbeat||{},this.querystring=this.getLinkParams()},prepareDocument:function(){var a;c("body").hasClass("no-js")&&c("body").removeClass("no-js").addClass("js"),BP_Nouveau.warnings&&"undefined"!=typeof console&&console.warn&&c.each(BP_Nouveau.warnings,function(e,t){console.warn(t)}),c(".buddypress_object_nav .widget-title").length&&(a=c(".buddypress_object_nav .widget-title").html(),c("body").find('*:contains("'+a+'")').each(function(e,t){c(t).hasClass("widget-title")||a!==c(t).html()||c(t).is("a")||c(t).remove()}))},getStorage:function(e,t){e=(e=sessionStorage.getItem(e))?JSON.parse(e):{};return void 0!==t?e[t]||!1:e},setStorage:function(e,t,a){var s=this.getStorage(e);return void 0===a&&void 0!==s[t]?delete s[t]:s[t]=a,sessionStorage.setItem(e,JSON.stringify(s)),null!==sessionStorage.getItem(e)},getLinkParams:function(e,t){e=e?-1!==e.indexOf("?")?"?"+e.split("?")[1]:"":document.location.search;if(!e)return null;e=e.replace(/(^\?)/,"").split("&").map(function(e){return this[(e=e.split("="))[0]]=e[1],this}.bind({}))[0];return t?e[t]:e},urlDecode:function(e,t){var a=t||{amp:"&",lt:"<",gt:">",quot:'"',"#039":"'"};return decodeURIComponent(e.replace(/\+/g," ")).replace(/&([^;]+);/g,function(e,t){return a[t]||""})},ajax:function(e,t){this.ajax_request&&this.ajax_request.abort();e=c.extend({},s.Nouveau.getStorage("bp-"+t),{nonce:BP_Nouveau.nonces[t]},e);return void 0!==BP_Nouveau.customizer_settings&&(e.customized=BP_Nouveau.customizer_settings),this.ajax_request=c.post(BP_Nouveau.ajaxurl,e,"json"),this.ajax_request},inject:function(e,t,a){c(e).length&&t&&("append"===(a=a||"reset")?c(e).append(t):"prepend"===a?c(e).prepend(t):c(e).html(t),"undefined"==typeof bp_mentions&&void 0===s.mentions||c(".bp-suggestions").bp_mentions(s.mentions.users))},objectRequest:function(a){var e,s=this;if((a=c.extend({object:"",scope:null,filter:null,target:"#buddypress [data-bp-list]",search_terms:"",page:1,extras:null,caller:null,template:null,method:"reset"},a)).object&&a.target)return a.search_terms&&(a.search_terms=a.search_terms.replace(/</g,"&lt;").replace(/>/g,"&gt;")),null!==a.scope&&this.setStorage("bp-"+a.object,"scope",a.scope),null!==a.filter&&this.setStorage("bp-"+a.object,"filter",a.filter),null!==a.extras&&this.setStorage("bp-"+a.object,"extras",a.extras),c(this.objectNavParent+" [data-bp-object]").each(function(){c(this).removeClass("selected loading")}),c(this.objectNavParent+' [data-bp-scope="'+a.scope+'"], #object-nav li.current').addClass("selected loading"),c('#buddypress [data-bp-filter="'+a.object+'"] option[value="'+a.filter+'"]').prop("selected",!0),"friends"===a.object||"friend_requests"===a.object||"group_members"===a.object?(a.template=a.object,a.object="members"):"group_requests"===a.object?(a.object="groups",a.template="group_requests"):"notifications"===a.object&&(a.object="members",a.template="member_notifications"),e=c.extend({action:a.object+"_filter"},a),this.ajax(e,a.object).done(function(e){var t;!1!==e.success&&((t=c(s.objectNavParent+' [data-bp-scope="'+a.scope+'"]')).removeClass("loading"),e.data&&e.data.totalItems&&e.data.navLabel&&t.find("a").first().html(e.data.navLabel+"&nbsp;").append(c("<span></span>").addClass("count").html(e.data.totalItems)),"reset"!==a.method?(s.inject(a.target,e.data.contents,a.method),c(a.target).trigger("bp_ajax_"+a.method,c.extend(a,{response:e.data}))):"pag-bottom"===a.caller&&c("#subnav").length?(t=c("#subnav").parent(),c("html,body").animate({scrollTop:t.offset().top},"slow",function(){c(a.target).fadeOut(100,function(){s.inject(this,e.data.contents,a.method),c(this).fadeIn(100,"swing",function(){c(a.target).trigger("bp_ajax_request",c.extend(a,{response:e.data}))})})})):c(a.target).fadeOut(100,function(){s.inject(this,e.data.contents,a.method),c(this).fadeIn(100,"swing",function(){c(a.target).trigger("bp_ajax_request",c.extend(a,{response:e.data}))})}))})},initObjects:function(){var a,s,r=this,n="all",o="",i=null,d=null;c.each(this.objects,function(e,t){void 0!==(a=r.getStorage("bp-"+t)).scope&&(n=a.scope),void 0!==a.extras&&"notifications"!==t&&(i=a.extras),c('#buddypress [data-bp-filter="'+t+'"]').length&&("-1"!==c('#buddypress [data-bp-filter="'+t+'"]').val()&&"0"!==c('#buddypress [data-bp-filter="'+t+'"]').val()?d=c('#buddypress [data-bp-filter="'+t+'"]').val():void 0!==a.filter&&(d=a.filter,c('#buddypress [data-bp-filter="'+t+'"] option[value="'+d+'"]').prop("selected",!0))),c(this.objectNavParent+' [data-bp-object="'+t+'"]').length&&(c(this.objectNavParent+' [data-bp-object="'+t+'"]').each(function(){c(this).removeClass("selected")}),c(this.objectNavParent+' [data-bp-scope="'+t+'"], #object-nav li.current').addClass("selected")),null!==r.querystring&&(void 0!==r.querystring[t+"_search"]?o=r.querystring[t+"_search"]:void 0!==r.querystring.s&&(o=r.querystring.s),o&&(o=r.urlDecode(o),c('#buddypress [data-bp-search="'+t+'"] input[type=search]').val(o))),c('#buddypress [data-bp-list="'+t+'"]').length&&(s={object:t,scope:n,filter:d,search_terms:o,extras:i},r.objectRequest(s))})},setHeartBeat:function(){void 0!==BP_Nouveau.pulse&&this.heartbeat&&(this.heartbeat.interval(Number(BP_Nouveau.pulse)),c.fn.extend({"heartbeat-send":function(){return this.bind("heartbeat-send.buddypress")}}),c.fn.extend({"heartbeat-tick":function(){return this.bind("heartbeat-tick.buddypress")}}))},addListeners:function(){c("[data-bp-disable-input]").on("change",this.toggleDisabledInput),c(document).on("heartbeat-send.buddypress",this.heartbeatSend),c(document).on("heartbeat-tick.buddypress",this.heartbeatTick),c(this.objectNavParent+" .bp-navs").on("click","a",this,this.scopeQuery),c("#buddypress [data-bp-filter]").on("change",this,this.filterQuery),c("#buddypress [data-bp-search]").on("submit","form",this,this.searchQuery),c("#buddypress [data-bp-search] form").on("search","input[type=search]",this.resetSearch),c("#buddypress [data-bp-list], #buddypress #item-header").on("click","[data-bp-btn-action]",this,this.buttonAction),c("#buddypress [data-bp-close]").on("click",this,this.closeNotice),c("#buddypress [data-bp-list]").on("click","[data-bp-pagination] a",this,this.paginateAction),BP_Nouveau.bpPasswordVerify&&BP_Nouveau.bpPasswordVerify.requiredPassStrength&&c("#pass1").on("input pwupdate",this.checkPassStrength)},toggleDisabledInput:function(e){var t=c(e.currentTarget),a="#"+t.data("bp-disable-input"),e=t.prop("checked");t.removeClass("enabled disabled"),e?(t.addClass("enabled"),c(a).prop("disabled",!1)):(c(a).prop("disabled",!0),t.addClass("disabled"))},heartbeatSend:function(e,t){c("#buddypress").trigger("bp_heartbeat_send",t)},heartbeatTick:function(e,t){c("#buddypress").trigger("bp_heartbeat_tick",t)},scopeQuery:function(e){var t,a,s,r=e.data,n=c(e.currentTarget).parent(),o="";return n.hasClass("no-ajax")||c(e.currentTarget).hasClass("no-ajax")||!n.attr("data-bp-scope")?e:(t=n.data("bp-scope"),a=n.data("bp-object"),t&&a?(e.preventDefault(),s=c("#buddypress").find('[data-bp-filter="'+a+'"]').first().val(),c('#buddypress [data-bp-search="'+a+'"] input[type=search]').length&&(o=c('#buddypress [data-bp-search="'+a+'"] input[type=search]').val()),n.hasClass("dynamic")&&n.find("a span").html(""),void r.objectRequest({object:a,scope:t,filter:s,search_terms:o,page:1})):e)},filterQuery:function(e){var t=e.data,a=c(e.target).data("bp-filter"),s="all",r=c(e.target).val(),n="";if(!a)return e;c(t.objectNavParent+" [data-bp-object].selected").length&&(s=c(t.objectNavParent+" [data-bp-object].selected").data("bp-scope")),c('#buddypress [data-bp-search="'+a+'"] input[type=search]').length&&(n=c('#buddypress [data-bp-search="'+a+'"] input[type=search]').val()),t.objectRequest({object:a,scope:s,filter:r,search_terms:n,page:1,template:null})},searchQuery:function(e){var t,a,s,r=e.data,n="all";if(c(e.delegateTarget).hasClass("no-ajax")||void 0===c(e.delegateTarget).data("bp-search"))return e;e.preventDefault(),t=c(e.delegateTarget).data("bp-search"),a=c("#buddypress").find('[data-bp-filter="'+t+'"]').first().val(),s=c(e.delegateTarget).find("input[type=search]").first().val(),c(r.objectNavParent+" [data-bp-object]").length&&(n=c(r.objectNavParent+' [data-bp-object="'+t+'"].selected').data("bp-scope")),r.objectRequest({object:t,scope:n,filter:a,search_terms:s,page:1,template:null})},showSearchSubmit:function(e){c(e.delegateTarget).find("[type=submit]").addClass("bp-show"),c("[type=submit]").hasClass("bp-hide")&&c("[type=submit]").removeClass("bp-hide")},resetSearch:function(e){c(e.target).val()?c(e.delegateTarget).find("[type=submit]").show():c(e.delegateTarget).submit()},buttonAction:function(e){var a=e.data,s=c(e.currentTarget),r=s.data("bp-btn-action"),t=s.data("bp-nonce"),n=s.closest("[data-bp-item-id]"),o=n.data("bp-item-id"),i=s.closest(".list-wrap"),d=n.data("bp-item-component");if(!r||!o||!d)return e;if(e.preventDefault(),void 0!==BP_Nouveau[r+"_confirm"]&&!1===window.confirm(BP_Nouveau[r+"_confirm"])||s.hasClass("pending"))return!1;var t=t||s.prop("href"),p=a.getLinkParams(t,"_wpnonce"),t={is_friend:"remove_friend",not_friends:"add_friend",pending:"withdraw_friendship",accept_friendship:"accept_friendship",reject_friendship:"reject_friendship"};"members"===d&&void 0!==t[r]&&(r=t[r],d="friends"),s.addClass("pending loading"),a.ajax({action:d+"_"+r,item_id:o,_wpnonce:p},d).done(function(e){var t;{if(!1!==e.success)return"groups"===d&&void 0!==e.data.is_group&&e.data.is_group?window.location.reload():void 0!==e.data.is_user&&e.data.is_user?(s.parent().html(e.data.feedback),void n.fadeOut(1500)):(c(a.objectNavParent+' [data-bp-scope="personal"]').length&&(t=Number(c(a.objectNavParent+' [data-bp-scope="personal"] span').html())||0,-1!==c.inArray(r,["leave_group","remove_friend"])?--t:-1!==c.inArray(r,["join_group"])&&(t+=1),t<0&&(t=0),c(a.objectNavParent+' [data-bp-scope="personal"] span').html(t)),void s.parent().replaceWith(e.data.contents));i.prepend(e.data.feedback),s.removeClass("pending loading"),n.find(".bp-feedback").fadeOut(6e3)}})},closeNotice:function(e){var t=c(e.currentTarget);e.preventDefault(),"clear"===t.data("bp-close")&&(void 0!==c.cookie("bp-message")&&c.removeCookie("bp-message"),void 0!==c.cookie("bp-message-type")&&c.removeCookie("bp-message-type")),t.closest(".bp-feedback").hasClass("bp-sitewide-notice")&&s.Nouveau.ajax({action:"messages_dismiss_sitewide_notice"},"messages"),t.closest(".bp-feedback").remove()},paginateAction:function(e){var t,a=e.data,s=c(e.currentTarget),r=null,n=null,o=null,i=null,d=s.closest("[data-bp-pagination]").data("bp-pagination")||null;if(null===d)return e;e.preventDefault(),null!==(t=c(e.delegateTarget).data("bp-list")||null)&&(void 0!==(e=a.getStorage("bp-"+t)).scope&&(r=e.scope),void 0!==e.filter&&(n=e.filter),void 0!==e.extras&&(i=e.extras));d={object:t,scope:r,filter:n,search_terms:o=c('#buddypress [data-bp-search="'+t+'"] input[type=search]').length?c('#buddypress [data-bp-search="'+t+'"] input[type=search]').val():o,extras:i,page:a.getLinkParams(s.prop("href"),d)||1};a.objectRequest(d)},checkPassStrength:function(e){var t=BP_Nouveau.bpPasswordVerify,a=parseInt(t.requiredPassStrength,10),s=c(e.currentTarget).val(),r=c("#pass2").val(),n=c(e.currentTarget).closest("form"),s="function"==typeof wp.passwordStrength.userInputDisallowedList?wp.passwordStrength.meter(s,wp.passwordStrength.userInputDisallowedList(),r):wp.passwordStrength.meter(s,wp.passwordStrength.userInputBlacklist(),r);a&&a<=4&&(r=c(n).find("#password-warning"),s<a?(c(r).length||c(e.currentTarget).before(c("<p></p>").prop("id","password-warning").addClass("description")),c(r).html(t.tooWeakPasswordWarning)):c(r).length&&c(r).remove(),c(n).find("#password-strength-score").length||c(n).prepend(c("<input></input>").prop({id:"password-strength-score",type:"hidden",name:"_password_strength_score"})),c("#password-strength-score").val(s),s<a&&c(".pw-weak").remove())}},s.Nouveau.start())}(window.bp,jQuery);
bp-templates/bp-nouveau/js/password-verify.js DELETED
@@ -1,59 +0,0 @@
1
- /* jshint undef: false */
2
- /* Password Verify */
3
- /* global pwsL10n */
4
- /* @since 3.0.0 */
5
- /* @version 8.0.0 */
6
- ( function( $ ){
7
- /**
8
- * Function to inform the user about the strength of its password.
9
- *
10
- * @deprecated since version 5.0.0.
11
- */
12
- function check_pass_strength() {
13
- var pass1 = $( '.password-entry' ).val(),
14
- pass2 = $( '.password-entry-confirm' ).val(),
15
- strength;
16
-
17
- // Reset classes and result text.
18
- $( '#pass-strength-result' ).removeClass( 'show mismatch short bad good strong' );
19
- if ( ! pass1 ) {
20
- $( '#pass-strength-result' ).html( pwsL10n.empty );
21
- return;
22
- }
23
-
24
- // wp.passwordStrength.userInputBlacklist() has been deprecated in WP 5.5.0.
25
- if ( 'function' === typeof wp.passwordStrength.userInputDisallowedList ) {
26
- strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputDisallowedList(), pass2 );
27
- } else {
28
- strength = wp.passwordStrength.meter( pass1, wp.passwordStrength.userInputBlacklist(), pass2 );
29
- }
30
-
31
- switch ( strength ) {
32
- case 2:
33
- $( '#pass-strength-result' ).addClass( 'show bad' ).html( pwsL10n.bad );
34
- break;
35
- case 3:
36
- $( '#pass-strength-result' ).addClass( 'show good' ).html( pwsL10n.good );
37
- break;
38
- case 4:
39
- $( '#pass-strength-result' ).addClass( 'show strong' ).html( pwsL10n.strong );
40
- break;
41
- case 5:
42
- $( '#pass-strength-result' ).addClass( 'show mismatch' ).html( pwsL10n.mismatch );
43
- break;
44
- default:
45
- $( '#pass-strength-result' ).addClass( 'show short' ).html( pwsL10n['short'] );
46
- break;
47
- }
48
- }
49
-
50
- // Bind check_pass_strength to keyup events in the password fields.
51
- $( function() {
52
- $( '.password-entry' ).val( '' ).keyup( check_pass_strength );
53
- $( '.password-entry-confirm' ).val( '' ).keyup( check_pass_strength );
54
-
55
- // Display a deprecated warning.
56
- console.warn( 'The bp-nouveau/js/password-verify.js script is deprecated since 5.0.0 and will be deleted in version 6.0.0.' );
57
- } );
58
-
59
- } )( jQuery );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
bp-templates/bp-nouveau/js/password-verify.min.js DELETED
@@ -1 +0,0 @@
1
- !function(e){function s(){var s=e(".password-entry").val(),t=e(".password-entry-confirm").val();if(e("#pass-strength-result").removeClass("show mismatch short bad good strong"),s)switch("function"==typeof wp.passwordStrength.userInputDisallowedList?wp.passwordStrength.meter(s,wp.passwordStrength.userInputDisallowedList(),t):wp.passwordStrength.meter(s,wp.passwordStrength.userInputBlacklist(),t)){case 2:e("#pass-strength-result").addClass("show bad").html(pwsL10n.bad);break;case 3:e("#pass-strength-result").addClass("show good").html(pwsL10n.good);break;case 4:e("#pass-strength-result").addClass("show strong").html(pwsL10n.strong);break;case 5:e("#pass-strength-result").addClass("show mismatch").html(pwsL10n.mismatch);break;default:e("#pass-strength-result").addClass("show short").html(pwsL10n.short)}else e("#pass-strength-result").html(pwsL10n.empty)}e(function(){e(".password-entry").val("").keyup(s),e(".password-entry-confirm").val("").keyup(s),console.warn("The bp-nouveau/js/password-verify.js script is deprecated since 5.0.0 and will be deleted in version 6.0.0.")})}(jQuery);
 
bp-templates/bp-nouveau/sass/_nouveau_messages.scss CHANGED
@@ -7,7 +7,8 @@
7
  .message-action-star:before,
8
  .message-action-unstar:before,
9
  .message-action-view:before,
10
- .message-action-delete:before {
 
11
  font-family: dashicons;
12
  font-size: 18px;
13
  }
@@ -30,6 +31,10 @@
30
  content: "\f153";
31
  }
32
 
 
 
 
 
33
  .message-action-delete:hover:before {
34
  color: #a00;
35
  }
7
  .message-action-star:before,
8
  .message-action-unstar:before,
9
  .message-action-view:before,
10
+ .message-action-delete:before,
11
+ .message-action-exit:before {
12
  font-family: dashicons;
13
  font-size: 18px;
14
  }
31
  content: "\f153";
32
  }
33
 
34
+ .message-action-exit:before {
35
+ content: "\f14a";
36
+ }
37
+
38
  .message-action-delete:hover:before {
39
  color: #a00;
40
  }
bp-templates/bp-nouveau/sass/twentytwentyone.scss CHANGED
@@ -1227,7 +1227,8 @@ body {
1227
  border: none;
1228
  background: none;
1229
 
1230
- &.message-action-delete {
 
1231
 
1232
  &:before {
1233
  width: 32px;
1227
  border: none;
1228
  background: none;
1229
 
1230
+ &.message-action-delete,
1231
+ &.message-action-exit {
1232
 
1233
  &:before {
1234
  width: 32px;
buddypress.pot CHANGED
@@ -9,7 +9,7 @@ msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-12-12T16:26:57+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: buddypress\n"
@@ -117,7 +117,7 @@ msgstr ""
117
  #: bp-activity/actions/post.php:60
118
  #: bp-activity/bp-activity-functions.php:2084
119
  #: bp-activity/classes/class-bp-activity-activity.php:294
120
- #: bp-templates/bp-legacy/buddypress-functions.php:965
121
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:512
122
  msgid "Please enter some content to post."
123
  msgstr ""
@@ -131,7 +131,7 @@ msgid "There was an error when posting your update. Please try again."
131
  msgstr ""
132
 
133
  #: bp-activity/actions/reply.php:54
134
- #: bp-templates/bp-legacy/buddypress-functions.php:1057
135
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:377
136
  msgid "Please do not leave the comment area blank."
137
  msgstr ""
@@ -693,7 +693,7 @@ msgid "User account has not yet been activated."
693
  msgstr ""
694
 
695
  #: bp-activity/bp-activity-functions.php:2735
696
- #: bp-templates/bp-legacy/buddypress-functions.php:1054
697
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:356
698
  msgid "There was an error posting your reply. Please try again."
699
  msgstr ""
@@ -872,7 +872,7 @@ msgstr ""
872
  #: bp-activity/bp-activity-template.php:1258
873
  #: bp-activity/classes/class-bp-activity-component.php:442
874
  #: bp-blogs/classes/class-bp-blogs-component.php:340
875
- #: bp-friends/bp-friends-blocks.php:186
876
  #: bp-friends/classes/class-bp-friends-component.php:312
877
  #: bp-groups/bp-groups-template.php:1804
878
  #: bp-groups/bp-groups-template.php:1850
@@ -885,8 +885,8 @@ msgstr ""
885
  #: bp-groups/bp-groups-template.php:4171
886
  #: bp-groups/bp-groups-template.php:5789
887
  #: bp-groups/classes/class-bp-groups-component.php:927
888
- #: bp-members/bp-members-blocks.php:479
889
- #: bp-members/bp-members-blocks.php:639
890
  #: bp-members/bp-members-template.php:864
891
  #: bp-members/bp-members-template.php:1675
892
  #: bp-members/bp-members-template.php:1734
@@ -1001,7 +1001,7 @@ msgstr ""
1001
  #: bp-groups/classes/class-bp-groups-template.php:133
1002
  #: bp-members/classes/class-bp-core-members-template.php:130
1003
  #: bp-messages/classes/class-bp-messages-box-template.php:119
1004
- #: bp-messages/classes/class-bp-messages-thread.php:575
1005
  #: bp-xprofile/classes/class-bp-xprofile-data-template.php:133
1006
  msgid "Arguments passed to %1$s should be in an associative array. See the inline documentation at %2$s for more details."
1007
  msgstr ""
@@ -2296,7 +2296,7 @@ msgid "Using the search form, you can search for an opt-out to a specific email
2296
  msgstr ""
2297
 
2298
  #: bp-core/admin/bp-core-admin-optouts.php:76
2299
- #: bp-groups/bp-groups-admin.php:1049
2300
  #: bp-members/classes/class-bp-members-admin.php:1739
2301
  #: bp-members/classes/class-bp-members-admin.php:2747
2302
  #: bp-templates/bp-legacy/buddypress/members/single/invitations/invitations-loop.php:28
@@ -3094,7 +3094,7 @@ msgid "You must log in to access the page you requested."
3094
  msgstr ""
3095
 
3096
  #: bp-core/bp-core-cssjs.php:184
3097
- #: bp-templates/bp-nouveau/buddypress-functions.php:489
3098
  msgid "Are you sure?"
3099
  msgstr ""
3100
 
@@ -3575,7 +3575,7 @@ msgstr ""
3575
 
3576
  #. translators: link to Privacy Policy
3577
  #: bp-core/bp-core-functions.php:3706
3578
- #: bp-templates/bp-nouveau/includes/template-tags.php:2570
3579
  msgid "Privacy Policy"
3580
  msgstr ""
3581
 
@@ -4321,7 +4321,7 @@ msgstr ""
4321
  #: bp-members/bp-members-membership-requests.php:431
4322
  #: bp-members/bp-members-membership-requests.php:450
4323
  #: bp-members/classes/class-bp-registration-theme-compat.php:101
4324
- #: bp-templates/bp-legacy/buddypress-functions.php:1612
4325
  msgid "Request Membership"
4326
  msgstr ""
4327
 
@@ -4337,7 +4337,7 @@ msgstr ""
4337
 
4338
  #: bp-core/bp-core-template.php:3207
4339
  #: bp-groups/bp-groups-template.php:3715
4340
- #: bp-templates/bp-nouveau/includes/groups/functions.php:583
4341
  msgid "Create a Group"
4342
  msgstr ""
4343
 
@@ -5311,14 +5311,14 @@ msgstr ""
5311
 
5312
  #: bp-core/deprecated/1.6.php:128
5313
  #: bp-core/deprecated/1.6.php:151
5314
- #: bp-friends/bp-friends-blocks.php:115
5315
  #: bp-friends/classes/class-bp-core-friends-widget.php:109
5316
  #: bp-friends/classes/class-bp-core-friends-widget.php:204
5317
- #: bp-groups/bp-groups-blocks.php:385
5318
  #: bp-groups/bp-groups-template.php:4713
5319
  #: bp-groups/classes/class-bp-groups-widget.php:128
5320
  #: bp-groups/classes/class-bp-groups-widget.php:243
5321
- #: bp-members/bp-members-blocks.php:406
5322
  #: bp-members/classes/class-bp-core-members-widget.php:116
5323
  #: bp-members/classes/class-bp-core-members-widget.php:237
5324
  #: bp-templates/bp-legacy/buddypress/blogs/index.php:112
@@ -5399,7 +5399,7 @@ msgid "You already have a pending friendship request with this user"
5399
  msgstr ""
5400
 
5401
  #: bp-friends/actions/remove-friend.php:38
5402
- #: bp-templates/bp-legacy/buddypress-functions.php:1451
5403
  msgid "Friendship could not be canceled."
5404
  msgstr ""
5405
 
@@ -5433,7 +5433,7 @@ msgstr ""
5433
  msgid "%1$s and %2$s are now friends"
5434
  msgstr ""
5435
 
5436
- #: bp-friends/bp-friends-blocks.php:82
5437
  #: bp-friends/classes/class-bp-core-friends-widget.php:143
5438
  #: bp-templates/bp-legacy/buddypress/members/members-loop.php:143
5439
  #: bp-templates/bp-nouveau/includes/functions.php:1042
@@ -5442,19 +5442,19 @@ msgid "Sorry, no members were found."
5442
  msgstr ""
5443
 
5444
  #. translators: %s: member name
5445
- #: bp-friends/bp-friends-blocks.php:99
5446
  #: bp-friends/bp-friends-template.php:85
5447
  #: bp-friends/classes/class-bp-core-friends-widget.php:71
5448
  msgid "%s's Friends"
5449
  msgstr ""
5450
 
5451
- #: bp-friends/bp-friends-blocks.php:119
5452
  #: bp-friends/classes/class-bp-core-friends-widget.php:110
5453
  #: bp-friends/classes/class-bp-core-friends-widget.php:205
5454
- #: bp-groups/bp-groups-blocks.php:389
5455
  #: bp-groups/classes/class-bp-groups-widget.php:130
5456
  #: bp-groups/classes/class-bp-groups-widget.php:244
5457
- #: bp-members/bp-members-blocks.php:410
5458
  #: bp-members/classes/class-bp-core-members-widget.php:118
5459
  #: bp-members/classes/class-bp-core-members-widget.php:238
5460
  #: bp-members/classes/class-bp-members-admin.php:1186
@@ -5464,13 +5464,13 @@ msgstr ""
5464
  msgid "Active"
5465
  msgstr ""
5466
 
5467
- #: bp-friends/bp-friends-blocks.php:123
5468
  #: bp-friends/classes/class-bp-core-friends-widget.php:111
5469
  #: bp-friends/classes/class-bp-core-friends-widget.php:206
5470
- #: bp-groups/bp-groups-blocks.php:393
5471
  #: bp-groups/classes/class-bp-groups-widget.php:132
5472
  #: bp-groups/classes/class-bp-groups-widget.php:245
5473
- #: bp-members/bp-members-blocks.php:417
5474
  #: bp-members/classes/class-bp-core-members-widget.php:122
5475
  #: bp-members/classes/class-bp-core-members-widget.php:239
5476
  #: bp-friends/js/blocks/friends.js:25
@@ -5480,28 +5480,28 @@ msgid "Popular"
5480
  msgstr ""
5481
 
5482
  #. translators: %s is time elapsed since the registration date happened
5483
- #: bp-friends/bp-friends-blocks.php:162
5484
- #: bp-members/bp-members-blocks.php:455
5485
  msgctxt "The timestamp when the user registered"
5486
  msgid "Registered %s"
5487
  msgstr ""
5488
 
5489
  #. translators: %s: total friend count
5490
- #: bp-friends/bp-friends-blocks.php:165
5491
- #: bp-members/bp-members-blocks.php:458
5492
  msgid "%s friend"
5493
  msgid_plural "%s friends"
5494
  msgstr[0] ""
5495
  msgstr[1] ""
5496
 
5497
  #. translators: %s: last activity timestamp (e.g. "Active 1 hour ago")
5498
- #: bp-friends/bp-friends-blocks.php:168
5499
  #: bp-groups/bp-groups-blocks.php:284
5500
- #: bp-groups/bp-groups-blocks.php:443
5501
  #: bp-groups/classes/class-bp-groups-invite-template.php:283
5502
  #: bp-groups/classes/class-bp-groups-widget.php:155
5503
  #: bp-members/bp-members-blocks.php:312
5504
- #: bp-members/bp-members-blocks.php:461
5505
  #: bp-members/bp-members-template.php:1055
5506
  #: bp-members/bp-members-template.php:1814
5507
  #: bp-templates/bp-legacy/buddypress/groups/groups-loop.php:71
@@ -5662,7 +5662,7 @@ msgstr[0] ""
5662
  msgstr[1] ""
5663
 
5664
  #: bp-friends/bp-friends-template.php:395
5665
- #: bp-templates/bp-legacy/buddypress-functions.php:1463
5666
  msgid "Cancel Friendship Request"
5667
  msgstr ""
5668
 
@@ -5675,8 +5675,8 @@ msgid "Cancel Friendship"
5675
  msgstr ""
5676
 
5677
  #: bp-friends/bp-friends-template.php:443
5678
- #: bp-templates/bp-legacy/buddypress-functions.php:1453
5679
- #: bp-templates/bp-legacy/buddypress-functions.php:1471
5680
  msgid "Add Friend"
5681
  msgstr ""
5682
 
@@ -5794,7 +5794,7 @@ msgid "Those users are already friends or have sent friendship request(s) recent
5794
  msgstr ""
5795
 
5796
  #: bp-friends/classes/class-bp-rest-friends-endpoint.php:338
5797
- #: bp-templates/bp-nouveau/includes/groups/functions.php:493
5798
  msgid "You are not allowed to perform this action."
5799
  msgstr ""
5800
 
@@ -6241,7 +6241,7 @@ msgstr[0] ""
6241
  msgstr[1] ""
6242
 
6243
  #: bp-groups/bp-groups-admin.php:821
6244
- #: bp-groups/bp-groups-blocks.php:351
6245
  #: bp-groups/classes/class-bp-groups-component.php:1130
6246
  #: bp-groups/classes/class-bp-groups-widget.php:77
6247
  #: bp-groups/classes/class-bp-groups-widget.php:214
@@ -6317,74 +6317,74 @@ msgstr ""
6317
  msgid "Add new members"
6318
  msgstr ""
6319
 
6320
- #: bp-groups/bp-groups-admin.php:998
6321
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:26
6322
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:28
6323
  msgid "Administrators"
6324
  msgstr ""
6325
 
6326
- #: bp-groups/bp-groups-admin.php:999
6327
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:119
6328
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:59
6329
  msgid "Moderators"
6330
  msgstr ""
6331
 
6332
  #. translators: accessibility text
6333
- #: bp-groups/bp-groups-admin.php:1000
6334
  #: bp-groups/bp-groups-template.php:4692
6335
  #: bp-groups/classes/class-bp-groups-component.php:784
6336
- #: bp-members/bp-members-blocks.php:372
6337
  #: bp-members/classes/class-bp-core-members-widget.php:258
6338
  #: bp-members/classes/class-bp-members-component.php:38
6339
  #: bp-members/classes/class-bp-members-component.php:883
6340
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:214
6341
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:89
6342
  #: bp-templates/bp-nouveau/includes/customizer.php:274
6343
  #: bp-members/js/blocks/dynamic-members.js:190
6344
  #: bp-members/js/blocks/members.js:384
6345
  msgid "Members"
6346
  msgstr ""
6347
 
6348
- #: bp-groups/bp-groups-admin.php:1001
6349
  msgid "Banned Members"
6350
  msgstr ""
6351
 
6352
- #: bp-groups/bp-groups-admin.php:1013
6353
  msgctxt "Group member user_id in group admin"
6354
  msgid "ID"
6355
  msgstr ""
6356
 
6357
- #: bp-groups/bp-groups-admin.php:1014
6358
  msgctxt "Group member name in group admin"
6359
  msgid "Name"
6360
  msgstr ""
6361
 
6362
- #: bp-groups/bp-groups-admin.php:1015
6363
  msgctxt "Group member role in group admin"
6364
  msgid "Group Role"
6365
  msgstr ""
6366
 
6367
  #. translators: accessibility text
6368
- #: bp-groups/bp-groups-admin.php:1038
6369
  msgid "Select group role for member"
6370
  msgstr ""
6371
 
6372
- #: bp-groups/bp-groups-admin.php:1041
6373
  msgid "Roles"
6374
  msgstr ""
6375
 
6376
- #: bp-groups/bp-groups-admin.php:1042
6377
  #: bp-groups/bp-groups-functions.php:1335
6378
  msgid "Administrator"
6379
  msgstr ""
6380
 
6381
- #: bp-groups/bp-groups-admin.php:1043
6382
  #: bp-groups/bp-groups-functions.php:1343
6383
  #: bp-groups/bp-groups-functions.php:3349
6384
  msgid "Moderator"
6385
  msgstr ""
6386
 
6387
- #: bp-groups/bp-groups-admin.php:1044
6388
  #: bp-groups/bp-groups-functions.php:1351
6389
  #: bp-groups/bp-groups-functions.php:3351
6390
  #: bp-members/classes/class-bp-members-admin.php:912
@@ -6392,32 +6392,32 @@ msgstr ""
6392
  msgid "Member"
6393
  msgstr ""
6394
 
6395
- #: bp-groups/bp-groups-admin.php:1046
6396
  #: bp-groups/bp-groups-functions.php:1359
6397
  msgid "Banned"
6398
  msgstr ""
6399
 
6400
- #: bp-groups/bp-groups-admin.php:1050
6401
  msgid "Remove"
6402
  msgstr ""
6403
 
6404
- #: bp-groups/bp-groups-admin.php:1052
6405
  msgid "Ban"
6406
  msgstr ""
6407
 
6408
- #: bp-groups/bp-groups-admin.php:1094
6409
  msgid "No members of this type"
6410
  msgstr ""
6411
 
6412
- #: bp-groups/bp-groups-admin.php:1119
6413
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:12
6414
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:39
6415
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:366
6416
  #: bp-xprofile/classes/class-bp-xprofile-group.php:951
6417
  msgid "Delete Group"
6418
  msgstr ""
6419
 
6420
- #: bp-groups/bp-groups-admin.php:1123
6421
  #: bp-groups/classes/class-bp-group-extension.php:523
6422
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:53
6423
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:115
@@ -6428,35 +6428,35 @@ msgstr ""
6428
  #: bp-templates/bp-nouveau/includes/functions.php:1334
6429
  #: bp-templates/bp-nouveau/includes/functions.php:1345
6430
  #: bp-templates/bp-nouveau/includes/functions.php:1356
6431
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:358
6432
  msgid "Save Changes"
6433
  msgstr ""
6434
 
6435
  #. translators: accessibility text
6436
- #: bp-groups/bp-groups-admin.php:1153
6437
  msgid "Select group type"
6438
  msgstr ""
6439
 
6440
- #: bp-groups/bp-groups-admin.php:1163
6441
  msgid "(Not available on the front end)"
6442
  msgstr ""
6443
 
6444
- #: bp-groups/bp-groups-admin.php:1258
6445
  msgid "&laquo;"
6446
  msgstr ""
6447
 
6448
- #: bp-groups/bp-groups-admin.php:1259
6449
  msgid "&raquo;"
6450
  msgstr ""
6451
 
6452
- #: bp-groups/bp-groups-admin.php:1265
6453
  #: bp-groups/bp-groups-template.php:4539
6454
  #: bp-members/bp-members-template.php:536
6455
  msgid "Viewing 1 member"
6456
  msgstr ""
6457
 
6458
  #. translators: 1: group member from number. 2: group member to number. 3: total group members.
6459
- #: bp-groups/bp-groups-admin.php:1269
6460
  msgctxt "Group members pagination in group admin"
6461
  msgid "Viewing %1$s - %2$s of %3$s member"
6462
  msgid_plural "Viewing %1$s - %2$s of %3$s members"
@@ -6464,55 +6464,55 @@ msgstr[0] ""
6464
  msgstr[1] ""
6465
 
6466
  #. Translators: 1: user_login, 2: user_email.
6467
- #: bp-groups/bp-groups-admin.php:1335
6468
  msgid "%1$s (%2$s)"
6469
  msgstr ""
6470
 
6471
- #: bp-groups/bp-groups-admin.php:1428
6472
  msgid "There was an error while changing group type. Please try again."
6473
  msgstr ""
6474
 
6475
- #: bp-groups/bp-groups-admin.php:1431
6476
  msgid "Group type was changed successfully."
6477
  msgstr ""
6478
 
6479
- #: bp-groups/bp-groups-admin.php:1471
6480
  msgid "Please define the Group Type ID field."
6481
  msgstr ""
6482
 
6483
- #: bp-groups/bp-groups-admin.php:1472
6484
  msgid "Group type successfully added."
6485
  msgstr ""
6486
 
6487
- #: bp-groups/bp-groups-admin.php:1473
6488
  msgid "Sorry, there was an error and the Group type wasn’t added."
6489
  msgstr ""
6490
 
6491
- #: bp-groups/bp-groups-admin.php:1475
6492
  msgid "Group type successfully updated."
6493
  msgstr ""
6494
 
6495
- #: bp-groups/bp-groups-admin.php:1476
6496
  msgid "Sorry, this Group type already exists."
6497
  msgstr ""
6498
 
6499
- #: bp-groups/bp-groups-admin.php:1477
6500
  msgid "Sorry, the Group type was not deleted: it does not exist."
6501
  msgstr ""
6502
 
6503
- #: bp-groups/bp-groups-admin.php:1478
6504
  msgid "Sorry, This Group type is registered using code, deactivate the plugin or remove the custom code before trying to delete it again."
6505
  msgstr ""
6506
 
6507
- #: bp-groups/bp-groups-admin.php:1479
6508
  msgid "Sorry, there was an error while trying to delete this Group type."
6509
  msgstr ""
6510
 
6511
- #: bp-groups/bp-groups-admin.php:1480
6512
  msgid "Group type successfully deleted."
6513
  msgstr ""
6514
 
6515
- #: bp-groups/bp-groups-admin.php:1481
6516
  msgid "Group type could not be updated due to missing required information."
6517
  msgstr ""
6518
 
@@ -6531,7 +6531,7 @@ msgstr ""
6531
  #. Translators: %s is the group's name.
6532
  #: bp-groups/bp-groups-blocks.php:96
6533
  #: bp-groups/bp-groups-blocks.php:259
6534
- #: bp-groups/bp-groups-blocks.php:462
6535
  #: bp-groups/js/dynamic-groups.js:51
6536
  msgid "Group Profile photo of %s"
6537
  msgstr ""
@@ -6543,13 +6543,13 @@ msgid_plural "%d members"
6543
  msgstr[0] ""
6544
  msgstr[1] ""
6545
 
6546
- #: bp-groups/bp-groups-blocks.php:362
6547
  #: bp-groups/classes/class-bp-groups-widget.php:171
6548
  #: bp-groups/js/dynamic-groups.js:56
6549
  msgid "There are no groups to display."
6550
  msgstr ""
6551
 
6552
- #: bp-groups/bp-groups-blocks.php:397
6553
  #: bp-groups/bp-groups-template.php:4720
6554
  #: bp-groups/classes/class-bp-groups-widget.php:134
6555
  #: bp-groups/classes/class-bp-groups-widget.php:246
@@ -6560,7 +6560,7 @@ msgstr ""
6560
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:24
6561
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:25
6562
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:108
6563
- #: bp-templates/bp-nouveau/includes/groups/functions.php:641
6564
  #: bp-templates/bp-nouveau/includes/members/functions.php:125
6565
  #: bp-templates/bp-nouveau/includes/members/functions.php:143
6566
  #: bp-groups/js/blocks/dynamic-groups.js:29
@@ -6568,13 +6568,13 @@ msgid "Alphabetical"
6568
  msgstr ""
6569
 
6570
  #. translators: %s is time elapsed since the group was created
6571
- #: bp-groups/bp-groups-blocks.php:435
6572
  #: bp-groups/js/dynamic-groups.js:33
6573
  msgid "Created %s"
6574
  msgstr ""
6575
 
6576
  #. translators: %s is the number of Group members
6577
- #: bp-groups/bp-groups-blocks.php:440
6578
  #: bp-groups/bp-groups-template.php:2226
6579
  #: bp-templates/bp-nouveau/buddypress/members/single/groups/invites.php:40
6580
  msgid "%s member"
@@ -7022,8 +7022,8 @@ msgstr[1] ""
7022
  #: bp-groups/bp-groups-template.php:2606
7023
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:75
7024
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:169
7025
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:45
7026
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:75
7027
  msgid "Demote to Member"
7028
  msgstr ""
7029
 
@@ -7041,8 +7041,8 @@ msgstr ""
7041
  #: bp-groups/bp-groups-template.php:2605
7042
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:168
7043
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:277
7044
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:74
7045
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:894
7046
  msgid "Promote to Admin"
7047
  msgstr ""
7048
 
@@ -7055,13 +7055,13 @@ msgid "This action should not be used directly. Please use the BuddyPress Group
7055
  msgstr ""
7056
 
7057
  #: bp-groups/bp-groups-template.php:3598
7058
- #: bp-templates/bp-legacy/buddypress-functions.php:1576
7059
- #: bp-templates/bp-legacy/buddypress-functions.php:1590
7060
  msgid "Leave Group"
7061
  msgstr ""
7062
 
7063
  #: bp-groups/bp-groups-template.php:3619
7064
- #: bp-templates/bp-legacy/buddypress-functions.php:1610
7065
  msgid "Join Group"
7066
  msgstr ""
7067
 
@@ -7070,7 +7070,7 @@ msgid "Accept Invitation"
7070
  msgstr ""
7071
 
7072
  #: bp-groups/bp-groups-template.php:3652
7073
- #: bp-templates/bp-legacy/buddypress-functions.php:1600
7074
  msgid "Request Sent"
7075
  msgstr ""
7076
 
@@ -7626,7 +7626,7 @@ msgid "Sorry, you need to be logged in to create an invitation."
7626
  msgstr ""
7627
 
7628
  #: bp-groups/classes/class-bp-rest-group-invites-endpoint.php:519
7629
- #: bp-templates/bp-nouveau/includes/groups/functions.php:531
7630
  msgid "Sorry, you are not allowed to create the invitation as requested."
7631
  msgstr ""
7632
 
@@ -8453,24 +8453,24 @@ msgstr ""
8453
  msgid "View Profile"
8454
  msgstr ""
8455
 
8456
- #: bp-members/bp-members-blocks.php:383
8457
  #: bp-members/js/dynamic-members.js:56
8458
  msgid "No members found."
8459
  msgstr ""
8460
 
8461
- #: bp-members/bp-members-blocks.php:685
8462
  #: bp-members/classes/class-bp-core-whos-online-widget.php:180
8463
  #: bp-members/classes/class-bp-members-component.php:917
8464
  #: bp-members/js/blocks/online-members.js:127
8465
  msgid "Who's Online"
8466
  msgstr ""
8467
 
8468
- #: bp-members/bp-members-blocks.php:687
8469
  #: bp-members/classes/class-bp-core-whos-online-widget.php:103
8470
  msgid "There are no users currently online"
8471
  msgstr ""
8472
 
8473
- #: bp-members/bp-members-blocks.php:710
8474
  #: bp-members/classes/class-bp-core-recently-active-widget.php:180
8475
  #: bp-members/classes/class-bp-members-component.php:943
8476
  #: bp-members/js/blocks/active-members.js:116
@@ -8478,7 +8478,7 @@ msgstr ""
8478
  msgid "Recently Active Members"
8479
  msgstr ""
8480
 
8481
- #: bp-members/bp-members-blocks.php:712
8482
  #: bp-members/classes/class-bp-core-recently-active-widget.php:103
8483
  msgid "There are no recently active members"
8484
  msgstr ""
@@ -8979,7 +8979,7 @@ msgstr ""
8979
 
8980
  #: bp-members/bp-members-template.php:3691
8981
  #: bp-templates/bp-nouveau/buddypress/activity/comment-form.php:29
8982
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:120
8983
  #: bp-templates/bp-nouveau/includes/members/template-tags.php:1063
8984
  msgctxt "button"
8985
  msgid "Cancel"
@@ -10114,11 +10114,16 @@ msgstr ""
10114
  msgid "There was a problem resending that invitation."
10115
  msgstr ""
10116
 
10117
- #: bp-members/screens/register.php:109
 
 
 
 
 
10118
  msgid "You must indicate that you have read and agreed to the Privacy Policy."
10119
  msgstr ""
10120
 
10121
- #: bp-members/screens/register.php:139
10122
  msgid "This is a required field"
10123
  msgstr ""
10124
 
@@ -10154,18 +10159,18 @@ msgid "Messages marked as read"
10154
  msgstr ""
10155
 
10156
  #: bp-messages/actions/bulk-manage.php:67
10157
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:714
10158
  msgid "Messages marked as unread."
10159
  msgstr ""
10160
 
10161
  #: bp-messages/actions/compose.php:37
10162
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:55
10163
  msgid "Your message was not sent. Please enter a subject line."
10164
  msgstr ""
10165
 
10166
  #: bp-messages/actions/compose.php:39
10167
  #: bp-messages/bp-messages-functions.php:67
10168
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:57
10169
  msgid "Your message was not sent. Please enter some content."
10170
  msgstr ""
10171
 
@@ -10180,7 +10185,7 @@ msgid "Notice was not created. Please try again."
10180
  msgstr ""
10181
 
10182
  #: bp-messages/actions/compose.php:91
10183
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:94
10184
  msgid "Message successfully sent."
10185
  msgstr ""
10186
 
@@ -10192,6 +10197,15 @@ msgstr ""
10192
  msgid "Message deleted."
10193
  msgstr ""
10194
 
 
 
 
 
 
 
 
 
 
10195
  #: bp-messages/actions/notices.php:55
10196
  msgid "Notice deactivated successfully."
10197
  msgstr ""
@@ -10238,12 +10252,12 @@ msgid "Message marked unread."
10238
  msgstr ""
10239
 
10240
  #: bp-messages/actions/view.php:43
10241
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:216
10242
  msgid "Your reply was sent successfully"
10243
  msgstr ""
10244
 
10245
  #: bp-messages/actions/view.php:45
10246
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:111
10247
  msgid "There was a problem sending your reply. Please try again."
10248
  msgstr ""
10249
 
@@ -10349,14 +10363,14 @@ msgid "A member sends you a new message"
10349
  msgstr ""
10350
 
10351
  #: bp-messages/bp-messages-star.php:106
10352
- #: bp-templates/bp-legacy/buddypress-functions.php:347
10353
  #: bp-templates/bp-nouveau/includes/messages/functions.php:126
10354
  msgid "Unstar"
10355
  msgstr ""
10356
 
10357
  #. translators: accessibility text
10358
  #: bp-messages/bp-messages-star.php:107
10359
- #: bp-templates/bp-legacy/buddypress-functions.php:348
10360
  #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:82
10361
  #: bp-templates/bp-nouveau/includes/messages/functions.php:127
10362
  msgid "Star"
@@ -10365,25 +10379,25 @@ msgstr ""
10365
  #: bp-messages/bp-messages-star.php:108
10366
  #: bp-messages/classes/class-bp-messages-component.php:251
10367
  #: bp-messages/classes/class-bp-messages-component.php:358
10368
- #: bp-templates/bp-legacy/buddypress-functions.php:349
10369
  #: bp-templates/bp-nouveau/includes/messages/functions.php:128
10370
  msgid "Starred"
10371
  msgstr ""
10372
 
10373
  #: bp-messages/bp-messages-star.php:109
10374
- #: bp-templates/bp-legacy/buddypress-functions.php:350
10375
  #: bp-templates/bp-nouveau/includes/messages/functions.php:129
10376
  msgid "Not starred"
10377
  msgstr ""
10378
 
10379
  #: bp-messages/bp-messages-star.php:110
10380
- #: bp-templates/bp-legacy/buddypress-functions.php:351
10381
  #: bp-templates/bp-nouveau/includes/messages/functions.php:130
10382
  msgid "Remove all starred messages in this thread"
10383
  msgstr ""
10384
 
10385
  #: bp-messages/bp-messages-star.php:111
10386
- #: bp-templates/bp-legacy/buddypress-functions.php:352
10387
  #: bp-templates/bp-nouveau/includes/messages/functions.php:131
10388
  msgid "Star the first message in this thread"
10389
  msgstr ""
@@ -10495,7 +10509,7 @@ msgstr ""
10495
 
10496
  #: bp-messages/bp-messages-template.php:1878
10497
  #: bp-messages/bp-messages-template.php:2150
10498
- #: bp-messages/classes/class-bp-messages-thread.php:1044
10499
  msgid "Deleted User"
10500
  msgstr ""
10501
 
@@ -10504,11 +10518,11 @@ msgid "you"
10504
  msgstr ""
10505
 
10506
  #. translators: %s: last activity timestamp (e.g. "active 1 hour ago")
10507
- #: bp-messages/bp-messages-template.php:2219
10508
  msgid "Sent %s"
10509
  msgstr ""
10510
 
10511
- #: bp-messages/bp-messages-template.php:2279
10512
  msgid "[deleted]"
10513
  msgstr ""
10514
 
@@ -10639,7 +10653,7 @@ msgid "Display Sitewide Notices posted by the site administrator"
10639
  msgstr ""
10640
 
10641
  #. translators: %s: number of message recipients
10642
- #: bp-messages/classes/class-bp-messages-thread.php:1035
10643
  msgid "%s Recipients"
10644
  msgstr ""
10645
 
@@ -11222,59 +11236,59 @@ msgstr ""
11222
  msgid "%s was successfully deleted."
11223
  msgstr ""
11224
 
11225
- #: bp-settings/actions/general.php:148
11226
  msgid "The new password must be different from the current password."
11227
  msgstr ""
11228
 
11229
- #: bp-settings/actions/general.php:158
11230
  msgid "One of the password fields was empty."
11231
  msgstr ""
11232
 
11233
- #: bp-settings/actions/general.php:175
11234
  msgid "Your current password is invalid."
11235
  msgstr ""
11236
 
11237
- #: bp-settings/actions/general.php:181
11238
  msgid "That email address is invalid. Check the formatting and try again."
11239
  msgstr ""
11240
 
11241
- #: bp-settings/actions/general.php:184
11242
  msgid "That email address is currently unavailable for use."
11243
  msgstr ""
11244
 
11245
- #: bp-settings/actions/general.php:187
11246
  msgid "That email address is already taken."
11247
  msgstr ""
11248
 
11249
- #: bp-settings/actions/general.php:190
11250
  msgid "Email address cannot be empty."
11251
  msgstr ""
11252
 
11253
- #: bp-settings/actions/general.php:203
11254
  msgid "Your settings have been saved."
11255
  msgstr ""
11256
 
11257
- #: bp-settings/actions/general.php:209
11258
  msgid "No changes were made to your account."
11259
  msgstr ""
11260
 
11261
- #: bp-settings/actions/general.php:211
11262
  msgid "No changes were made to this account."
11263
  msgstr ""
11264
 
11265
- #: bp-settings/actions/general.php:264
11266
  msgid "There was a problem verifying your new email address. If you haven’t dismissed the pending email change, please request a new email update."
11267
  msgstr ""
11268
 
11269
- #: bp-settings/actions/general.php:294
11270
  msgid "You have successfully verified your new email address."
11271
  msgstr ""
11272
 
11273
- #: bp-settings/actions/general.php:297
11274
  msgid "There was a problem verifying your new email address. Please try again."
11275
  msgstr ""
11276
 
11277
- #: bp-settings/actions/general.php:321
11278
  msgid "You have successfully dismissed your pending email change."
11279
  msgstr ""
11280
 
@@ -11391,8 +11405,8 @@ msgid "Are you sure you want to leave this group?"
11391
  msgstr ""
11392
 
11393
  #: bp-templates/bp-legacy/buddypress-functions.php:307
11394
- #: bp-templates/bp-legacy/buddypress-functions.php:1265
11395
- #: bp-templates/bp-legacy/buddypress-functions.php:1293
11396
  #: bp-templates/bp-legacy/buddypress/activity/entry.php:82
11397
  msgid "Favorite"
11398
  msgstr ""
@@ -11408,8 +11422,8 @@ msgid "Rejected"
11408
  msgstr ""
11409
 
11410
  #: bp-templates/bp-legacy/buddypress-functions.php:310
11411
- #: bp-templates/bp-legacy/buddypress-functions.php:1263
11412
- #: bp-templates/bp-legacy/buddypress-functions.php:1295
11413
  #: bp-templates/bp-legacy/buddypress/activity/entry.php:86
11414
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:111
11415
  #: bp-templates/bp-nouveau/includes/activity/template-tags.php:410
@@ -11431,85 +11445,90 @@ msgid "Show all comments (%d)"
11431
  msgstr ""
11432
 
11433
  #: bp-templates/bp-legacy/buddypress-functions.php:316
11434
- #: bp-templates/bp-nouveau/buddypress-functions.php:493
11435
  msgid "Your profile has unsaved changes. If you leave the page, the changes will be lost."
11436
  msgstr ""
11437
 
11438
- #: bp-templates/bp-legacy/buddypress-functions.php:1001
 
 
 
 
 
11439
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:571
11440
  msgid "There was a problem posting your update. Please try again."
11441
  msgstr ""
11442
 
11443
- #: bp-templates/bp-legacy/buddypress-functions.php:1140
11444
- #: bp-templates/bp-legacy/buddypress-functions.php:1180
11445
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:201
11446
  msgid "There was a problem when deleting. Please try again."
11447
  msgstr ""
11448
 
11449
- #: bp-templates/bp-legacy/buddypress-functions.php:1396
11450
  #: bp-templates/bp-legacy/buddypress/groups/create.php:383
11451
  #: bp-templates/bp-legacy/buddypress/groups/single/invites-loop.php:75
11452
  msgid "Remove Invite"
11453
  msgstr ""
11454
 
11455
  #. translators: %s: user link
11456
- #: bp-templates/bp-legacy/buddypress-functions.php:1401
11457
  msgid "%s has previously requested to join this group. Sending an invitation will automatically add the member to the group."
11458
  msgstr ""
11459
 
11460
- #: bp-templates/bp-legacy/buddypress-functions.php:1443
11461
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:107
11462
  msgid "No member found by that ID."
11463
  msgstr ""
11464
 
11465
- #: bp-templates/bp-legacy/buddypress-functions.php:1461
11466
  msgid " Friendship could not be requested."
11467
  msgstr ""
11468
 
11469
- #: bp-templates/bp-legacy/buddypress-functions.php:1473
11470
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:210
11471
  msgid "Friendship request could not be cancelled."
11472
  msgstr ""
11473
 
11474
- #: bp-templates/bp-legacy/buddypress-functions.php:1478
11475
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:220
11476
  msgid "Request Pending"
11477
  msgstr ""
11478
 
11479
- #: bp-templates/bp-legacy/buddypress-functions.php:1499
11480
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:121
11481
  msgid "There was a problem accepting that request. Please try again."
11482
  msgstr ""
11483
 
11484
- #: bp-templates/bp-legacy/buddypress-functions.php:1519
11485
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:145
11486
  msgid "There was a problem rejecting that request. Please try again."
11487
  msgstr ""
11488
 
11489
- #: bp-templates/bp-legacy/buddypress-functions.php:1568
11490
- #: bp-templates/bp-legacy/buddypress-functions.php:1574
11491
  msgid "Error joining group"
11492
  msgstr ""
11493
 
11494
- #: bp-templates/bp-legacy/buddypress-functions.php:1582
11495
  msgid "Error accepting invitation"
11496
  msgstr ""
11497
 
11498
- #: bp-templates/bp-legacy/buddypress-functions.php:1588
11499
- #: bp-templates/bp-legacy/buddypress-functions.php:1598
11500
  msgid "Error requesting membership"
11501
  msgstr ""
11502
 
11503
- #: bp-templates/bp-legacy/buddypress-functions.php:1608
11504
  msgid "Error leaving group"
11505
  msgstr ""
11506
 
11507
- #: bp-templates/bp-legacy/buddypress-functions.php:1635
11508
  msgid "There was a problem closing the notice."
11509
  msgstr ""
11510
 
11511
- #: bp-templates/bp-legacy/buddypress-functions.php:1662
11512
- #: bp-templates/bp-legacy/buddypress-functions.php:1702
11513
  msgid "There was a problem sending that reply. Please try again."
11514
  msgstr ""
11515
 
@@ -11799,7 +11818,7 @@ msgstr ""
11799
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:22
11800
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:22
11801
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:106
11802
- #: bp-templates/bp-nouveau/includes/groups/functions.php:638
11803
  #: bp-templates/bp-nouveau/includes/members/functions.php:120
11804
  msgid "Last Active"
11805
  msgstr ""
@@ -12002,22 +12021,22 @@ msgid "Once you have built up friend connections you will be able to invite othe
12002
  msgstr ""
12003
 
12004
  #: bp-templates/bp-legacy/buddypress/groups/create.php:445
12005
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:387
12006
  msgid "Back to Previous Step"
12007
  msgstr ""
12008
 
12009
  #: bp-templates/bp-legacy/buddypress/groups/create.php:452
12010
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:395
12011
  msgid "Next Step"
12012
  msgstr ""
12013
 
12014
  #: bp-templates/bp-legacy/buddypress/groups/create.php:459
12015
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:402
12016
  msgid "Create Group and Continue"
12017
  msgstr ""
12018
 
12019
  #: bp-templates/bp-legacy/buddypress/groups/create.php:466
12020
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:409
12021
  msgid "Finish"
12022
  msgstr ""
12023
 
@@ -12040,13 +12059,13 @@ msgstr ""
12040
 
12041
  #: bp-templates/bp-legacy/buddypress/groups/index.php:111
12042
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:23
12043
- #: bp-templates/bp-nouveau/includes/groups/functions.php:639
12044
  msgid "Most Members"
12045
  msgstr ""
12046
 
12047
  #: bp-templates/bp-legacy/buddypress/groups/index.php:112
12048
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:24
12049
- #: bp-templates/bp-nouveau/includes/groups/functions.php:640
12050
  msgid "Newly Created"
12051
  msgstr ""
12052
 
@@ -12069,7 +12088,7 @@ msgid "Manage Group Details"
12069
  msgstr ""
12070
 
12071
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:40
12072
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:1468
12073
  msgid "Notify group members of these changes via email"
12074
  msgstr ""
12075
 
@@ -12095,27 +12114,27 @@ msgstr ""
12095
 
12096
  #. translators: indicates a user is banned from a group, e.g. "Mike (banned)".
12097
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:248
12098
- #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:112
12099
  msgid "(banned)"
12100
  msgstr ""
12101
 
12102
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:271
12103
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:837
12104
  msgid "Remove Ban"
12105
  msgstr ""
12106
 
12107
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:275
12108
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:856
12109
  msgid "Kick &amp; Ban"
12110
  msgstr ""
12111
 
12112
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:276
12113
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:885
12114
  msgid "Promote to Mod"
12115
  msgstr ""
12116
 
12117
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:281
12118
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:914
12119
  msgid "Remove from group"
12120
  msgstr ""
12121
 
@@ -12175,16 +12194,16 @@ msgstr ""
12175
  #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:58
12176
  #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:63
12177
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:60
12178
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:720
12179
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:776
12180
  msgid "Accept"
12181
  msgstr ""
12182
 
12183
  #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:60
12184
  #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:64
12185
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:61
12186
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:747
12187
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:803
12188
  msgid "Reject"
12189
  msgstr ""
12190
 
@@ -12270,7 +12289,7 @@ msgstr ""
12270
  #: bp-templates/bp-legacy/buddypress/members/register.php:281
12271
  #: bp-templates/bp-legacy/buddypress/members/register.php:297
12272
  #: bp-templates/bp-nouveau/buddypress/members/single/invitations/send-invites.php:23
12273
- #: bp-templates/bp-nouveau/includes/template-tags.php:2416
12274
  #: bp-xprofile/bp-xprofile-template.php:1464
12275
  msgid "(required)"
12276
  msgstr ""
@@ -12390,7 +12409,7 @@ msgstr ""
12390
 
12391
  #. translators: accessibility text
12392
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:21
12393
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1262
12394
  msgid "Group invitations"
12395
  msgstr ""
12396
 
@@ -12529,8 +12548,8 @@ msgid "View Message"
12529
  msgstr ""
12530
 
12531
  #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:195
12532
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:253
12533
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:410
12534
  msgid "Sorry, no messages were found."
12535
  msgstr ""
12536
 
@@ -12560,18 +12579,22 @@ msgstr ""
12560
  msgid "Conversation between %s."
12561
  msgstr ""
12562
 
12563
- #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:108
12564
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:323
 
 
 
 
12565
  msgid "Send a Reply"
12566
  msgstr ""
12567
 
12568
  #. translators: accessibility text
12569
- #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:131
12570
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:334
12571
  msgid "Reply to Message"
12572
  msgstr ""
12573
 
12574
- #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:145
12575
  msgid "Send Reply"
12576
  msgstr ""
12577
 
@@ -12794,7 +12817,7 @@ msgid "Visibility"
12794
  msgstr ""
12795
 
12796
  #. translators: %s: number of activity comments
12797
- #: bp-templates/bp-nouveau/buddypress-functions.php:492
12798
  msgid "Show all %d comments"
12799
  msgstr ""
12800
 
@@ -12861,166 +12884,157 @@ msgctxt "button"
12861
  msgid "Remove item"
12862
  msgstr ""
12863
 
12864
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:33
12865
  msgctxt "group manage members update feedback"
12866
  msgid "Updating role... Please wait."
12867
  msgstr ""
12868
 
12869
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:35
12870
  msgctxt "group manage members ban feedback"
12871
  msgid "Banning member... Please wait."
12872
  msgstr ""
12873
 
12874
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:37
12875
  msgctxt "group manage members unban feedback"
12876
  msgid "Unbanning member... Please wait."
12877
  msgstr ""
12878
 
12879
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:39
12880
  msgctxt "group manage members remove feedback"
12881
  msgid "Removing member... Please wait."
12882
  msgstr ""
12883
 
12884
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:49
12885
  msgctxt "group manage members table header"
12886
  msgid "Group Members"
12887
  msgstr ""
12888
 
12889
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:50
12890
  msgctxt "group manage members table header"
12891
  msgid "Roles"
12892
  msgstr ""
12893
 
12894
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:58
12895
  msgid "No Group members were found for this request."
12896
  msgstr ""
12897
 
12898
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:65
12899
  msgctxt "group manage members row edit"
12900
  msgid "Change role for:"
12901
  msgstr ""
12902
 
12903
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:67
12904
  msgctxt "group manage members roles filter"
12905
  msgid "Filter:"
12906
  msgstr ""
12907
 
12908
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:81
12909
  msgctxt "group member edit role link"
12910
  msgid "Edit"
12911
  msgstr ""
12912
 
12913
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:84
12914
  msgctxt "group member edit role abort link"
12915
  msgid "Stop editing"
12916
  msgstr ""
12917
 
12918
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:87
12919
  msgctxt "group member ban link"
12920
  msgid "Ban"
12921
  msgstr ""
12922
 
12923
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:89
12924
  msgctxt "group member unban link"
12925
  msgid "Unban"
12926
  msgstr ""
12927
 
12928
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:91
12929
  msgctxt "group member ban link"
12930
  msgid "Remove"
12931
  msgstr ""
12932
 
12933
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:114
12934
  msgid "Search Members"
12935
  msgstr ""
12936
 
12937
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:116
12938
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:130
12939
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/search-form.php:13
12940
  msgctxt "search placeholder text"
12941
  msgid "Search"
12942
  msgstr ""
12943
 
12944
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:119
12945
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:134
12946
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/search-form.php:16
12947
  #: bp-templates/bp-nouveau/buddypress/common/search/search-form.php:19
12948
  msgctxt "button"
12949
  msgid "Search"
12950
  msgstr ""
12951
 
12952
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:137
12953
  msgctxt "link"
12954
  msgid "Prev."
12955
  msgstr ""
12956
 
12957
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:142
12958
  msgctxt "link"
12959
  msgid "Next"
12960
  msgstr ""
12961
 
12962
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:16
12963
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:22
12964
- msgid "Invite Members"
12965
- msgstr ""
12966
-
12967
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:29
12968
- msgid "Group invitations menu"
12969
- msgstr ""
12970
-
12971
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:65
12972
  msgid "Invited by:"
12973
  msgstr ""
12974
 
12975
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:74
12976
  msgid "The invite has not been sent yet."
12977
  msgstr ""
12978
 
12979
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:76
12980
  msgid "The invite has been sent."
12981
  msgstr ""
12982
 
12983
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:86
12984
  msgid "Cancel invitation"
12985
  msgstr ""
12986
 
12987
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:86
12988
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:92
12989
  msgctxt "button"
12990
  msgid "Invite"
12991
  msgstr ""
12992
 
12993
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:90
12994
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:99
12995
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:101
12996
  msgctxt "button"
12997
  msgid "Cancel invitation"
12998
  msgstr ""
12999
 
13000
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:116
13001
  msgid "Optional: add a message to your invite."
13002
  msgstr ""
13003
 
13004
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:121
13005
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:47
13006
  msgctxt "button"
13007
  msgid "Send"
13008
  msgstr ""
13009
 
13010
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:129
13011
  msgctxt "heading"
13012
  msgid "Search Members"
13013
  msgstr ""
13014
 
13015
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:143
13016
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:145
13017
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:81
13018
  msgctxt "link"
13019
  msgid "Previous page"
13020
  msgstr ""
13021
 
13022
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:150
13023
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:151
13024
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:88
13025
  msgctxt "link"
13026
  msgid "Next page"
@@ -13052,43 +13066,50 @@ msgid "Active conversation:"
13052
  msgstr ""
13053
 
13054
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:175
13055
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:238
13056
  msgid "Participants:"
13057
  msgstr ""
13058
 
13059
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:188
13060
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:189
13061
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:250
13062
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:251
13063
  msgid "Delete conversation."
13064
  msgstr ""
13065
 
13066
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:195
13067
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:196
 
 
 
 
 
 
 
13068
  msgid "Unstar Conversation"
13069
  msgstr ""
13070
 
13071
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:199
13072
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:200
13073
  msgid "Star Conversation"
13074
  msgstr ""
13075
 
13076
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:206
13077
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:207
13078
  msgid "View full conversation and reply."
13079
  msgstr ""
13080
 
13081
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:273
13082
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:274
13083
  msgid "Unstar Message"
13084
  msgstr ""
13085
 
13086
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:277
13087
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:278
13088
  msgid "Star Message"
13089
  msgstr ""
13090
 
13091
- #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:340
13092
  msgctxt "button"
13093
  msgid "Send Reply"
13094
  msgstr ""
@@ -13134,11 +13155,11 @@ msgid "Edit Group Name &amp; Description"
13134
  msgstr ""
13135
 
13136
  #: bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php:13
13137
- msgid "Upload Group Avatar"
13138
  msgstr ""
13139
 
13140
  #: bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php:19
13141
- msgid "Change Group Avatar"
13142
  msgstr ""
13143
 
13144
  #: bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php:26
@@ -13466,7 +13487,7 @@ msgid "All Members"
13466
  msgstr ""
13467
 
13468
  #: bp-templates/bp-nouveau/includes/activity/functions.php:256
13469
- #: bp-templates/bp-nouveau/includes/groups/functions.php:570
13470
  msgid "My Groups"
13471
  msgstr ""
13472
 
@@ -13914,67 +13935,75 @@ msgstr ""
13914
  msgid "Error leaving group."
13915
  msgstr ""
13916
 
13917
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:295
 
 
 
 
 
 
 
 
13918
  msgid "Select members to invite by clicking the + button. Once you've made your selection, use the \"Send Invites\" navigation item to continue."
13919
  msgstr ""
13920
 
13921
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:300
13922
  msgid "Select friends to invite by clicking the + button. Once you've made your selection, use the \"Send Invites\" navigation item to continue."
13923
  msgstr ""
13924
 
13925
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:307
13926
  msgid "No pending group invitations found."
13927
  msgstr ""
13928
 
13929
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:314
13930
  msgid "You can view the group's pending invitations from this screen."
13931
  msgstr ""
13932
 
13933
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:321
13934
  msgid "No members were found. Try another filter."
13935
  msgstr ""
13936
 
13937
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:327
13938
  msgid "All your friends are already members of this group, or have already received an invite to join this group, or have requested to join it."
13939
  msgstr ""
13940
 
13941
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:333
13942
  msgid "You have no friends!"
13943
  msgstr ""
13944
 
13945
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:338
13946
  msgid "No friends were found. Try another filter."
13947
  msgstr ""
13948
 
13949
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:367
13950
  msgid "Invites could not be sent. Please try again."
13951
  msgstr ""
13952
 
13953
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:383
13954
  msgid "You are not allowed to send invitations for this group."
13955
  msgstr ""
13956
 
13957
  #. translators: count of users affected
13958
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:424
13959
  msgid "Invitation failed for %s user."
13960
  msgid_plural "Invitation failed for %s users."
13961
  msgstr[0] ""
13962
  msgstr[1] ""
13963
 
13964
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:443
13965
  msgid "Invitations sent."
13966
  msgstr ""
13967
 
13968
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:457
13969
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:500
13970
  msgid "Group invitation could not be removed."
13971
  msgstr ""
13972
 
13973
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:489
13974
  msgid "The member is already a member of the group."
13975
  msgstr ""
13976
 
13977
- #: bp-templates/bp-nouveau/includes/groups/ajax.php:509
13978
  msgid "There are no more pending invitations for the group."
13979
  msgstr ""
13980
 
@@ -14024,116 +14053,125 @@ msgstr ""
14024
  msgid "Cancel invitation %s"
14025
  msgstr ""
14026
 
14027
- #: bp-templates/bp-nouveau/includes/groups/functions.php:335
14028
- #: bp-templates/bp-nouveau/includes/groups/functions.php:356
14029
  msgctxt "Group invitations menu title"
14030
  msgid "Invite"
14031
  msgstr ""
14032
 
14033
- #: bp-templates/bp-nouveau/includes/groups/functions.php:433
14034
- #: bp-templates/bp-nouveau/includes/groups/functions.php:461
14035
  msgctxt "Group invitations main menu title"
14036
  msgid "Group Invites"
14037
  msgstr ""
14038
 
14039
- #: bp-templates/bp-nouveau/includes/groups/functions.php:491
14040
  msgid "Group invites preferences saved."
14041
  msgstr ""
14042
 
14043
- #: bp-templates/bp-nouveau/includes/groups/functions.php:554
14044
  msgid "All Groups"
14045
  msgstr ""
14046
 
14047
- #: bp-templates/bp-nouveau/includes/groups/functions.php:739
14048
  msgid "Group front page"
14049
  msgstr ""
14050
 
14051
- #: bp-templates/bp-nouveau/includes/groups/functions.php:742
14052
  msgid "Configure the default front page for groups."
14053
  msgstr ""
14054
 
14055
- #: bp-templates/bp-nouveau/includes/groups/functions.php:745
14056
  msgid "Group navigation"
14057
  msgstr ""
14058
 
14059
- #: bp-templates/bp-nouveau/includes/groups/functions.php:748
14060
  msgid "Customize the navigation menu for groups. See your changes by navigating to a group in the live-preview window."
14061
  msgstr ""
14062
 
14063
- #: bp-templates/bp-nouveau/includes/groups/functions.php:849
14064
  msgid "Enable custom front pages for groups."
14065
  msgstr ""
14066
 
14067
- #: bp-templates/bp-nouveau/includes/groups/functions.php:855
14068
  msgid "Enable custom boxes for group homepages. When enabled, Plugins using the BuddyPress Group Extension API can include content into these boxes."
14069
  msgstr ""
14070
 
14071
- #: bp-templates/bp-nouveau/includes/groups/functions.php:861
14072
  msgid "Display the group description in the body of the group's front page."
14073
  msgstr ""
14074
 
14075
- #: bp-templates/bp-nouveau/includes/groups/functions.php:867
14076
  msgid "Display the group navigation vertically."
14077
  msgstr ""
14078
 
14079
- #: bp-templates/bp-nouveau/includes/groups/functions.php:873
14080
  msgid "Use tab styling for primary navigation."
14081
  msgstr ""
14082
 
14083
- #: bp-templates/bp-nouveau/includes/groups/functions.php:879
14084
  msgid "Use tab styling for secondary navigation."
14085
  msgstr ""
14086
 
14087
- #: bp-templates/bp-nouveau/includes/groups/functions.php:885
14088
  msgid "Use tab styling for the group creation process."
14089
  msgstr ""
14090
 
14091
- #: bp-templates/bp-nouveau/includes/groups/functions.php:892
14092
  msgid "Reorder the primary navigation for a group."
14093
  msgstr ""
14094
 
14095
- #: bp-templates/bp-nouveau/includes/groups/functions.php:898
14096
  msgctxt "Customizer control label"
14097
  msgid "Groups"
14098
  msgstr ""
14099
 
14100
- #: bp-templates/bp-nouveau/includes/groups/functions.php:905
14101
  msgid "Group > Members"
14102
  msgstr ""
14103
 
14104
- #: bp-templates/bp-nouveau/includes/groups/functions.php:912
14105
  msgid "Use column navigation for the Groups directory."
14106
  msgstr ""
14107
 
14108
- #: bp-templates/bp-nouveau/includes/groups/functions.php:918
14109
  msgid "Use tab styling for Groups directory navigation."
14110
  msgstr ""
14111
 
14112
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1237
14113
  msgid "Pending Group membership requests"
14114
  msgstr ""
14115
 
14116
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1242
14117
  msgid "Accepted Group membership requests"
14118
  msgstr ""
14119
 
14120
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1247
14121
  msgid "Rejected Group membership requests"
14122
  msgstr ""
14123
 
14124
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1252
14125
  msgid "Group Administrator promotions"
14126
  msgstr ""
14127
 
14128
- #: bp-templates/bp-nouveau/includes/groups/functions.php:1257
14129
  msgid "Group Moderator promotions"
14130
  msgstr ""
14131
 
14132
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:1354
 
 
 
 
 
 
 
 
 
14133
  msgid "Groups default front page"
14134
  msgstr ""
14135
 
14136
- #: bp-templates/bp-nouveau/includes/groups/template-tags.php:1372
14137
  #: bp-templates/bp-nouveau/includes/members/template-tags.php:747
14138
  msgid "(BuddyPress) Widgets"
14139
  msgstr ""
@@ -14164,71 +14202,75 @@ msgstr ""
14164
  msgid "Edit your bio"
14165
  msgstr ""
14166
 
14167
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:43
14168
  msgid "Your message could not be sent. Please try again."
14169
  msgstr ""
14170
 
14171
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:65
14172
  msgid "Your message was not sent. Please enter at least one username."
14173
  msgstr ""
14174
 
14175
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:121
14176
  msgid "Your reply was not sent. Please enter some content."
14177
  msgstr ""
14178
 
14179
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:229
14180
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:404
14181
  msgid "Unauthorized request."
14182
  msgstr ""
14183
 
14184
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:552
14185
  msgid "There was a problem deleting your messages. Please try again."
14186
  msgstr ""
14187
 
14188
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:575
14189
  msgid "Messages deleted"
14190
  msgstr ""
14191
 
14192
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:591
14193
  msgid "There was a problem starring your messages. Please try again."
14194
  msgstr ""
14195
 
14196
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:593
14197
  msgid "There was a problem unstarring your messages. Please try again."
14198
  msgstr ""
14199
 
14200
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:667
14201
  msgid "Messages successfully starred."
14202
  msgstr ""
14203
 
14204
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:669
14205
  msgid "Messages successfully unstarred."
14206
  msgstr ""
14207
 
14208
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:690
14209
  msgid "There was a problem marking your messages as read. Please try again."
14210
  msgstr ""
14211
 
14212
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:696
14213
  msgid "There was a problem marking your messages as unread. Please try again."
14214
  msgstr ""
14215
 
14216
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:716
14217
  msgid "Messages marked as read."
14218
  msgstr ""
14219
 
14220
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:751
14221
  msgid "There was a problem dismissing the notice. Please try again."
14222
  msgstr ""
14223
 
14224
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:773
14225
  msgid "Sitewide notice dismissed"
14226
  msgstr ""
14227
 
14228
- #: bp-templates/bp-nouveau/includes/messages/ajax.php:778
14229
  msgid "There was a problem dismissing that sitewide notice"
14230
  msgstr ""
14231
 
 
 
 
 
14232
  #: bp-templates/bp-nouveau/includes/messages/functions.php:95
14233
  msgid "Please add at least one recipient."
14234
  msgstr ""
@@ -14314,38 +14356,38 @@ msgstr ""
14314
  msgid "Choose a Password (required)"
14315
  msgstr ""
14316
 
14317
- #: bp-templates/bp-nouveau/includes/template-tags.php:2381
14318
  msgid "Strength indicator"
14319
  msgstr ""
14320
 
14321
- #: bp-templates/bp-nouveau/includes/template-tags.php:2386
14322
  msgid "Confirm use of weak password"
14323
  msgstr ""
14324
 
14325
- #: bp-templates/bp-nouveau/includes/template-tags.php:2394
14326
  msgid "Confirm new password"
14327
  msgstr ""
14328
 
14329
  #. translators: Do not translate placeholders. 2 = form field name, 3 = "(required)".
14330
- #: bp-templates/bp-nouveau/includes/template-tags.php:2410
14331
  msgid "<label for=\"%1$s\">%2$s %3$s</label>"
14332
  msgstr ""
14333
 
14334
- #: bp-templates/bp-nouveau/includes/template-tags.php:2429
14335
  msgid "I would like my site to appear in search engines, and in public listings around this network."
14336
  msgstr ""
14337
 
14338
  #. translators: link to Privacy Policy
14339
- #: bp-templates/bp-nouveau/includes/template-tags.php:2570
14340
  msgid "I have read and agree to this site's %s."
14341
  msgstr ""
14342
 
14343
- #: bp-templates/bp-nouveau/includes/template-tags.php:2685
14344
  msgctxt "BP RSS Tooltip"
14345
  msgid "RSS Feed"
14346
  msgstr ""
14347
 
14348
- #: bp-templates/bp-nouveau/includes/template-tags.php:2686
14349
  msgctxt "BP RSS screen reader text"
14350
  msgid "RSS"
14351
  msgstr ""
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-12-23T21:39:38+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: buddypress\n"
117
  #: bp-activity/actions/post.php:60
118
  #: bp-activity/bp-activity-functions.php:2084
119
  #: bp-activity/classes/class-bp-activity-activity.php:294
120
+ #: bp-templates/bp-legacy/buddypress-functions.php:973
121
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:512
122
  msgid "Please enter some content to post."
123
  msgstr ""
131
  msgstr ""
132
 
133
  #: bp-activity/actions/reply.php:54
134
+ #: bp-templates/bp-legacy/buddypress-functions.php:1065
135
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:377
136
  msgid "Please do not leave the comment area blank."
137
  msgstr ""
693
  msgstr ""
694
 
695
  #: bp-activity/bp-activity-functions.php:2735
696
+ #: bp-templates/bp-legacy/buddypress-functions.php:1062
697
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:356
698
  msgid "There was an error posting your reply. Please try again."
699
  msgstr ""
872
  #: bp-activity/bp-activity-template.php:1258
873
  #: bp-activity/classes/class-bp-activity-component.php:442
874
  #: bp-blogs/classes/class-bp-blogs-component.php:340
875
+ #: bp-friends/bp-friends-blocks.php:203
876
  #: bp-friends/classes/class-bp-friends-component.php:312
877
  #: bp-groups/bp-groups-template.php:1804
878
  #: bp-groups/bp-groups-template.php:1850
885
  #: bp-groups/bp-groups-template.php:4171
886
  #: bp-groups/bp-groups-template.php:5789
887
  #: bp-groups/classes/class-bp-groups-component.php:927
888
+ #: bp-members/bp-members-blocks.php:496
889
+ #: bp-members/bp-members-blocks.php:647
890
  #: bp-members/bp-members-template.php:864
891
  #: bp-members/bp-members-template.php:1675
892
  #: bp-members/bp-members-template.php:1734
1001
  #: bp-groups/classes/class-bp-groups-template.php:133
1002
  #: bp-members/classes/class-bp-core-members-template.php:130
1003
  #: bp-messages/classes/class-bp-messages-box-template.php:119
1004
+ #: bp-messages/classes/class-bp-messages-thread.php:639
1005
  #: bp-xprofile/classes/class-bp-xprofile-data-template.php:133
1006
  msgid "Arguments passed to %1$s should be in an associative array. See the inline documentation at %2$s for more details."
1007
  msgstr ""
2296
  msgstr ""
2297
 
2298
  #: bp-core/admin/bp-core-admin-optouts.php:76
2299
+ #: bp-groups/bp-groups-admin.php:1050
2300
  #: bp-members/classes/class-bp-members-admin.php:1739
2301
  #: bp-members/classes/class-bp-members-admin.php:2747
2302
  #: bp-templates/bp-legacy/buddypress/members/single/invitations/invitations-loop.php:28
3094
  msgstr ""
3095
 
3096
  #: bp-core/bp-core-cssjs.php:184
3097
+ #: bp-templates/bp-nouveau/buddypress-functions.php:473
3098
  msgid "Are you sure?"
3099
  msgstr ""
3100
 
3575
 
3576
  #. translators: link to Privacy Policy
3577
  #: bp-core/bp-core-functions.php:3706
3578
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2574
3579
  msgid "Privacy Policy"
3580
  msgstr ""
3581
 
4321
  #: bp-members/bp-members-membership-requests.php:431
4322
  #: bp-members/bp-members-membership-requests.php:450
4323
  #: bp-members/classes/class-bp-registration-theme-compat.php:101
4324
+ #: bp-templates/bp-legacy/buddypress-functions.php:1620
4325
  msgid "Request Membership"
4326
  msgstr ""
4327
 
4337
 
4338
  #: bp-core/bp-core-template.php:3207
4339
  #: bp-groups/bp-groups-template.php:3715
4340
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:594
4341
  msgid "Create a Group"
4342
  msgstr ""
4343
 
5311
 
5312
  #: bp-core/deprecated/1.6.php:128
5313
  #: bp-core/deprecated/1.6.php:151
5314
+ #: bp-friends/bp-friends-blocks.php:132
5315
  #: bp-friends/classes/class-bp-core-friends-widget.php:109
5316
  #: bp-friends/classes/class-bp-core-friends-widget.php:204
5317
+ #: bp-groups/bp-groups-blocks.php:402
5318
  #: bp-groups/bp-groups-template.php:4713
5319
  #: bp-groups/classes/class-bp-groups-widget.php:128
5320
  #: bp-groups/classes/class-bp-groups-widget.php:243
5321
+ #: bp-members/bp-members-blocks.php:423
5322
  #: bp-members/classes/class-bp-core-members-widget.php:116
5323
  #: bp-members/classes/class-bp-core-members-widget.php:237
5324
  #: bp-templates/bp-legacy/buddypress/blogs/index.php:112
5399
  msgstr ""
5400
 
5401
  #: bp-friends/actions/remove-friend.php:38
5402
+ #: bp-templates/bp-legacy/buddypress-functions.php:1459
5403
  msgid "Friendship could not be canceled."
5404
  msgstr ""
5405
 
5433
  msgid "%1$s and %2$s are now friends"
5434
  msgstr ""
5435
 
5436
+ #: bp-friends/bp-friends-blocks.php:99
5437
  #: bp-friends/classes/class-bp-core-friends-widget.php:143
5438
  #: bp-templates/bp-legacy/buddypress/members/members-loop.php:143
5439
  #: bp-templates/bp-nouveau/includes/functions.php:1042
5442
  msgstr ""
5443
 
5444
  #. translators: %s: member name
5445
+ #: bp-friends/bp-friends-blocks.php:116
5446
  #: bp-friends/bp-friends-template.php:85
5447
  #: bp-friends/classes/class-bp-core-friends-widget.php:71
5448
  msgid "%s's Friends"
5449
  msgstr ""
5450
 
5451
+ #: bp-friends/bp-friends-blocks.php:136
5452
  #: bp-friends/classes/class-bp-core-friends-widget.php:110
5453
  #: bp-friends/classes/class-bp-core-friends-widget.php:205
5454
+ #: bp-groups/bp-groups-blocks.php:406
5455
  #: bp-groups/classes/class-bp-groups-widget.php:130
5456
  #: bp-groups/classes/class-bp-groups-widget.php:244
5457
+ #: bp-members/bp-members-blocks.php:427
5458
  #: bp-members/classes/class-bp-core-members-widget.php:118
5459
  #: bp-members/classes/class-bp-core-members-widget.php:238
5460
  #: bp-members/classes/class-bp-members-admin.php:1186
5464
  msgid "Active"
5465
  msgstr ""
5466
 
5467
+ #: bp-friends/bp-friends-blocks.php:140
5468
  #: bp-friends/classes/class-bp-core-friends-widget.php:111
5469
  #: bp-friends/classes/class-bp-core-friends-widget.php:206
5470
+ #: bp-groups/bp-groups-blocks.php:410
5471
  #: bp-groups/classes/class-bp-groups-widget.php:132
5472
  #: bp-groups/classes/class-bp-groups-widget.php:245
5473
+ #: bp-members/bp-members-blocks.php:434
5474
  #: bp-members/classes/class-bp-core-members-widget.php:122
5475
  #: bp-members/classes/class-bp-core-members-widget.php:239
5476
  #: bp-friends/js/blocks/friends.js:25
5480
  msgstr ""
5481
 
5482
  #. translators: %s is time elapsed since the registration date happened
5483
+ #: bp-friends/bp-friends-blocks.php:179
5484
+ #: bp-members/bp-members-blocks.php:472
5485
  msgctxt "The timestamp when the user registered"
5486
  msgid "Registered %s"
5487
  msgstr ""
5488
 
5489
  #. translators: %s: total friend count
5490
+ #: bp-friends/bp-friends-blocks.php:182
5491
+ #: bp-members/bp-members-blocks.php:475
5492
  msgid "%s friend"
5493
  msgid_plural "%s friends"
5494
  msgstr[0] ""
5495
  msgstr[1] ""
5496
 
5497
  #. translators: %s: last activity timestamp (e.g. "Active 1 hour ago")
5498
+ #: bp-friends/bp-friends-blocks.php:185
5499
  #: bp-groups/bp-groups-blocks.php:284
5500
+ #: bp-groups/bp-groups-blocks.php:460
5501
  #: bp-groups/classes/class-bp-groups-invite-template.php:283
5502
  #: bp-groups/classes/class-bp-groups-widget.php:155
5503
  #: bp-members/bp-members-blocks.php:312
5504
+ #: bp-members/bp-members-blocks.php:478
5505
  #: bp-members/bp-members-template.php:1055
5506
  #: bp-members/bp-members-template.php:1814
5507
  #: bp-templates/bp-legacy/buddypress/groups/groups-loop.php:71
5662
  msgstr[1] ""
5663
 
5664
  #: bp-friends/bp-friends-template.php:395
5665
+ #: bp-templates/bp-legacy/buddypress-functions.php:1471
5666
  msgid "Cancel Friendship Request"
5667
  msgstr ""
5668
 
5675
  msgstr ""
5676
 
5677
  #: bp-friends/bp-friends-template.php:443
5678
+ #: bp-templates/bp-legacy/buddypress-functions.php:1461
5679
+ #: bp-templates/bp-legacy/buddypress-functions.php:1479
5680
  msgid "Add Friend"
5681
  msgstr ""
5682
 
5794
  msgstr ""
5795
 
5796
  #: bp-friends/classes/class-bp-rest-friends-endpoint.php:338
5797
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:504
5798
  msgid "You are not allowed to perform this action."
5799
  msgstr ""
5800
 
6241
  msgstr[1] ""
6242
 
6243
  #: bp-groups/bp-groups-admin.php:821
6244
+ #: bp-groups/bp-groups-blocks.php:368
6245
  #: bp-groups/classes/class-bp-groups-component.php:1130
6246
  #: bp-groups/classes/class-bp-groups-widget.php:77
6247
  #: bp-groups/classes/class-bp-groups-widget.php:214
6317
  msgid "Add new members"
6318
  msgstr ""
6319
 
6320
+ #: bp-groups/bp-groups-admin.php:999
6321
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:26
6322
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:24
6323
  msgid "Administrators"
6324
  msgstr ""
6325
 
6326
+ #: bp-groups/bp-groups-admin.php:1000
6327
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:119
6328
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:55
6329
  msgid "Moderators"
6330
  msgstr ""
6331
 
6332
  #. translators: accessibility text
6333
+ #: bp-groups/bp-groups-admin.php:1001
6334
  #: bp-groups/bp-groups-template.php:4692
6335
  #: bp-groups/classes/class-bp-groups-component.php:784
6336
+ #: bp-members/bp-members-blocks.php:389
6337
  #: bp-members/classes/class-bp-core-members-widget.php:258
6338
  #: bp-members/classes/class-bp-members-component.php:38
6339
  #: bp-members/classes/class-bp-members-component.php:883
6340
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:214
6341
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:85
6342
  #: bp-templates/bp-nouveau/includes/customizer.php:274
6343
  #: bp-members/js/blocks/dynamic-members.js:190
6344
  #: bp-members/js/blocks/members.js:384
6345
  msgid "Members"
6346
  msgstr ""
6347
 
6348
+ #: bp-groups/bp-groups-admin.php:1002
6349
  msgid "Banned Members"
6350
  msgstr ""
6351
 
6352
+ #: bp-groups/bp-groups-admin.php:1014
6353
  msgctxt "Group member user_id in group admin"
6354
  msgid "ID"
6355
  msgstr ""
6356
 
6357
+ #: bp-groups/bp-groups-admin.php:1015
6358
  msgctxt "Group member name in group admin"
6359
  msgid "Name"
6360
  msgstr ""
6361
 
6362
+ #: bp-groups/bp-groups-admin.php:1016
6363
  msgctxt "Group member role in group admin"
6364
  msgid "Group Role"
6365
  msgstr ""
6366
 
6367
  #. translators: accessibility text
6368
+ #: bp-groups/bp-groups-admin.php:1039
6369
  msgid "Select group role for member"
6370
  msgstr ""
6371
 
6372
+ #: bp-groups/bp-groups-admin.php:1042
6373
  msgid "Roles"
6374
  msgstr ""
6375
 
6376
+ #: bp-groups/bp-groups-admin.php:1043
6377
  #: bp-groups/bp-groups-functions.php:1335
6378
  msgid "Administrator"
6379
  msgstr ""
6380
 
6381
+ #: bp-groups/bp-groups-admin.php:1044
6382
  #: bp-groups/bp-groups-functions.php:1343
6383
  #: bp-groups/bp-groups-functions.php:3349
6384
  msgid "Moderator"
6385
  msgstr ""
6386
 
6387
+ #: bp-groups/bp-groups-admin.php:1045
6388
  #: bp-groups/bp-groups-functions.php:1351
6389
  #: bp-groups/bp-groups-functions.php:3351
6390
  #: bp-members/classes/class-bp-members-admin.php:912
6392
  msgid "Member"
6393
  msgstr ""
6394
 
6395
+ #: bp-groups/bp-groups-admin.php:1047
6396
  #: bp-groups/bp-groups-functions.php:1359
6397
  msgid "Banned"
6398
  msgstr ""
6399
 
6400
+ #: bp-groups/bp-groups-admin.php:1051
6401
  msgid "Remove"
6402
  msgstr ""
6403
 
6404
+ #: bp-groups/bp-groups-admin.php:1053
6405
  msgid "Ban"
6406
  msgstr ""
6407
 
6408
+ #: bp-groups/bp-groups-admin.php:1095
6409
  msgid "No members of this type"
6410
  msgstr ""
6411
 
6412
+ #: bp-groups/bp-groups-admin.php:1120
6413
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:12
6414
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/delete-group.php:39
6415
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:420
6416
  #: bp-xprofile/classes/class-bp-xprofile-group.php:951
6417
  msgid "Delete Group"
6418
  msgstr ""
6419
 
6420
+ #: bp-groups/bp-groups-admin.php:1124
6421
  #: bp-groups/classes/class-bp-group-extension.php:523
6422
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:53
6423
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/group-settings.php:115
6428
  #: bp-templates/bp-nouveau/includes/functions.php:1334
6429
  #: bp-templates/bp-nouveau/includes/functions.php:1345
6430
  #: bp-templates/bp-nouveau/includes/functions.php:1356
6431
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:412
6432
  msgid "Save Changes"
6433
  msgstr ""
6434
 
6435
  #. translators: accessibility text
6436
+ #: bp-groups/bp-groups-admin.php:1154
6437
  msgid "Select group type"
6438
  msgstr ""
6439
 
6440
+ #: bp-groups/bp-groups-admin.php:1164
6441
  msgid "(Not available on the front end)"
6442
  msgstr ""
6443
 
6444
+ #: bp-groups/bp-groups-admin.php:1259
6445
  msgid "&laquo;"
6446
  msgstr ""
6447
 
6448
+ #: bp-groups/bp-groups-admin.php:1260
6449
  msgid "&raquo;"
6450
  msgstr ""
6451
 
6452
+ #: bp-groups/bp-groups-admin.php:1266
6453
  #: bp-groups/bp-groups-template.php:4539
6454
  #: bp-members/bp-members-template.php:536
6455
  msgid "Viewing 1 member"
6456
  msgstr ""
6457
 
6458
  #. translators: 1: group member from number. 2: group member to number. 3: total group members.
6459
+ #: bp-groups/bp-groups-admin.php:1270
6460
  msgctxt "Group members pagination in group admin"
6461
  msgid "Viewing %1$s - %2$s of %3$s member"
6462
  msgid_plural "Viewing %1$s - %2$s of %3$s members"
6464
  msgstr[1] ""
6465
 
6466
  #. Translators: 1: user_login, 2: user_email.
6467
+ #: bp-groups/bp-groups-admin.php:1336
6468
  msgid "%1$s (%2$s)"
6469
  msgstr ""
6470
 
6471
+ #: bp-groups/bp-groups-admin.php:1429
6472
  msgid "There was an error while changing group type. Please try again."
6473
  msgstr ""
6474
 
6475
+ #: bp-groups/bp-groups-admin.php:1432
6476
  msgid "Group type was changed successfully."
6477
  msgstr ""
6478
 
6479
+ #: bp-groups/bp-groups-admin.php:1472
6480
  msgid "Please define the Group Type ID field."
6481
  msgstr ""
6482
 
6483
+ #: bp-groups/bp-groups-admin.php:1473
6484
  msgid "Group type successfully added."
6485
  msgstr ""
6486
 
6487
+ #: bp-groups/bp-groups-admin.php:1474
6488
  msgid "Sorry, there was an error and the Group type wasn’t added."
6489
  msgstr ""
6490
 
6491
+ #: bp-groups/bp-groups-admin.php:1476
6492
  msgid "Group type successfully updated."
6493
  msgstr ""
6494
 
6495
+ #: bp-groups/bp-groups-admin.php:1477
6496
  msgid "Sorry, this Group type already exists."
6497
  msgstr ""
6498
 
6499
+ #: bp-groups/bp-groups-admin.php:1478
6500
  msgid "Sorry, the Group type was not deleted: it does not exist."
6501
  msgstr ""
6502
 
6503
+ #: bp-groups/bp-groups-admin.php:1479
6504
  msgid "Sorry, This Group type is registered using code, deactivate the plugin or remove the custom code before trying to delete it again."
6505
  msgstr ""
6506
 
6507
+ #: bp-groups/bp-groups-admin.php:1480
6508
  msgid "Sorry, there was an error while trying to delete this Group type."
6509
  msgstr ""
6510
 
6511
+ #: bp-groups/bp-groups-admin.php:1481
6512
  msgid "Group type successfully deleted."
6513
  msgstr ""
6514
 
6515
+ #: bp-groups/bp-groups-admin.php:1482
6516
  msgid "Group type could not be updated due to missing required information."
6517
  msgstr ""
6518
 
6531
  #. Translators: %s is the group's name.
6532
  #: bp-groups/bp-groups-blocks.php:96
6533
  #: bp-groups/bp-groups-blocks.php:259
6534
+ #: bp-groups/bp-groups-blocks.php:479
6535
  #: bp-groups/js/dynamic-groups.js:51
6536
  msgid "Group Profile photo of %s"
6537
  msgstr ""
6543
  msgstr[0] ""
6544
  msgstr[1] ""
6545
 
6546
+ #: bp-groups/bp-groups-blocks.php:379
6547
  #: bp-groups/classes/class-bp-groups-widget.php:171
6548
  #: bp-groups/js/dynamic-groups.js:56
6549
  msgid "There are no groups to display."
6550
  msgstr ""
6551
 
6552
+ #: bp-groups/bp-groups-blocks.php:414
6553
  #: bp-groups/bp-groups-template.php:4720
6554
  #: bp-groups/classes/class-bp-groups-widget.php:134
6555
  #: bp-groups/classes/class-bp-groups-widget.php:246
6560
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:24
6561
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:25
6562
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:108
6563
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:652
6564
  #: bp-templates/bp-nouveau/includes/members/functions.php:125
6565
  #: bp-templates/bp-nouveau/includes/members/functions.php:143
6566
  #: bp-groups/js/blocks/dynamic-groups.js:29
6568
  msgstr ""
6569
 
6570
  #. translators: %s is time elapsed since the group was created
6571
+ #: bp-groups/bp-groups-blocks.php:452
6572
  #: bp-groups/js/dynamic-groups.js:33
6573
  msgid "Created %s"
6574
  msgstr ""
6575
 
6576
  #. translators: %s is the number of Group members
6577
+ #: bp-groups/bp-groups-blocks.php:457
6578
  #: bp-groups/bp-groups-template.php:2226
6579
  #: bp-templates/bp-nouveau/buddypress/members/single/groups/invites.php:40
6580
  msgid "%s member"
7022
  #: bp-groups/bp-groups-template.php:2606
7023
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:75
7024
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:169
7025
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:41
7026
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:71
7027
  msgid "Demote to Member"
7028
  msgstr ""
7029
 
7041
  #: bp-groups/bp-groups-template.php:2605
7042
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:168
7043
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:277
7044
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:70
7045
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:948
7046
  msgid "Promote to Admin"
7047
  msgstr ""
7048
 
7055
  msgstr ""
7056
 
7057
  #: bp-groups/bp-groups-template.php:3598
7058
+ #: bp-templates/bp-legacy/buddypress-functions.php:1584
7059
+ #: bp-templates/bp-legacy/buddypress-functions.php:1598
7060
  msgid "Leave Group"
7061
  msgstr ""
7062
 
7063
  #: bp-groups/bp-groups-template.php:3619
7064
+ #: bp-templates/bp-legacy/buddypress-functions.php:1618
7065
  msgid "Join Group"
7066
  msgstr ""
7067
 
7070
  msgstr ""
7071
 
7072
  #: bp-groups/bp-groups-template.php:3652
7073
+ #: bp-templates/bp-legacy/buddypress-functions.php:1608
7074
  msgid "Request Sent"
7075
  msgstr ""
7076
 
7626
  msgstr ""
7627
 
7628
  #: bp-groups/classes/class-bp-rest-group-invites-endpoint.php:519
7629
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:542
7630
  msgid "Sorry, you are not allowed to create the invitation as requested."
7631
  msgstr ""
7632
 
8453
  msgid "View Profile"
8454
  msgstr ""
8455
 
8456
+ #: bp-members/bp-members-blocks.php:400
8457
  #: bp-members/js/dynamic-members.js:56
8458
  msgid "No members found."
8459
  msgstr ""
8460
 
8461
+ #: bp-members/bp-members-blocks.php:693
8462
  #: bp-members/classes/class-bp-core-whos-online-widget.php:180
8463
  #: bp-members/classes/class-bp-members-component.php:917
8464
  #: bp-members/js/blocks/online-members.js:127
8465
  msgid "Who's Online"
8466
  msgstr ""
8467
 
8468
+ #: bp-members/bp-members-blocks.php:695
8469
  #: bp-members/classes/class-bp-core-whos-online-widget.php:103
8470
  msgid "There are no users currently online"
8471
  msgstr ""
8472
 
8473
+ #: bp-members/bp-members-blocks.php:718
8474
  #: bp-members/classes/class-bp-core-recently-active-widget.php:180
8475
  #: bp-members/classes/class-bp-members-component.php:943
8476
  #: bp-members/js/blocks/active-members.js:116
8478
  msgid "Recently Active Members"
8479
  msgstr ""
8480
 
8481
+ #: bp-members/bp-members-blocks.php:720
8482
  #: bp-members/classes/class-bp-core-recently-active-widget.php:103
8483
  msgid "There are no recently active members"
8484
  msgstr ""
8979
 
8980
  #: bp-members/bp-members-template.php:3691
8981
  #: bp-templates/bp-nouveau/buddypress/activity/comment-form.php:29
8982
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:105
8983
  #: bp-templates/bp-nouveau/includes/members/template-tags.php:1063
8984
  msgctxt "button"
8985
  msgid "Cancel"
10114
  msgid "There was a problem resending that invitation."
10115
  msgstr ""
10116
 
10117
+ #: bp-members/screens/register.php:101
10118
+ #: bp-settings/actions/general.php:147
10119
+ msgid "Your password is not strong enougth to be allowed on this site. Please use a stronger password."
10120
+ msgstr ""
10121
+
10122
+ #: bp-members/screens/register.php:125
10123
  msgid "You must indicate that you have read and agreed to the Privacy Policy."
10124
  msgstr ""
10125
 
10126
+ #: bp-members/screens/register.php:155
10127
  msgid "This is a required field"
10128
  msgstr ""
10129
 
10159
  msgstr ""
10160
 
10161
  #: bp-messages/actions/bulk-manage.php:67
10162
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:775
10163
  msgid "Messages marked as unread."
10164
  msgstr ""
10165
 
10166
  #: bp-messages/actions/compose.php:37
10167
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:116
10168
  msgid "Your message was not sent. Please enter a subject line."
10169
  msgstr ""
10170
 
10171
  #: bp-messages/actions/compose.php:39
10172
  #: bp-messages/bp-messages-functions.php:67
10173
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:118
10174
  msgid "Your message was not sent. Please enter some content."
10175
  msgstr ""
10176
 
10185
  msgstr ""
10186
 
10187
  #: bp-messages/actions/compose.php:91
10188
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:155
10189
  msgid "Message successfully sent."
10190
  msgstr ""
10191
 
10197
  msgid "Message deleted."
10198
  msgstr ""
10199
 
10200
+ #: bp-messages/actions/exit.php:32
10201
+ msgid "There was an error exiting the conversation."
10202
+ msgstr ""
10203
+
10204
+ #: bp-messages/actions/exit.php:34
10205
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:875
10206
+ msgid "You have left the message thread."
10207
+ msgstr ""
10208
+
10209
  #: bp-messages/actions/notices.php:55
10210
  msgid "Notice deactivated successfully."
10211
  msgstr ""
10252
  msgstr ""
10253
 
10254
  #: bp-messages/actions/view.php:43
10255
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:277
10256
  msgid "Your reply was sent successfully"
10257
  msgstr ""
10258
 
10259
  #: bp-messages/actions/view.php:45
10260
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:172
10261
  msgid "There was a problem sending your reply. Please try again."
10262
  msgstr ""
10263
 
10363
  msgstr ""
10364
 
10365
  #: bp-messages/bp-messages-star.php:106
10366
+ #: bp-templates/bp-legacy/buddypress-functions.php:355
10367
  #: bp-templates/bp-nouveau/includes/messages/functions.php:126
10368
  msgid "Unstar"
10369
  msgstr ""
10370
 
10371
  #. translators: accessibility text
10372
  #: bp-messages/bp-messages-star.php:107
10373
+ #: bp-templates/bp-legacy/buddypress-functions.php:356
10374
  #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:82
10375
  #: bp-templates/bp-nouveau/includes/messages/functions.php:127
10376
  msgid "Star"
10379
  #: bp-messages/bp-messages-star.php:108
10380
  #: bp-messages/classes/class-bp-messages-component.php:251
10381
  #: bp-messages/classes/class-bp-messages-component.php:358
10382
+ #: bp-templates/bp-legacy/buddypress-functions.php:357
10383
  #: bp-templates/bp-nouveau/includes/messages/functions.php:128
10384
  msgid "Starred"
10385
  msgstr ""
10386
 
10387
  #: bp-messages/bp-messages-star.php:109
10388
+ #: bp-templates/bp-legacy/buddypress-functions.php:358
10389
  #: bp-templates/bp-nouveau/includes/messages/functions.php:129
10390
  msgid "Not starred"
10391
  msgstr ""
10392
 
10393
  #: bp-messages/bp-messages-star.php:110
10394
+ #: bp-templates/bp-legacy/buddypress-functions.php:359
10395
  #: bp-templates/bp-nouveau/includes/messages/functions.php:130
10396
  msgid "Remove all starred messages in this thread"
10397
  msgstr ""
10398
 
10399
  #: bp-messages/bp-messages-star.php:111
10400
+ #: bp-templates/bp-legacy/buddypress-functions.php:360
10401
  #: bp-templates/bp-nouveau/includes/messages/functions.php:131
10402
  msgid "Star the first message in this thread"
10403
  msgstr ""
10509
 
10510
  #: bp-messages/bp-messages-template.php:1878
10511
  #: bp-messages/bp-messages-template.php:2150
10512
+ #: bp-messages/classes/class-bp-messages-thread.php:1108
10513
  msgid "Deleted User"
10514
  msgstr ""
10515
 
10518
  msgstr ""
10519
 
10520
  #. translators: %s: last activity timestamp (e.g. "active 1 hour ago")
10521
+ #: bp-messages/bp-messages-template.php:2247
10522
  msgid "Sent %s"
10523
  msgstr ""
10524
 
10525
+ #: bp-messages/bp-messages-template.php:2307
10526
  msgid "[deleted]"
10527
  msgstr ""
10528
 
10653
  msgstr ""
10654
 
10655
  #. translators: %s: number of message recipients
10656
+ #: bp-messages/classes/class-bp-messages-thread.php:1099
10657
  msgid "%s Recipients"
10658
  msgstr ""
10659
 
11236
  msgid "%s was successfully deleted."
11237
  msgstr ""
11238
 
11239
+ #: bp-settings/actions/general.php:161
11240
  msgid "The new password must be different from the current password."
11241
  msgstr ""
11242
 
11243
+ #: bp-settings/actions/general.php:172
11244
  msgid "One of the password fields was empty."
11245
  msgstr ""
11246
 
11247
+ #: bp-settings/actions/general.php:189
11248
  msgid "Your current password is invalid."
11249
  msgstr ""
11250
 
11251
+ #: bp-settings/actions/general.php:195
11252
  msgid "That email address is invalid. Check the formatting and try again."
11253
  msgstr ""
11254
 
11255
+ #: bp-settings/actions/general.php:198
11256
  msgid "That email address is currently unavailable for use."
11257
  msgstr ""
11258
 
11259
+ #: bp-settings/actions/general.php:201
11260
  msgid "That email address is already taken."
11261
  msgstr ""
11262
 
11263
+ #: bp-settings/actions/general.php:204
11264
  msgid "Email address cannot be empty."
11265
  msgstr ""
11266
 
11267
+ #: bp-settings/actions/general.php:217
11268
  msgid "Your settings have been saved."
11269
  msgstr ""
11270
 
11271
+ #: bp-settings/actions/general.php:223
11272
  msgid "No changes were made to your account."
11273
  msgstr ""
11274
 
11275
+ #: bp-settings/actions/general.php:225
11276
  msgid "No changes were made to this account."
11277
  msgstr ""
11278
 
11279
+ #: bp-settings/actions/general.php:278
11280
  msgid "There was a problem verifying your new email address. If you haven’t dismissed the pending email change, please request a new email update."
11281
  msgstr ""
11282
 
11283
+ #: bp-settings/actions/general.php:308
11284
  msgid "You have successfully verified your new email address."
11285
  msgstr ""
11286
 
11287
+ #: bp-settings/actions/general.php:311
11288
  msgid "There was a problem verifying your new email address. Please try again."
11289
  msgstr ""
11290
 
11291
+ #: bp-settings/actions/general.php:335
11292
  msgid "You have successfully dismissed your pending email change."
11293
  msgstr ""
11294
 
11405
  msgstr ""
11406
 
11407
  #: bp-templates/bp-legacy/buddypress-functions.php:307
11408
+ #: bp-templates/bp-legacy/buddypress-functions.php:1273
11409
+ #: bp-templates/bp-legacy/buddypress-functions.php:1301
11410
  #: bp-templates/bp-legacy/buddypress/activity/entry.php:82
11411
  msgid "Favorite"
11412
  msgstr ""
11422
  msgstr ""
11423
 
11424
  #: bp-templates/bp-legacy/buddypress-functions.php:310
11425
+ #: bp-templates/bp-legacy/buddypress-functions.php:1271
11426
+ #: bp-templates/bp-legacy/buddypress-functions.php:1303
11427
  #: bp-templates/bp-legacy/buddypress/activity/entry.php:86
11428
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:111
11429
  #: bp-templates/bp-nouveau/includes/activity/template-tags.php:410
11445
  msgstr ""
11446
 
11447
  #: bp-templates/bp-legacy/buddypress-functions.php:316
11448
+ #: bp-templates/bp-nouveau/buddypress-functions.php:477
11449
  msgid "Your profile has unsaved changes. If you leave the page, the changes will be lost."
11450
  msgstr ""
11451
 
11452
+ #: bp-templates/bp-legacy/buddypress-functions.php:345
11453
+ #: bp-templates/bp-nouveau/buddypress-functions.php:522
11454
+ msgid "Your password is too weak, please use a stronger password."
11455
+ msgstr ""
11456
+
11457
+ #: bp-templates/bp-legacy/buddypress-functions.php:1009
11458
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:571
11459
  msgid "There was a problem posting your update. Please try again."
11460
  msgstr ""
11461
 
11462
+ #: bp-templates/bp-legacy/buddypress-functions.php:1148
11463
+ #: bp-templates/bp-legacy/buddypress-functions.php:1188
11464
  #: bp-templates/bp-nouveau/includes/activity/ajax.php:201
11465
  msgid "There was a problem when deleting. Please try again."
11466
  msgstr ""
11467
 
11468
+ #: bp-templates/bp-legacy/buddypress-functions.php:1404
11469
  #: bp-templates/bp-legacy/buddypress/groups/create.php:383
11470
  #: bp-templates/bp-legacy/buddypress/groups/single/invites-loop.php:75
11471
  msgid "Remove Invite"
11472
  msgstr ""
11473
 
11474
  #. translators: %s: user link
11475
+ #: bp-templates/bp-legacy/buddypress-functions.php:1409
11476
  msgid "%s has previously requested to join this group. Sending an invitation will automatically add the member to the group."
11477
  msgstr ""
11478
 
11479
+ #: bp-templates/bp-legacy/buddypress-functions.php:1451
11480
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:107
11481
  msgid "No member found by that ID."
11482
  msgstr ""
11483
 
11484
+ #: bp-templates/bp-legacy/buddypress-functions.php:1469
11485
  msgid " Friendship could not be requested."
11486
  msgstr ""
11487
 
11488
+ #: bp-templates/bp-legacy/buddypress-functions.php:1481
11489
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:210
11490
  msgid "Friendship request could not be cancelled."
11491
  msgstr ""
11492
 
11493
+ #: bp-templates/bp-legacy/buddypress-functions.php:1486
11494
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:220
11495
  msgid "Request Pending"
11496
  msgstr ""
11497
 
11498
+ #: bp-templates/bp-legacy/buddypress-functions.php:1507
11499
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:121
11500
  msgid "There was a problem accepting that request. Please try again."
11501
  msgstr ""
11502
 
11503
+ #: bp-templates/bp-legacy/buddypress-functions.php:1527
11504
  #: bp-templates/bp-nouveau/includes/friends/ajax.php:145
11505
  msgid "There was a problem rejecting that request. Please try again."
11506
  msgstr ""
11507
 
11508
+ #: bp-templates/bp-legacy/buddypress-functions.php:1576
11509
+ #: bp-templates/bp-legacy/buddypress-functions.php:1582
11510
  msgid "Error joining group"
11511
  msgstr ""
11512
 
11513
+ #: bp-templates/bp-legacy/buddypress-functions.php:1590
11514
  msgid "Error accepting invitation"
11515
  msgstr ""
11516
 
11517
+ #: bp-templates/bp-legacy/buddypress-functions.php:1596
11518
+ #: bp-templates/bp-legacy/buddypress-functions.php:1606
11519
  msgid "Error requesting membership"
11520
  msgstr ""
11521
 
11522
+ #: bp-templates/bp-legacy/buddypress-functions.php:1616
11523
  msgid "Error leaving group"
11524
  msgstr ""
11525
 
11526
+ #: bp-templates/bp-legacy/buddypress-functions.php:1643
11527
  msgid "There was a problem closing the notice."
11528
  msgstr ""
11529
 
11530
+ #: bp-templates/bp-legacy/buddypress-functions.php:1670
11531
+ #: bp-templates/bp-legacy/buddypress-functions.php:1710
11532
  msgid "There was a problem sending that reply. Please try again."
11533
  msgstr ""
11534
 
11818
  #: bp-templates/bp-legacy/buddypress/members/single/friends.php:22
11819
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:22
11820
  #: bp-templates/bp-nouveau/includes/blogs/functions.php:106
11821
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:649
11822
  #: bp-templates/bp-nouveau/includes/members/functions.php:120
11823
  msgid "Last Active"
11824
  msgstr ""
12021
  msgstr ""
12022
 
12023
  #: bp-templates/bp-legacy/buddypress/groups/create.php:445
12024
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:441
12025
  msgid "Back to Previous Step"
12026
  msgstr ""
12027
 
12028
  #: bp-templates/bp-legacy/buddypress/groups/create.php:452
12029
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:449
12030
  msgid "Next Step"
12031
  msgstr ""
12032
 
12033
  #: bp-templates/bp-legacy/buddypress/groups/create.php:459
12034
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:456
12035
  msgid "Create Group and Continue"
12036
  msgstr ""
12037
 
12038
  #: bp-templates/bp-legacy/buddypress/groups/create.php:466
12039
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:463
12040
  msgid "Finish"
12041
  msgstr ""
12042
 
12059
 
12060
  #: bp-templates/bp-legacy/buddypress/groups/index.php:111
12061
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:23
12062
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:650
12063
  msgid "Most Members"
12064
  msgstr ""
12065
 
12066
  #: bp-templates/bp-legacy/buddypress/groups/index.php:112
12067
  #: bp-templates/bp-legacy/buddypress/members/single/groups.php:24
12068
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:651
12069
  msgid "Newly Created"
12070
  msgstr ""
12071
 
12088
  msgstr ""
12089
 
12090
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/edit-details.php:40
12091
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:1522
12092
  msgid "Notify group members of these changes via email"
12093
  msgstr ""
12094
 
12114
 
12115
  #. translators: indicates a user is banned from a group, e.g. "Mike (banned)".
12116
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:248
12117
+ #: bp-templates/bp-nouveau/buddypress/groups/single/admin/manage-members.php:108
12118
  msgid "(banned)"
12119
  msgstr ""
12120
 
12121
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:271
12122
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:891
12123
  msgid "Remove Ban"
12124
  msgstr ""
12125
 
12126
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:275
12127
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:910
12128
  msgid "Kick &amp; Ban"
12129
  msgstr ""
12130
 
12131
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:276
12132
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:939
12133
  msgid "Promote to Mod"
12134
  msgstr ""
12135
 
12136
  #: bp-templates/bp-legacy/buddypress/groups/single/admin/manage-members.php:281
12137
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:968
12138
  msgid "Remove from group"
12139
  msgstr ""
12140
 
12194
  #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:58
12195
  #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:63
12196
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:60
12197
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:774
12198
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:830
12199
  msgid "Accept"
12200
  msgstr ""
12201
 
12202
  #: bp-templates/bp-legacy/buddypress/groups/single/requests-loop.php:60
12203
  #: bp-templates/bp-legacy/buddypress/members/single/friends/requests.php:64
12204
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:61
12205
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:801
12206
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:857
12207
  msgid "Reject"
12208
  msgstr ""
12209
 
12289
  #: bp-templates/bp-legacy/buddypress/members/register.php:281
12290
  #: bp-templates/bp-legacy/buddypress/members/register.php:297
12291
  #: bp-templates/bp-nouveau/buddypress/members/single/invitations/send-invites.php:23
12292
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2420
12293
  #: bp-xprofile/bp-xprofile-template.php:1464
12294
  msgid "(required)"
12295
  msgstr ""
12409
 
12410
  #. translators: accessibility text
12411
  #: bp-templates/bp-legacy/buddypress/members/single/groups/invites.php:21
12412
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1273
12413
  msgid "Group invitations"
12414
  msgstr ""
12415
 
12548
  msgstr ""
12549
 
12550
  #: bp-templates/bp-legacy/buddypress/members/single/messages/messages-loop.php:195
12551
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:314
12552
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:471
12553
  msgid "Sorry, no messages were found."
12554
  msgstr ""
12555
 
12579
  msgid "Conversation between %s."
12580
  msgstr ""
12581
 
12582
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:55
12583
+ msgid "Exit Conversation"
12584
+ msgstr ""
12585
+
12586
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:114
12587
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:335
12588
  msgid "Send a Reply"
12589
  msgstr ""
12590
 
12591
  #. translators: accessibility text
12592
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:137
12593
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:346
12594
  msgid "Reply to Message"
12595
  msgstr ""
12596
 
12597
+ #: bp-templates/bp-legacy/buddypress/members/single/messages/single.php:151
12598
  msgid "Send Reply"
12599
  msgstr ""
12600
 
12817
  msgstr ""
12818
 
12819
  #. translators: %s: number of activity comments
12820
+ #: bp-templates/bp-nouveau/buddypress-functions.php:476
12821
  msgid "Show all %d comments"
12822
  msgstr ""
12823
 
12884
  msgid "Remove item"
12885
  msgstr ""
12886
 
12887
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:26
12888
  msgctxt "group manage members update feedback"
12889
  msgid "Updating role... Please wait."
12890
  msgstr ""
12891
 
12892
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:28
12893
  msgctxt "group manage members ban feedback"
12894
  msgid "Banning member... Please wait."
12895
  msgstr ""
12896
 
12897
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:30
12898
  msgctxt "group manage members unban feedback"
12899
  msgid "Unbanning member... Please wait."
12900
  msgstr ""
12901
 
12902
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:32
12903
  msgctxt "group manage members remove feedback"
12904
  msgid "Removing member... Please wait."
12905
  msgstr ""
12906
 
12907
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:42
12908
  msgctxt "group manage members table header"
12909
  msgid "Group Members"
12910
  msgstr ""
12911
 
12912
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:43
12913
  msgctxt "group manage members table header"
12914
  msgid "Roles"
12915
  msgstr ""
12916
 
12917
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:51
12918
  msgid "No Group members were found for this request."
12919
  msgstr ""
12920
 
12921
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:58
12922
  msgctxt "group manage members row edit"
12923
  msgid "Change role for:"
12924
  msgstr ""
12925
 
12926
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:60
12927
  msgctxt "group manage members roles filter"
12928
  msgid "Filter:"
12929
  msgstr ""
12930
 
12931
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:74
12932
  msgctxt "group member edit role link"
12933
  msgid "Edit"
12934
  msgstr ""
12935
 
12936
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:77
12937
  msgctxt "group member edit role abort link"
12938
  msgid "Stop editing"
12939
  msgstr ""
12940
 
12941
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:80
12942
  msgctxt "group member ban link"
12943
  msgid "Ban"
12944
  msgstr ""
12945
 
12946
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:82
12947
  msgctxt "group member unban link"
12948
  msgid "Unban"
12949
  msgstr ""
12950
 
12951
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:84
12952
  msgctxt "group member ban link"
12953
  msgid "Remove"
12954
  msgstr ""
12955
 
12956
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:107
12957
  msgid "Search Members"
12958
  msgstr ""
12959
 
12960
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:109
12961
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:115
12962
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/search-form.php:13
12963
  msgctxt "search placeholder text"
12964
  msgid "Search"
12965
  msgstr ""
12966
 
12967
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:112
12968
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:119
12969
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/search-form.php:16
12970
  #: bp-templates/bp-nouveau/buddypress/common/search/search-form.php:19
12971
  msgctxt "button"
12972
  msgid "Search"
12973
  msgstr ""
12974
 
12975
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:130
12976
  msgctxt "link"
12977
  msgid "Prev."
12978
  msgstr ""
12979
 
12980
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/group-members/index.php:135
12981
  msgctxt "link"
12982
  msgid "Next"
12983
  msgstr ""
12984
 
12985
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:50
 
 
 
 
 
 
 
 
 
12986
  msgid "Invited by:"
12987
  msgstr ""
12988
 
12989
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:59
12990
  msgid "The invite has not been sent yet."
12991
  msgstr ""
12992
 
12993
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:61
12994
  msgid "The invite has been sent."
12995
  msgstr ""
12996
 
12997
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:71
12998
  msgid "Cancel invitation"
12999
  msgstr ""
13000
 
13001
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:71
13002
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:77
13003
  msgctxt "button"
13004
  msgid "Invite"
13005
  msgstr ""
13006
 
13007
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:75
13008
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:84
13009
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:86
13010
  msgctxt "button"
13011
  msgid "Cancel invitation"
13012
  msgstr ""
13013
 
13014
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:101
13015
  msgid "Optional: add a message to your invite."
13016
  msgstr ""
13017
 
13018
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:106
13019
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:47
13020
  msgctxt "button"
13021
  msgid "Send"
13022
  msgstr ""
13023
 
13024
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:114
13025
  msgctxt "heading"
13026
  msgid "Search Members"
13027
  msgstr ""
13028
 
13029
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:128
13030
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:130
13031
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:81
13032
  msgctxt "link"
13033
  msgid "Previous page"
13034
  msgstr ""
13035
 
13036
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:135
13037
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/invites/index.php:136
13038
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:88
13039
  msgctxt "link"
13040
  msgid "Next page"
13066
  msgstr ""
13067
 
13068
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:175
13069
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:244
13070
  msgid "Participants:"
13071
  msgstr ""
13072
 
13073
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:188
13074
  #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:189
13075
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:256
13076
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:257
13077
  msgid "Delete conversation."
13078
  msgstr ""
13079
 
13080
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:193
13081
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:194
13082
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:261
13083
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:262
13084
+ msgid "Exit conversation."
13085
+ msgstr ""
13086
+
13087
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:201
13088
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:202
13089
  msgid "Unstar Conversation"
13090
  msgstr ""
13091
 
13092
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:205
13093
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:206
13094
  msgid "Star Conversation"
13095
  msgstr ""
13096
 
13097
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:212
13098
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:213
13099
  msgid "View full conversation and reply."
13100
  msgstr ""
13101
 
13102
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:285
13103
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:286
13104
  msgid "Unstar Message"
13105
  msgstr ""
13106
 
13107
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:289
13108
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:290
13109
  msgid "Star Message"
13110
  msgstr ""
13111
 
13112
+ #: bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php:352
13113
  msgctxt "button"
13114
  msgid "Send Reply"
13115
  msgstr ""
13155
  msgstr ""
13156
 
13157
  #: bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php:13
13158
+ msgid "Upload Group profile photo"
13159
  msgstr ""
13160
 
13161
  #: bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php:19
13162
+ msgid "Change Group profile photo"
13163
  msgstr ""
13164
 
13165
  #: bp-templates/bp-nouveau/buddypress/groups/single/admin/group-avatar.php:26
13487
  msgstr ""
13488
 
13489
  #: bp-templates/bp-nouveau/includes/activity/functions.php:256
13490
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:581
13491
  msgid "My Groups"
13492
  msgstr ""
13493
 
13935
  msgid "Error leaving group."
13936
  msgstr ""
13937
 
13938
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:289
13939
+ msgid "Inviting members to join this group is restricted to Group Administrators."
13940
+ msgstr ""
13941
+
13942
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:291
13943
+ msgid "Inviting members to join this group is restricted to Group Moderators and Administrators."
13944
+ msgstr ""
13945
+
13946
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:311
13947
  msgid "Select members to invite by clicking the + button. Once you've made your selection, use the \"Send Invites\" navigation item to continue."
13948
  msgstr ""
13949
 
13950
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:316
13951
  msgid "Select friends to invite by clicking the + button. Once you've made your selection, use the \"Send Invites\" navigation item to continue."
13952
  msgstr ""
13953
 
13954
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:323
13955
  msgid "No pending group invitations found."
13956
  msgstr ""
13957
 
13958
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:330
13959
  msgid "You can view the group's pending invitations from this screen."
13960
  msgstr ""
13961
 
13962
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:337
13963
  msgid "No members were found. Try another filter."
13964
  msgstr ""
13965
 
13966
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:343
13967
  msgid "All your friends are already members of this group, or have already received an invite to join this group, or have requested to join it."
13968
  msgstr ""
13969
 
13970
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:349
13971
  msgid "You have no friends!"
13972
  msgstr ""
13973
 
13974
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:354
13975
  msgid "No friends were found. Try another filter."
13976
  msgstr ""
13977
 
13978
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:383
13979
  msgid "Invites could not be sent. Please try again."
13980
  msgstr ""
13981
 
13982
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:399
13983
  msgid "You are not allowed to send invitations for this group."
13984
  msgstr ""
13985
 
13986
  #. translators: count of users affected
13987
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:440
13988
  msgid "Invitation failed for %s user."
13989
  msgid_plural "Invitation failed for %s users."
13990
  msgstr[0] ""
13991
  msgstr[1] ""
13992
 
13993
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:459
13994
  msgid "Invitations sent."
13995
  msgstr ""
13996
 
13997
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:473
13998
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:516
13999
  msgid "Group invitation could not be removed."
14000
  msgstr ""
14001
 
14002
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:505
14003
  msgid "The member is already a member of the group."
14004
  msgstr ""
14005
 
14006
+ #: bp-templates/bp-nouveau/includes/groups/ajax.php:525
14007
  msgid "There are no more pending invitations for the group."
14008
  msgstr ""
14009
 
14053
  msgid "Cancel invitation %s"
14054
  msgstr ""
14055
 
14056
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:346
14057
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:367
14058
  msgctxt "Group invitations menu title"
14059
  msgid "Invite"
14060
  msgstr ""
14061
 
14062
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:444
14063
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:472
14064
  msgctxt "Group invitations main menu title"
14065
  msgid "Group Invites"
14066
  msgstr ""
14067
 
14068
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:502
14069
  msgid "Group invites preferences saved."
14070
  msgstr ""
14071
 
14072
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:565
14073
  msgid "All Groups"
14074
  msgstr ""
14075
 
14076
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:750
14077
  msgid "Group front page"
14078
  msgstr ""
14079
 
14080
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:753
14081
  msgid "Configure the default front page for groups."
14082
  msgstr ""
14083
 
14084
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:756
14085
  msgid "Group navigation"
14086
  msgstr ""
14087
 
14088
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:759
14089
  msgid "Customize the navigation menu for groups. See your changes by navigating to a group in the live-preview window."
14090
  msgstr ""
14091
 
14092
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:860
14093
  msgid "Enable custom front pages for groups."
14094
  msgstr ""
14095
 
14096
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:866
14097
  msgid "Enable custom boxes for group homepages. When enabled, Plugins using the BuddyPress Group Extension API can include content into these boxes."
14098
  msgstr ""
14099
 
14100
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:872
14101
  msgid "Display the group description in the body of the group's front page."
14102
  msgstr ""
14103
 
14104
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:878
14105
  msgid "Display the group navigation vertically."
14106
  msgstr ""
14107
 
14108
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:884
14109
  msgid "Use tab styling for primary navigation."
14110
  msgstr ""
14111
 
14112
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:890
14113
  msgid "Use tab styling for secondary navigation."
14114
  msgstr ""
14115
 
14116
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:896
14117
  msgid "Use tab styling for the group creation process."
14118
  msgstr ""
14119
 
14120
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:903
14121
  msgid "Reorder the primary navigation for a group."
14122
  msgstr ""
14123
 
14124
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:909
14125
  msgctxt "Customizer control label"
14126
  msgid "Groups"
14127
  msgstr ""
14128
 
14129
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:916
14130
  msgid "Group > Members"
14131
  msgstr ""
14132
 
14133
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:923
14134
  msgid "Use column navigation for the Groups directory."
14135
  msgstr ""
14136
 
14137
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:929
14138
  msgid "Use tab styling for Groups directory navigation."
14139
  msgstr ""
14140
 
14141
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1248
14142
  msgid "Pending Group membership requests"
14143
  msgstr ""
14144
 
14145
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1253
14146
  msgid "Accepted Group membership requests"
14147
  msgstr ""
14148
 
14149
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1258
14150
  msgid "Rejected Group membership requests"
14151
  msgstr ""
14152
 
14153
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1263
14154
  msgid "Group Administrator promotions"
14155
  msgstr ""
14156
 
14157
+ #: bp-templates/bp-nouveau/includes/groups/functions.php:1268
14158
  msgid "Group Moderator promotions"
14159
  msgstr ""
14160
 
14161
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:177
14162
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:183
14163
+ msgid "Invite Members"
14164
+ msgstr ""
14165
+
14166
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:189
14167
+ msgid "Group invitations menu"
14168
+ msgstr ""
14169
+
14170
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:1408
14171
  msgid "Groups default front page"
14172
  msgstr ""
14173
 
14174
+ #: bp-templates/bp-nouveau/includes/groups/template-tags.php:1426
14175
  #: bp-templates/bp-nouveau/includes/members/template-tags.php:747
14176
  msgid "(BuddyPress) Widgets"
14177
  msgstr ""
14202
  msgid "Edit your bio"
14203
  msgstr ""
14204
 
14205
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:104
14206
  msgid "Your message could not be sent. Please try again."
14207
  msgstr ""
14208
 
14209
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:126
14210
  msgid "Your message was not sent. Please enter at least one username."
14211
  msgstr ""
14212
 
14213
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:182
14214
  msgid "Your reply was not sent. Please enter some content."
14215
  msgstr ""
14216
 
14217
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:290
14218
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:465
14219
  msgid "Unauthorized request."
14220
  msgstr ""
14221
 
14222
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:613
14223
  msgid "There was a problem deleting your messages. Please try again."
14224
  msgstr ""
14225
 
14226
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:636
14227
  msgid "Messages deleted"
14228
  msgstr ""
14229
 
14230
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:652
14231
  msgid "There was a problem starring your messages. Please try again."
14232
  msgstr ""
14233
 
14234
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:654
14235
  msgid "There was a problem unstarring your messages. Please try again."
14236
  msgstr ""
14237
 
14238
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:728
14239
  msgid "Messages successfully starred."
14240
  msgstr ""
14241
 
14242
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:730
14243
  msgid "Messages successfully unstarred."
14244
  msgstr ""
14245
 
14246
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:751
14247
  msgid "There was a problem marking your messages as read. Please try again."
14248
  msgstr ""
14249
 
14250
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:757
14251
  msgid "There was a problem marking your messages as unread. Please try again."
14252
  msgstr ""
14253
 
14254
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:777
14255
  msgid "Messages marked as read."
14256
  msgstr ""
14257
 
14258
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:812
14259
  msgid "There was a problem dismissing the notice. Please try again."
14260
  msgstr ""
14261
 
14262
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:834
14263
  msgid "Sitewide notice dismissed"
14264
  msgstr ""
14265
 
14266
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:839
14267
  msgid "There was a problem dismissing that sitewide notice"
14268
  msgstr ""
14269
 
14270
+ #: bp-templates/bp-nouveau/includes/messages/ajax.php:852
14271
+ msgid "There was a problem exiting the conversation. Please try again."
14272
+ msgstr ""
14273
+
14274
  #: bp-templates/bp-nouveau/includes/messages/functions.php:95
14275
  msgid "Please add at least one recipient."
14276
  msgstr ""
14356
  msgid "Choose a Password (required)"
14357
  msgstr ""
14358
 
14359
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2385
14360
  msgid "Strength indicator"
14361
  msgstr ""
14362
 
14363
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2390
14364
  msgid "Confirm use of weak password"
14365
  msgstr ""
14366
 
14367
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2398
14368
  msgid "Confirm new password"
14369
  msgstr ""
14370
 
14371
  #. translators: Do not translate placeholders. 2 = form field name, 3 = "(required)".
14372
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2414
14373
  msgid "<label for=\"%1$s\">%2$s %3$s</label>"
14374
  msgstr ""
14375
 
14376
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2433
14377
  msgid "I would like my site to appear in search engines, and in public listings around this network."
14378
  msgstr ""
14379
 
14380
  #. translators: link to Privacy Policy
14381
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2574
14382
  msgid "I have read and agree to this site's %s."
14383
  msgstr ""
14384
 
14385
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2689
14386
  msgctxt "BP RSS Tooltip"
14387
  msgid "RSS Feed"
14388
  msgstr ""
14389
 
14390
+ #: bp-templates/bp-nouveau/includes/template-tags.php:2690
14391
  msgctxt "BP RSS screen reader text"
14392
  msgid "RSS"
14393
  msgstr ""
class-buddypress.php CHANGED
@@ -349,7 +349,7 @@ class BuddyPress {
349
 
350
  /** Versions */
351
 
352
- $this->version = '10.0.0-beta1';
353
  $this->db_version = 13165;
354
 
355
  /** Loading */
349
 
350
  /** Versions */
351
 
352
+ $this->version = '10.0.0-beta2';
353
  $this->db_version = 13165;
354
 
355
  /** Loading */