Version Description
See: https://codex.buddypress.org/releases/version-10-2-0/
Download this release
Release Info
Developer | imath |
Plugin | BuddyPress |
Version | 10.2.0 |
Comparing to | |
See all releases |
Code changes from version 10.1.0 to 10.2.0
- bp-core/bp-core-attachments.php +71 -27
- bp-loader.php +1 -1
- bp-members/bp-members-functions.php +6 -4
- bp-notifications/bp-notifications-cache.php +8 -2
- bp-templates/bp-nouveau/css/twentytwentytwo-rtl.css +8 -0
- bp-templates/bp-nouveau/css/twentytwentytwo-rtl.min.css +1 -1
- bp-templates/bp-nouveau/css/twentytwentytwo.css +8 -0
- bp-templates/bp-nouveau/css/twentytwentytwo.min.css +1 -1
- bp-templates/bp-nouveau/js/buddypress-messages.js +18 -6
- bp-templates/bp-nouveau/js/buddypress-messages.min.js +1 -1
- bp-templates/bp-nouveau/sass/twentytwentytwo.scss +11 -0
- buddypress.pot +62 -62
- class-buddypress.php +1 -1
- readme.txt +7 -1
bp-core/bp-core-attachments.php
CHANGED
@@ -1638,6 +1638,58 @@ function bp_attachments_cover_image_ajax_delete() {
|
|
1638 |
}
|
1639 |
add_action( 'wp_ajax_bp_cover_image_delete', 'bp_attachments_cover_image_ajax_delete' );
|
1640 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1641 |
/**
|
1642 |
* List the files of a directory.
|
1643 |
*
|
@@ -1655,17 +1707,13 @@ function bp_attachments_list_directory_files( $directory_path = '' ) {
|
|
1655 |
$iterator = new FilesystemIterator( $directory_path, FilesystemIterator::SKIP_DOTS );
|
1656 |
|
1657 |
foreach ( $iterator as $file ) {
|
1658 |
-
$
|
1659 |
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
$
|
1665 |
-
$_file->last_modified = $file->getMTime();
|
1666 |
-
$_file->latest_access_date = $file->getATime();
|
1667 |
-
$_file->id = pathinfo( $_file->name, PATHINFO_FILENAME );
|
1668 |
-
$files[ $_file->id ] = $_file;
|
1669 |
}
|
1670 |
|
1671 |
return $files;
|
@@ -1692,30 +1740,26 @@ function bp_attachments_list_directory_files_recursively( $directory_path = '',
|
|
1692 |
$basedir = str_replace( '\\', '/', $bp_upload['basedir'] );
|
1693 |
|
1694 |
foreach ( $iterator as $file ) {
|
1695 |
-
$
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
$
|
1702 |
-
$
|
1703 |
-
$_file->latest_access_date = $file->getATime();
|
1704 |
-
$_file->parent_dir_path = str_replace( '\\', '/', dirname( $_file->path ) );
|
1705 |
-
$_file->parent_dir_url = str_replace( $basedir, $bp_upload['baseurl'], $_file->parent_dir_path );
|
1706 |
-
$_file->id = pathinfo( $_file->name, PATHINFO_FILENAME );
|
1707 |
|
1708 |
// Ensure URL is https if SSL is set/forced.
|
1709 |
if ( is_ssl() ) {
|
1710 |
-
$
|
1711 |
}
|
1712 |
|
1713 |
-
$file_id = $
|
1714 |
-
if ( $
|
1715 |
-
$file_id = trailingslashit( str_replace( trailingslashit( $directory_path ), '', $
|
1716 |
}
|
1717 |
|
1718 |
-
$files[ $file_id ] = $
|
1719 |
}
|
1720 |
|
1721 |
if ( $find ) {
|
1638 |
}
|
1639 |
add_action( 'wp_ajax_bp_cover_image_delete', 'bp_attachments_cover_image_ajax_delete' );
|
1640 |
|
1641 |
+
/**
|
1642 |
+
* Returns a file's mime type.
|
1643 |
+
*
|
1644 |
+
* @since 10.2.0
|
1645 |
+
*
|
1646 |
+
* @param string $file Absolute path of a file or directory.
|
1647 |
+
* @return false|string False if the mime type is not supported by WordPress.
|
1648 |
+
* The mime type of a file or 'directory' for a directory.
|
1649 |
+
*/
|
1650 |
+
function bp_attachements_get_mime_type( $file = '' ) {
|
1651 |
+
$file_type = wp_check_filetype( $file, wp_get_mime_types() );
|
1652 |
+
$file_mime = $file_type['type'];
|
1653 |
+
|
1654 |
+
if ( false === $file_mime && is_dir( $file ) ) {
|
1655 |
+
$file_mime = 'directory';
|
1656 |
+
}
|
1657 |
+
|
1658 |
+
return $file_mime;
|
1659 |
+
}
|
1660 |
+
|
1661 |
+
/**
|
1662 |
+
* Returns a BP Attachments file object.
|
1663 |
+
*
|
1664 |
+
* @since 10.2.0
|
1665 |
+
*
|
1666 |
+
* @param SplFileInfo $file The SplFileInfo file object.
|
1667 |
+
* @return null|object Null if the file is not supported by WordPress.
|
1668 |
+
* A BP Attachments file object otherwise.
|
1669 |
+
*/
|
1670 |
+
function bp_attachments_get_file_object( SplFileInfo $file ) {
|
1671 |
+
$path = $file->getPathname();
|
1672 |
+
$mime_type = bp_attachements_get_mime_type( $path );
|
1673 |
+
|
1674 |
+
// Mime type not supported by WordPress.
|
1675 |
+
if ( false === $mime_type ) {
|
1676 |
+
return null;
|
1677 |
+
}
|
1678 |
+
|
1679 |
+
$_file = new stdClass();
|
1680 |
+
|
1681 |
+
$_file->name = $file->getfilename();
|
1682 |
+
$_file->path = $path;
|
1683 |
+
$_file->size = $file->getSize();
|
1684 |
+
$_file->type = $file->getType();
|
1685 |
+
$_file->mime_type = bp_attachements_get_mime_type( $_file->path );
|
1686 |
+
$_file->last_modified = $file->getMTime();
|
1687 |
+
$_file->latest_access_date = $file->getATime();
|
1688 |
+
$_file->id = pathinfo( $_file->name, PATHINFO_FILENAME );
|
1689 |
+
|
1690 |
+
return $_file;
|
1691 |
+
}
|
1692 |
+
|
1693 |
/**
|
1694 |
* List the files of a directory.
|
1695 |
*
|
1707 |
$iterator = new FilesystemIterator( $directory_path, FilesystemIterator::SKIP_DOTS );
|
1708 |
|
1709 |
foreach ( $iterator as $file ) {
|
1710 |
+
$supported_file = bp_attachments_get_file_object( $file );
|
1711 |
|
1712 |
+
if ( is_null( $supported_file) ) {
|
1713 |
+
continue;
|
1714 |
+
}
|
1715 |
+
|
1716 |
+
$files[ $supported_file->id ] = $supported_file;
|
|
|
|
|
|
|
|
|
1717 |
}
|
1718 |
|
1719 |
return $files;
|
1740 |
$basedir = str_replace( '\\', '/', $bp_upload['basedir'] );
|
1741 |
|
1742 |
foreach ( $iterator as $file ) {
|
1743 |
+
$supported_file = bp_attachments_get_file_object( $file );
|
1744 |
+
|
1745 |
+
if ( is_null( $supported_file) ) {
|
1746 |
+
continue;
|
1747 |
+
}
|
1748 |
+
|
1749 |
+
$supported_file->parent_dir_path = str_replace( '\\', '/', dirname( $supported_file->path ) );
|
1750 |
+
$supported_file->parent_dir_url = str_replace( $basedir, $bp_upload['baseurl'], $supported_file->parent_dir_path );
|
|
|
|
|
|
|
|
|
1751 |
|
1752 |
// Ensure URL is https if SSL is set/forced.
|
1753 |
if ( is_ssl() ) {
|
1754 |
+
$supported_file->parent_dir_url = str_replace( 'http://', 'https://', $supported_file->parent_dir_url );
|
1755 |
}
|
1756 |
|
1757 |
+
$file_id = $supported_file->id;
|
1758 |
+
if ( $supported_file->parent_dir_path !== $directory_path ) {
|
1759 |
+
$file_id = trailingslashit( str_replace( trailingslashit( $directory_path ), '', $supported_file->parent_dir_path ) ) . $file_id;
|
1760 |
}
|
1761 |
|
1762 |
+
$files[ $file_id ] = $supported_file;
|
1763 |
}
|
1764 |
|
1765 |
if ( $find ) {
|
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.
|
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.2.0
|
19 |
* Text Domain: buddypress
|
20 |
* Domain Path: /bp-languages/
|
21 |
* License: GPLv2 or later (license.txt)
|
bp-members/bp-members-functions.php
CHANGED
@@ -942,9 +942,10 @@ function bp_is_user_spammer( $user_id = 0 ) {
|
|
942 |
*
|
943 |
* @since 1.6.0
|
944 |
*
|
945 |
-
* @param bool
|
|
|
946 |
*/
|
947 |
-
return apply_filters( 'bp_is_user_spammer', (bool) $is_spammer );
|
948 |
}
|
949 |
|
950 |
/**
|
@@ -1010,9 +1011,10 @@ function bp_is_user_deleted( $user_id = 0 ) {
|
|
1010 |
*
|
1011 |
* @since 1.6.0
|
1012 |
*
|
1013 |
-
* @param bool
|
|
|
1014 |
*/
|
1015 |
-
return apply_filters( 'bp_is_user_deleted', (bool) $is_deleted );
|
1016 |
}
|
1017 |
|
1018 |
/**
|
942 |
*
|
943 |
* @since 1.6.0
|
944 |
*
|
945 |
+
* @param bool $is_spammer Whether or not user is marked as spammer.
|
946 |
+
* @param \WP_User $user The user to which we are acting on.
|
947 |
*/
|
948 |
+
return apply_filters( 'bp_is_user_spammer', (bool) $is_spammer, $user );
|
949 |
}
|
950 |
|
951 |
/**
|
1011 |
*
|
1012 |
* @since 1.6.0
|
1013 |
*
|
1014 |
+
* @param bool $is_deleted Whether or not user is marked as deleted.
|
1015 |
+
* @param \WP_User $user The user to which we are acting on.
|
1016 |
*/
|
1017 |
+
return apply_filters( 'bp_is_user_deleted', (bool) $is_deleted, $user );
|
1018 |
}
|
1019 |
|
1020 |
/**
|
bp-notifications/bp-notifications-cache.php
CHANGED
@@ -104,11 +104,17 @@ function bp_notifications_clear_all_for_user_cache_before_update( $update_args,
|
|
104 |
|
105 |
// Get the list of user IDs from notification IDs.
|
106 |
} elseif ( isset( $where_args['ids'] ) && $where_args['ids'] ) {
|
107 |
-
$ids
|
|
|
|
|
|
|
|
|
|
|
108 |
|
109 |
$ns = BP_Notifications_Notification::get(
|
110 |
array(
|
111 |
-
'id'
|
|
|
112 |
)
|
113 |
);
|
114 |
|
104 |
|
105 |
// Get the list of user IDs from notification IDs.
|
106 |
} elseif ( isset( $where_args['ids'] ) && $where_args['ids'] ) {
|
107 |
+
$ids = (array) $where_args['ids'];
|
108 |
+
$is_new = 1;
|
109 |
+
|
110 |
+
if ( isset( $update_args['data']['is_new'] ) && 1 === $update_args['data']['is_new'] ) {
|
111 |
+
$is_new = 0;
|
112 |
+
}
|
113 |
|
114 |
$ns = BP_Notifications_Notification::get(
|
115 |
array(
|
116 |
+
'id' => $ids,
|
117 |
+
'is_new' => $is_new,
|
118 |
)
|
119 |
);
|
120 |
|
bp-templates/bp-nouveau/css/twentytwentytwo-rtl.css
CHANGED
@@ -479,6 +479,14 @@ body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-ite
|
|
479 |
* @section 3.1.3 - Activity Comments
|
480 |
*-----------------------------------------------------
|
481 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar {
|
483 |
width: auto;
|
484 |
margin-left: 0;
|
479 |
* @section 3.1.3 - Activity Comments
|
480 |
*-----------------------------------------------------
|
481 |
*/
|
482 |
+
#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button {
|
483 |
+
text-decoration: none;
|
484 |
+
}
|
485 |
+
|
486 |
+
#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button .icon {
|
487 |
+
display: none;
|
488 |
+
}
|
489 |
+
|
490 |
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar {
|
491 |
width: auto;
|
492 |
margin-left: 0;
|
bp-templates/bp-nouveau/css/twentytwentytwo-rtl.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@media screen and (max-width:46.8em){#buddypress.twentytwentytwo:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentytwo .bp-navs li .count{background-color:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:50%;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:hover{background:var(--wp--preset--color--background);color:var(--wp--preset--color--primary);outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo .bp-navs li.current a,#buddypress.twentytwentytwo .bp-navs li.current a:focus,#buddypress.twentytwentytwo .bp-navs li.current a:hover,#buddypress.twentytwentytwo .bp-navs li.selected a,#buddypress.twentytwentytwo .bp-navs li.selected a:focus,#buddypress.twentytwentytwo .bp-navs li.selected a:hover{color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current{border-color:var(--wp--preset--color--primary) var(--wp--preset--color--primary) var(--wp--preset--color--background);border-style:solid;border-top-right-radius:4px;border-top-left-radius:4px}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current a{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav li .count{margin-right:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentytwo #group-invites-container #send-invites-editor ul{padding-right:0}#buddypress.twentytwentytwo.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .subnav-filters>ul{padding-right:0}#buddypress.twentytwentytwo .bp-pagination{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em;max-width:80%}@media screen and (min-width:46.8em){#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-left:5%}}#buddypress.twentytwentytwo .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.twentytwentytwo .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-left:2%}}#buddypress.twentytwentytwo .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentytwo .bp-list li .item-meta,#buddypress.twentytwentytwo .bp-list li .meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-list.bp-list{background:inherit;border-right:none;border-left:none;border-top:none;border-bottom:1px dotted var(--wp--preset--color--primary);padding:0}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item{background:inherit;border:none;border-radius:0;border-top:1px dotted var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item:not(:first-child){margin-top:1.5em}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-update-form{border:none;box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea{border:solid 1px var(--wp--preset--color--foreground);border-radius:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #activity-autocomplete,#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{border:solid 1px var(--wp--preset--color--foreground);padding:.5em;font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{width:-moz-fit-content;width:fit-content}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li #activity-autocomplete{width:98%}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:.5em;border-radius:0;border-style:dotted;border-width:0;border-right-width:1px;border-left-width:1px}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .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.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}#buddypress.twentytwentytwo .activity-update-form #whats-new-submit{margin-bottom:calc(32px + var(--wp--style--block-gap))}#buddypress.twentytwentytwo #activity-rss-feed{line-height:40px}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a:focus{color:var(--wp--preset--color--foreground);background:0 0;outline-offset:-0.25ch;outline:2px dashed currentColor}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover a{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header{color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a{font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-inner,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action{background:inherit;margin-right:calc(128px + 5%)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:before{content:""}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button{background-color:var(--wp--preset--color--tertiary);padding:.7em .7em .5em}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button .bp-screen-reader-text{border:0;clip:inherit;height:auto;margin:auto;overflow:auto;position:inherit;width:auto;font-size:var(--wp--preset--font-size--small);font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--tertiary);padding:.1em .3em;border-radius:50%;font-size:var(--wp--preset--font-size--small);vertical-align:text-bottom}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:not(.delete-activity){color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--tertiary);color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity{color:var(--wp--preset--color--vivid-red);border:solid 1px var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity span.bp-screen-reader-text{color:var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover span.bp-screen-reader-text{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list li.mini .activity-meta.action{margin-right:calc(50px + 2%)}body.activity-permalink #buddypress.twentytwentytwo .activity-list{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item .activity-avatar img.avatar{background:var(--wp--preset--color--white)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar{width:auto;margin-left:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-primary-action{background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-secondary-action{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-content{border-right:1px solid var(--wp--preset--color--foreground);margin:15px 5% 0 0}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea{width:98%;border-radius:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button],#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{margin-right:calc(50px - .5em);background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button]{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .groups-list li .group-desc{color:var(--wp--preset--color--foreground);border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #groups-dir-list .current-group-type{text-align:center}body:not(.logged-in) #buddypress.twentytwentytwo .members-list .user-update{width:inherit}#buddypress.twentytwentytwo .members-list li .user-update{border:1px dotted var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);margin:0 auto 15px}#buddypress.twentytwentytwo #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}body.bp-user #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.bp-user #buddypress.twentytwentytwo .item-body h2.screen-heading,body.single-item #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.single-item #buddypress.twentytwentytwo .item-body h2.screen-heading{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.twentytwentytwo .single-headers #item-header-cover-image h2{font-weight:900}#buddypress.twentytwentytwo .single-headers .bp-group-type-list,#buddypress.twentytwentytwo .single-headers .bp-member-type-list,#buddypress.twentytwentytwo .single-headers .group-status,#buddypress.twentytwentytwo .single-headers .item-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentytwo .groups-header .desc-wrap{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentytwo .item-body h2.creation-step-name,#buddypress.twentytwentytwo .item-body h2.screen-heading{font-size:var(--wp--custom--typography--font-size--huge)}#buddypress.twentytwentytwo .item-body h3.creation-step-name,#buddypress.twentytwentytwo .item-body h3.screen-heading{font-size:var(--wp--preset--font-size--large)}#buddypress.twentytwentytwo .item-body h4.creation-step-name,#buddypress.twentytwentytwo .item-body h4.screen-heading{font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--wp--preset--color--primary);border-bottom:1px solid var(--wp--preset--color--background)}#buddypress.twentytwentytwo .item-body #drag-drop-area{border:4px dashed var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area .drag-drop-info{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentytwo .item-body .drag-over #drag-drop-area{border:4px dashed var(--wp--preset--color--vivid-cyan-blue)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{background-color:var(--wp--preset--color--tertiary);border:none;border-right-width:4px;border-right-style:solid;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{border-right-color:var(--wp--preset--color--luminous-vivid-orange)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success{border-right-color:var(--wp--preset--color--vivid-green-cyan)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .error,#buddypress.twentytwentytwo .item-body .bp-avatar-status .error,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .error{border-right-color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);border:solid 1px var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete:hover{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--vivid-red)}.group-settings #buddypress.twentytwentytwo .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentytwo #group-manage-members-ui .bp-pagination{padding:.4em .5em .4em 0}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentytwo #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.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 10px 6px 25px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #delete-group-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-group-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul{border-top:none}#buddypress.twentytwentytwo .bp-invites-content ul li{border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary);width:32px;height:32px}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button .icons:before{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentytwo .profile table.profile-fields tr td,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td.label,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td.label{border-left-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentytwo .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentytwo .profile.edit .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .button-tabs li{border:solid 2px var(--wp--preset--color--primary);overflow:hidden}#buddypress.twentytwentytwo .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current a{color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentytwo .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentytwo .profile.edit legend{padding:0}#buddypress.twentytwentytwo .field-visibility-settings,#buddypress.twentytwentytwo .field-visibility-settings-header{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-list.invites h2.list-title{float:none}#buddypress.twentytwentytwo #group-list.invites .accept{margin-right:0}#buddypress.twentytwentytwo #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentytwo #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentytwo #message-threads{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.selected{border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.unread{border-right:8px solid var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo #message-threads li .thread-cb{padding-right:15px}#buddypress.twentytwentytwo #message-threads li.unread .thread-cb{padding-right:7px}#buddypress.twentytwentytwo #message-threads li .thread-from img.avatar,#buddypress.twentytwentytwo #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentytwo #message-threads li .thread-from .num-recipients,#buddypress.twentytwentytwo #message-threads li .thread-to .num-recipients{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-content .excerpt{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-date time{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected .thread-subject .subject{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li:not(.selected){color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentytwo .bp-messages-content #thread-preview h2:first-child{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list{border-top:none}#buddypress.twentytwentytwo .bp-messages-content #thread-preview{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentytwo .bp-messages-content #thread-preview dd{padding-right:0}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header dd{padding-right:0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:before{width:32px;height:32px;color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before{border-radius:50%;color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-unstar:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li{padding-right:0}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:.5em .2em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content *{padding-right:.8em;padding-left:.8em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--wp--preset--color--primary);border-top:none}#buddypress.twentytwentytwo .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentytwo .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentytwo .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-right-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 10px 0 0;padding:3px 5px;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentytwo.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentytwo.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .bp-tables-user.profile-settings{border:solid 1px currentColor;margin-bottom:1em}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr{border:none}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr th{text-align:right;border-bottom:dotted 1px currentColor}#buddypress.twentytwentytwo #delete-account-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-account-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .invitations-options-nav,#buddypress.twentytwentytwo .notifications-options-nav{margin-top:1em}#buddypress.twentytwentytwo .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentytwo .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentytwo .bp-tables-user.notifications th{text-align:right}#buddypress.twentytwentytwo .bp-tables-user.notifications td.notification-actions a.delete{color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentytwo fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentytwo .select-wrap{border:1px solid var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentytwo .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentytwo .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--wp--preset--color--foreground);vertical-align:-10%}#buddypress.twentytwentytwo .select-wrap:focus .select-arrow:before,#buddypress.twentytwentytwo .select-wrap:hover .select-arrow:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo input[type=checkbox],#buddypress.twentytwentytwo input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentytwo .groups-members-search input[type=text],#buddypress.twentytwentytwo input[type=color],#buddypress.twentytwentytwo input[type=date],#buddypress.twentytwentytwo input[type=datetime-local],#buddypress.twentytwentytwo input[type=datetime],#buddypress.twentytwentytwo input[type=email],#buddypress.twentytwentytwo input[type=month],#buddypress.twentytwentytwo input[type=number],#buddypress.twentytwentytwo input[type=password],#buddypress.twentytwentytwo input[type=range],#buddypress.twentytwentytwo input[type=search],#buddypress.twentytwentytwo input[type=tel],#buddypress.twentytwentytwo input[type=text],#buddypress.twentytwentytwo input[type=time],#buddypress.twentytwentytwo input[type=url],#buddypress.twentytwentytwo input[type=week],#buddypress.twentytwentytwo textarea{color:var(--wp--preset--color--foreground);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentytwo .bp-dir-search-form button,#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form#group_invites_search_form button{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-right-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-dir-search-form button:hover,#buddypress.twentytwentytwo form#group-members-search button:hover,#buddypress.twentytwentytwo form#group_invites_search_form button:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .standard-form p.description{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .standard-form .datebox-selects label,#buddypress.twentytwentytwo .standard-form .datebox-selects span.label{display:inline}body.bp-user.settings.general #buddypress.twentytwentytwo .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentytwo [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentytwo form#group-members-search,#buddypress.twentytwentytwo form.bp-dir-search-form,#buddypress.twentytwentytwo form.bp-messages-search-form,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form{border:1px solid var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form.bp-dir-search-form button,#buddypress.twentytwentytwo form.bp-messages-search-form button,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form button{padding:5px .8em 6px}#buddypress.twentytwentytwo.extended-default-reg .register-page .default-profile{min-width:45%}#buddypress.twentytwentytwo .bp-tables-user tbody tr,#buddypress.twentytwentytwo .bp-tables-user tbody tr.alt,#buddypress.twentytwentytwo table.forum tbody tr,#buddypress.twentytwentytwo table.forum tbody tr.alt,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentytwo .activity-read-more a,#buddypress.twentytwentytwo .comment-reply-link,#buddypress.twentytwentytwo .generic-button a,#buddypress.twentytwentytwo a.bp-title-button,#buddypress.twentytwentytwo a.button,#buddypress.twentytwentytwo button,#buddypress.twentytwentytwo input[type=button],#buddypress.twentytwentytwo input[type=submit],#buddypress.twentytwentytwo ul.button-nav:not(.button-tabs) li a{background:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:0;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #bp-messages-reset,#buddypress.twentytwentytwo .activity-read-more a:focus,#buddypress.twentytwentytwo .activity-read-more a:hover,#buddypress.twentytwentytwo .button-nav li a:focus,#buddypress.twentytwentytwo .button-nav li a:hover,#buddypress.twentytwentytwo .button-nav li.current a,#buddypress.twentytwentytwo .comment-reply-link:focus,#buddypress.twentytwentytwo .comment-reply-link:hover,#buddypress.twentytwentytwo .generic-button a:focus,#buddypress.twentytwentytwo .generic-button a:hover,#buddypress.twentytwentytwo a.button:focus,#buddypress.twentytwentytwo a.button:hover,#buddypress.twentytwentytwo button:focus,#buddypress.twentytwentytwo button:hover,#buddypress.twentytwentytwo input[type=button]:focus,#buddypress.twentytwentytwo input[type=button]:hover,#buddypress.twentytwentytwo input[type=reset],#buddypress.twentytwentytwo input[type=submit]:focus,#buddypress.twentytwentytwo input[type=submit]:hover{background:0 0;border-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);outline:0;text-decoration:none}#buddypress.twentytwentytwo #bp-messages-reset:focus,#buddypress.twentytwentytwo #bp-messages-reset:hover,#buddypress.twentytwentytwo input[type=reset]:focus,#buddypress.twentytwentytwo input[type=reset]:hover{outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo a.disabled,#buddypress.twentytwentytwo a.disabled:hover button.pending,#buddypress.twentytwentytwo button.disabled,#buddypress.twentytwentytwo button.disabled:hover,#buddypress.twentytwentytwo button.pending:hover,#buddypress.twentytwentytwo div.pending a,#buddypress.twentytwentytwo div.pending a:hover,#buddypress.twentytwentytwo input[type=button].disabled,#buddypress.twentytwentytwo input[type=button].pending,#buddypress.twentytwentytwo input[type=button]:hover.disabled,#buddypress.twentytwentytwo input[type=button]:hover.pending,#buddypress.twentytwentytwo input[type=reset].disabled,#buddypress.twentytwentytwo input[type=reset].pending,#buddypress.twentytwentytwo input[type=reset]:hover.disabled,#buddypress.twentytwentytwo input[type=reset]:hover.pending,#buddypress.twentytwentytwo input[type=submit].pending,#buddypress.twentytwentytwo input[type=submit]:disabled,#buddypress.twentytwentytwo input[type=submit]:hover.disabled,#buddypress.twentytwentytwo input[type=submit]:hover.pending,#buddypress.twentytwentytwo input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentytwo .blog-button:after,#buddypress.twentytwentytwo .blog-button:before{display:none}#buddypress.twentytwentytwo .create-button a:focus,#buddypress.twentytwentytwo .create-button a:hover{text-decoration:none}#buddypress.twentytwentytwo.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary);border-radius:0;border:1px solid var(--wp--preset--color--primary);background-clip:border-box}#buddypress.twentytwentytwo .warn{color:var(--wp--preset--color--primary);font-weight:600}#buddypress.twentytwentytwo .bp-feedback{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);box-shadow:none}#buddypress.twentytwentytwo .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback .bp-icon{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback a{border-bottom:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;left:15px}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentytwo #group-create-body .bp-cover-image-status p.warning{background-color:var(--wp--preset--color--tertiary);border:none;border-right-width:4px;border-right-style:solid;border-right-color:var(--wp--preset--color--luminous-vivid-orange);color:var(--wp--preset--color--primary);box-shadow:none}body.buddypress .site #buddypress.twentytwentytwo .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--wp--preset--color--primary);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--wp--preset--color--background);border-right:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--wp--preset--color--primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentytwo .grid.bp-list{border-top:none}#buddypress.twentytwentytwo .grid>li{border:none}#buddypress.twentytwentytwo .grid>li .list-wrap{border:1px solid var(--wp--preset--color--primary);background:0 0}#buddypress.twentytwentytwo .grid>li .item-avatar,#buddypress.twentytwentytwo .grid>li:not(.mini) .item-avatar{margin-left:auto}
|
1 |
+
@media screen and (max-width:46.8em){#buddypress.twentytwentytwo:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentytwo .bp-navs li .count{background-color:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:50%;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:hover{background:var(--wp--preset--color--background);color:var(--wp--preset--color--primary);outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo .bp-navs li.current a,#buddypress.twentytwentytwo .bp-navs li.current a:focus,#buddypress.twentytwentytwo .bp-navs li.current a:hover,#buddypress.twentytwentytwo .bp-navs li.selected a,#buddypress.twentytwentytwo .bp-navs li.selected a:focus,#buddypress.twentytwentytwo .bp-navs li.selected a:hover{color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current{border-color:var(--wp--preset--color--primary) var(--wp--preset--color--primary) var(--wp--preset--color--background);border-style:solid;border-top-right-radius:4px;border-top-left-radius:4px}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current a{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav li .count{margin-right:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentytwo #group-invites-container #send-invites-editor ul{padding-right:0}#buddypress.twentytwentytwo.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .subnav-filters>ul{padding-right:0}#buddypress.twentytwentytwo .bp-pagination{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em;max-width:80%}@media screen and (min-width:46.8em){#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-left:5%}}#buddypress.twentytwentytwo .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.twentytwentytwo .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-left:2%}}#buddypress.twentytwentytwo .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentytwo .bp-list li .item-meta,#buddypress.twentytwentytwo .bp-list li .meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-list.bp-list{background:inherit;border-right:none;border-left:none;border-top:none;border-bottom:1px dotted var(--wp--preset--color--primary);padding:0}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item{background:inherit;border:none;border-radius:0;border-top:1px dotted var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item:not(:first-child){margin-top:1.5em}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-update-form{border:none;box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea{border:solid 1px var(--wp--preset--color--foreground);border-radius:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #activity-autocomplete,#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{border:solid 1px var(--wp--preset--color--foreground);padding:.5em;font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{width:-moz-fit-content;width:fit-content}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li #activity-autocomplete{width:98%}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:.5em;border-radius:0;border-style:dotted;border-width:0;border-right-width:1px;border-left-width:1px}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .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.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}#buddypress.twentytwentytwo .activity-update-form #whats-new-submit{margin-bottom:calc(32px + var(--wp--style--block-gap))}#buddypress.twentytwentytwo #activity-rss-feed{line-height:40px}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a:focus{color:var(--wp--preset--color--foreground);background:0 0;outline-offset:-0.25ch;outline:2px dashed currentColor}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover a{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header{color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a{font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-inner,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action{background:inherit;margin-right:calc(128px + 5%)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:before{content:""}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button{background-color:var(--wp--preset--color--tertiary);padding:.7em .7em .5em}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button .bp-screen-reader-text{border:0;clip:inherit;height:auto;margin:auto;overflow:auto;position:inherit;width:auto;font-size:var(--wp--preset--font-size--small);font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--tertiary);padding:.1em .3em;border-radius:50%;font-size:var(--wp--preset--font-size--small);vertical-align:text-bottom}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:not(.delete-activity){color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--tertiary);color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity{color:var(--wp--preset--color--vivid-red);border:solid 1px var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity span.bp-screen-reader-text{color:var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover span.bp-screen-reader-text{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list li.mini .activity-meta.action{margin-right:calc(50px + 2%)}body.activity-permalink #buddypress.twentytwentytwo .activity-list{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item .activity-avatar img.avatar{background:var(--wp--preset--color--white)}#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button{text-decoration:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button .icon{display:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar{width:auto;margin-left:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-primary-action{background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-secondary-action{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-content{border-right:1px solid var(--wp--preset--color--foreground);margin:15px 5% 0 0}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea{width:98%;border-radius:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button],#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{margin-right:calc(50px - .5em);background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button]{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .groups-list li .group-desc{color:var(--wp--preset--color--foreground);border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #groups-dir-list .current-group-type{text-align:center}body:not(.logged-in) #buddypress.twentytwentytwo .members-list .user-update{width:inherit}#buddypress.twentytwentytwo .members-list li .user-update{border:1px dotted var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);margin:0 auto 15px}#buddypress.twentytwentytwo #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}body.bp-user #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.bp-user #buddypress.twentytwentytwo .item-body h2.screen-heading,body.single-item #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.single-item #buddypress.twentytwentytwo .item-body h2.screen-heading{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.twentytwentytwo .single-headers #item-header-cover-image h2{font-weight:900}#buddypress.twentytwentytwo .single-headers .bp-group-type-list,#buddypress.twentytwentytwo .single-headers .bp-member-type-list,#buddypress.twentytwentytwo .single-headers .group-status,#buddypress.twentytwentytwo .single-headers .item-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentytwo .groups-header .desc-wrap{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentytwo .item-body h2.creation-step-name,#buddypress.twentytwentytwo .item-body h2.screen-heading{font-size:var(--wp--custom--typography--font-size--huge)}#buddypress.twentytwentytwo .item-body h3.creation-step-name,#buddypress.twentytwentytwo .item-body h3.screen-heading{font-size:var(--wp--preset--font-size--large)}#buddypress.twentytwentytwo .item-body h4.creation-step-name,#buddypress.twentytwentytwo .item-body h4.screen-heading{font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--wp--preset--color--primary);border-bottom:1px solid var(--wp--preset--color--background)}#buddypress.twentytwentytwo .item-body #drag-drop-area{border:4px dashed var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area .drag-drop-info{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentytwo .item-body .drag-over #drag-drop-area{border:4px dashed var(--wp--preset--color--vivid-cyan-blue)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{background-color:var(--wp--preset--color--tertiary);border:none;border-right-width:4px;border-right-style:solid;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{border-right-color:var(--wp--preset--color--luminous-vivid-orange)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success{border-right-color:var(--wp--preset--color--vivid-green-cyan)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .error,#buddypress.twentytwentytwo .item-body .bp-avatar-status .error,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .error{border-right-color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);border:solid 1px var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete:hover{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--vivid-red)}.group-settings #buddypress.twentytwentytwo .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentytwo #group-manage-members-ui .bp-pagination{padding:.4em .5em .4em 0}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentytwo #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.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 10px 6px 25px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #delete-group-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-group-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul{border-top:none}#buddypress.twentytwentytwo .bp-invites-content ul li{border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary);width:32px;height:32px}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button .icons:before{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentytwo .profile table.profile-fields tr td,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td.label,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td.label{border-left-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentytwo .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentytwo .profile.edit .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .button-tabs li{border:solid 2px var(--wp--preset--color--primary);overflow:hidden}#buddypress.twentytwentytwo .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current a{color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentytwo .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentytwo .profile.edit legend{padding:0}#buddypress.twentytwentytwo .field-visibility-settings,#buddypress.twentytwentytwo .field-visibility-settings-header{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-list.invites h2.list-title{float:none}#buddypress.twentytwentytwo #group-list.invites .accept{margin-right:0}#buddypress.twentytwentytwo #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentytwo #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentytwo #message-threads{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.selected{border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.unread{border-right:8px solid var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo #message-threads li .thread-cb{padding-right:15px}#buddypress.twentytwentytwo #message-threads li.unread .thread-cb{padding-right:7px}#buddypress.twentytwentytwo #message-threads li .thread-from img.avatar,#buddypress.twentytwentytwo #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentytwo #message-threads li .thread-from .num-recipients,#buddypress.twentytwentytwo #message-threads li .thread-to .num-recipients{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-content .excerpt{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-date time{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected .thread-subject .subject{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li:not(.selected){color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentytwo .bp-messages-content #thread-preview h2:first-child{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list{border-top:none}#buddypress.twentytwentytwo .bp-messages-content #thread-preview{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentytwo .bp-messages-content #thread-preview dd{padding-right:0}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header dd{padding-right:0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:before{width:32px;height:32px;color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before{border-radius:50%;color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-unstar:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li{padding-right:0}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:.5em .2em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content *{padding-right:.8em;padding-left:.8em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--wp--preset--color--primary);border-top:none}#buddypress.twentytwentytwo .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentytwo .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentytwo .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-right-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 10px 0 0;padding:3px 5px;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentytwo.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentytwo.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .bp-tables-user.profile-settings{border:solid 1px currentColor;margin-bottom:1em}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr{border:none}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr th{text-align:right;border-bottom:dotted 1px currentColor}#buddypress.twentytwentytwo #delete-account-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-account-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .invitations-options-nav,#buddypress.twentytwentytwo .notifications-options-nav{margin-top:1em}#buddypress.twentytwentytwo .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentytwo .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentytwo .bp-tables-user.notifications th{text-align:right}#buddypress.twentytwentytwo .bp-tables-user.notifications td.notification-actions a.delete{color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentytwo fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentytwo .select-wrap{border:1px solid var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentytwo .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentytwo .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--wp--preset--color--foreground);vertical-align:-10%}#buddypress.twentytwentytwo .select-wrap:focus .select-arrow:before,#buddypress.twentytwentytwo .select-wrap:hover .select-arrow:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo input[type=checkbox],#buddypress.twentytwentytwo input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentytwo .groups-members-search input[type=text],#buddypress.twentytwentytwo input[type=color],#buddypress.twentytwentytwo input[type=date],#buddypress.twentytwentytwo input[type=datetime-local],#buddypress.twentytwentytwo input[type=datetime],#buddypress.twentytwentytwo input[type=email],#buddypress.twentytwentytwo input[type=month],#buddypress.twentytwentytwo input[type=number],#buddypress.twentytwentytwo input[type=password],#buddypress.twentytwentytwo input[type=range],#buddypress.twentytwentytwo input[type=search],#buddypress.twentytwentytwo input[type=tel],#buddypress.twentytwentytwo input[type=text],#buddypress.twentytwentytwo input[type=time],#buddypress.twentytwentytwo input[type=url],#buddypress.twentytwentytwo input[type=week],#buddypress.twentytwentytwo textarea{color:var(--wp--preset--color--foreground);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentytwo .bp-dir-search-form button,#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form#group_invites_search_form button{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-right-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-dir-search-form button:hover,#buddypress.twentytwentytwo form#group-members-search button:hover,#buddypress.twentytwentytwo form#group_invites_search_form button:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .standard-form p.description{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .standard-form .datebox-selects label,#buddypress.twentytwentytwo .standard-form .datebox-selects span.label{display:inline}body.bp-user.settings.general #buddypress.twentytwentytwo .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentytwo [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentytwo form#group-members-search,#buddypress.twentytwentytwo form.bp-dir-search-form,#buddypress.twentytwentytwo form.bp-messages-search-form,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form{border:1px solid var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form.bp-dir-search-form button,#buddypress.twentytwentytwo form.bp-messages-search-form button,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form button{padding:5px .8em 6px}#buddypress.twentytwentytwo.extended-default-reg .register-page .default-profile{min-width:45%}#buddypress.twentytwentytwo .bp-tables-user tbody tr,#buddypress.twentytwentytwo .bp-tables-user tbody tr.alt,#buddypress.twentytwentytwo table.forum tbody tr,#buddypress.twentytwentytwo table.forum tbody tr.alt,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentytwo .activity-read-more a,#buddypress.twentytwentytwo .comment-reply-link,#buddypress.twentytwentytwo .generic-button a,#buddypress.twentytwentytwo a.bp-title-button,#buddypress.twentytwentytwo a.button,#buddypress.twentytwentytwo button,#buddypress.twentytwentytwo input[type=button],#buddypress.twentytwentytwo input[type=submit],#buddypress.twentytwentytwo ul.button-nav:not(.button-tabs) li a{background:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:0;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #bp-messages-reset,#buddypress.twentytwentytwo .activity-read-more a:focus,#buddypress.twentytwentytwo .activity-read-more a:hover,#buddypress.twentytwentytwo .button-nav li a:focus,#buddypress.twentytwentytwo .button-nav li a:hover,#buddypress.twentytwentytwo .button-nav li.current a,#buddypress.twentytwentytwo .comment-reply-link:focus,#buddypress.twentytwentytwo .comment-reply-link:hover,#buddypress.twentytwentytwo .generic-button a:focus,#buddypress.twentytwentytwo .generic-button a:hover,#buddypress.twentytwentytwo a.button:focus,#buddypress.twentytwentytwo a.button:hover,#buddypress.twentytwentytwo button:focus,#buddypress.twentytwentytwo button:hover,#buddypress.twentytwentytwo input[type=button]:focus,#buddypress.twentytwentytwo input[type=button]:hover,#buddypress.twentytwentytwo input[type=reset],#buddypress.twentytwentytwo input[type=submit]:focus,#buddypress.twentytwentytwo input[type=submit]:hover{background:0 0;border-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);outline:0;text-decoration:none}#buddypress.twentytwentytwo #bp-messages-reset:focus,#buddypress.twentytwentytwo #bp-messages-reset:hover,#buddypress.twentytwentytwo input[type=reset]:focus,#buddypress.twentytwentytwo input[type=reset]:hover{outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo a.disabled,#buddypress.twentytwentytwo a.disabled:hover button.pending,#buddypress.twentytwentytwo button.disabled,#buddypress.twentytwentytwo button.disabled:hover,#buddypress.twentytwentytwo button.pending:hover,#buddypress.twentytwentytwo div.pending a,#buddypress.twentytwentytwo div.pending a:hover,#buddypress.twentytwentytwo input[type=button].disabled,#buddypress.twentytwentytwo input[type=button].pending,#buddypress.twentytwentytwo input[type=button]:hover.disabled,#buddypress.twentytwentytwo input[type=button]:hover.pending,#buddypress.twentytwentytwo input[type=reset].disabled,#buddypress.twentytwentytwo input[type=reset].pending,#buddypress.twentytwentytwo input[type=reset]:hover.disabled,#buddypress.twentytwentytwo input[type=reset]:hover.pending,#buddypress.twentytwentytwo input[type=submit].pending,#buddypress.twentytwentytwo input[type=submit]:disabled,#buddypress.twentytwentytwo input[type=submit]:hover.disabled,#buddypress.twentytwentytwo input[type=submit]:hover.pending,#buddypress.twentytwentytwo input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentytwo .blog-button:after,#buddypress.twentytwentytwo .blog-button:before{display:none}#buddypress.twentytwentytwo .create-button a:focus,#buddypress.twentytwentytwo .create-button a:hover{text-decoration:none}#buddypress.twentytwentytwo.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary);border-radius:0;border:1px solid var(--wp--preset--color--primary);background-clip:border-box}#buddypress.twentytwentytwo .warn{color:var(--wp--preset--color--primary);font-weight:600}#buddypress.twentytwentytwo .bp-feedback{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);box-shadow:none}#buddypress.twentytwentytwo .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback .bp-icon{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback a{border-bottom:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;left:0}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;left:15px}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentytwo #group-create-body .bp-cover-image-status p.warning{background-color:var(--wp--preset--color--tertiary);border:none;border-right-width:4px;border-right-style:solid;border-right-color:var(--wp--preset--color--luminous-vivid-orange);color:var(--wp--preset--color--primary);box-shadow:none}body.buddypress .site #buddypress.twentytwentytwo .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--wp--preset--color--primary);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--wp--preset--color--background);border-right:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--wp--preset--color--primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentytwo .grid.bp-list{border-top:none}#buddypress.twentytwentytwo .grid>li{border:none}#buddypress.twentytwentytwo .grid>li .list-wrap{border:1px solid var(--wp--preset--color--primary);background:0 0}#buddypress.twentytwentytwo .grid>li .item-avatar,#buddypress.twentytwentytwo .grid>li:not(.mini) .item-avatar{margin-left:auto}
|
bp-templates/bp-nouveau/css/twentytwentytwo.css
CHANGED
@@ -479,6 +479,14 @@ body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-ite
|
|
479 |
* @section 3.1.3 - Activity Comments
|
480 |
*-----------------------------------------------------
|
481 |
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
482 |
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar {
|
483 |
width: auto;
|
484 |
margin-right: 0;
|
479 |
* @section 3.1.3 - Activity Comments
|
480 |
*-----------------------------------------------------
|
481 |
*/
|
482 |
+
#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button {
|
483 |
+
text-decoration: none;
|
484 |
+
}
|
485 |
+
|
486 |
+
#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button .icon {
|
487 |
+
display: none;
|
488 |
+
}
|
489 |
+
|
490 |
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar {
|
491 |
width: auto;
|
492 |
margin-right: 0;
|
bp-templates/bp-nouveau/css/twentytwentytwo.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@media screen and (max-width:46.8em){#buddypress.twentytwentytwo:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentytwo .bp-navs li .count{background-color:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:50%;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:hover{background:var(--wp--preset--color--background);color:var(--wp--preset--color--primary);outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo .bp-navs li.current a,#buddypress.twentytwentytwo .bp-navs li.current a:focus,#buddypress.twentytwentytwo .bp-navs li.current a:hover,#buddypress.twentytwentytwo .bp-navs li.selected a,#buddypress.twentytwentytwo .bp-navs li.selected a:focus,#buddypress.twentytwentytwo .bp-navs li.selected a:hover{color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current{border-color:var(--wp--preset--color--primary) var(--wp--preset--color--primary) var(--wp--preset--color--background);border-style:solid;border-top-left-radius:4px;border-top-right-radius:4px}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current a{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav li .count{margin-left:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentytwo #group-invites-container #send-invites-editor ul{padding-left:0}#buddypress.twentytwentytwo.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .subnav-filters>ul{padding-left:0}#buddypress.twentytwentytwo .bp-pagination{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em;max-width:80%}@media screen and (min-width:46.8em){#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-right:5%}}#buddypress.twentytwentytwo .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.twentytwentytwo .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-right:2%}}#buddypress.twentytwentytwo .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentytwo .bp-list li .item-meta,#buddypress.twentytwentytwo .bp-list li .meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-list.bp-list{background:inherit;border-left:none;border-right:none;border-top:none;border-bottom:1px dotted var(--wp--preset--color--primary);padding:0}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item{background:inherit;border:none;border-radius:0;border-top:1px dotted var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item:not(:first-child){margin-top:1.5em}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-update-form{border:none;box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea{border:solid 1px var(--wp--preset--color--foreground);border-radius:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #activity-autocomplete,#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{border:solid 1px var(--wp--preset--color--foreground);padding:.5em;font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{width:-moz-fit-content;width:fit-content}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li #activity-autocomplete{width:98%}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:.5em;border-radius:0;border-style:dotted;border-width:0;border-left-width:1px;border-right-width:1px}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .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.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}#buddypress.twentytwentytwo .activity-update-form #whats-new-submit{margin-bottom:calc(32px + var(--wp--style--block-gap))}#buddypress.twentytwentytwo #activity-rss-feed{line-height:40px}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a:focus{color:var(--wp--preset--color--foreground);background:0 0;outline-offset:-0.25ch;outline:2px dashed currentColor}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover a{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header{color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a{font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-inner,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action{background:inherit;margin-left:calc(128px + 5%)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:before{content:""}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button{background-color:var(--wp--preset--color--tertiary);padding:.7em .7em .5em}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button .bp-screen-reader-text{border:0;clip:inherit;height:auto;margin:auto;overflow:auto;position:inherit;width:auto;font-size:var(--wp--preset--font-size--small);font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--tertiary);padding:.1em .3em;border-radius:50%;font-size:var(--wp--preset--font-size--small);vertical-align:text-bottom}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:not(.delete-activity){color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--tertiary);color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity{color:var(--wp--preset--color--vivid-red);border:solid 1px var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity span.bp-screen-reader-text{color:var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover span.bp-screen-reader-text{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list li.mini .activity-meta.action{margin-left:calc(50px + 2%)}body.activity-permalink #buddypress.twentytwentytwo .activity-list{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item .activity-avatar img.avatar{background:var(--wp--preset--color--white)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar{width:auto;margin-right:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-primary-action{background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-secondary-action{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-content{border-left:1px solid var(--wp--preset--color--foreground);margin:15px 0 0 5%}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea{width:98%;border-radius:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button],#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{margin-left:calc(50px - .5em);background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button]{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .groups-list li .group-desc{color:var(--wp--preset--color--foreground);border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #groups-dir-list .current-group-type{text-align:center}body:not(.logged-in) #buddypress.twentytwentytwo .members-list .user-update{width:inherit}#buddypress.twentytwentytwo .members-list li .user-update{border:1px dotted var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);margin:0 auto 15px}#buddypress.twentytwentytwo #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}body.bp-user #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.bp-user #buddypress.twentytwentytwo .item-body h2.screen-heading,body.single-item #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.single-item #buddypress.twentytwentytwo .item-body h2.screen-heading{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.twentytwentytwo .single-headers #item-header-cover-image h2{font-weight:900}#buddypress.twentytwentytwo .single-headers .bp-group-type-list,#buddypress.twentytwentytwo .single-headers .bp-member-type-list,#buddypress.twentytwentytwo .single-headers .group-status,#buddypress.twentytwentytwo .single-headers .item-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentytwo .groups-header .desc-wrap{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentytwo .item-body h2.creation-step-name,#buddypress.twentytwentytwo .item-body h2.screen-heading{font-size:var(--wp--custom--typography--font-size--huge)}#buddypress.twentytwentytwo .item-body h3.creation-step-name,#buddypress.twentytwentytwo .item-body h3.screen-heading{font-size:var(--wp--preset--font-size--large)}#buddypress.twentytwentytwo .item-body h4.creation-step-name,#buddypress.twentytwentytwo .item-body h4.screen-heading{font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--wp--preset--color--primary);border-bottom:1px solid var(--wp--preset--color--background)}#buddypress.twentytwentytwo .item-body #drag-drop-area{border:4px dashed var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area .drag-drop-info{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentytwo .item-body .drag-over #drag-drop-area{border:4px dashed var(--wp--preset--color--vivid-cyan-blue)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{background-color:var(--wp--preset--color--tertiary);border:none;border-left-width:4px;border-left-style:solid;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{border-left-color:var(--wp--preset--color--luminous-vivid-orange)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success{border-left-color:var(--wp--preset--color--vivid-green-cyan)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .error,#buddypress.twentytwentytwo .item-body .bp-avatar-status .error,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .error{border-left-color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);border:solid 1px var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete:hover{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--vivid-red)}.group-settings #buddypress.twentytwentytwo .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentytwo #group-manage-members-ui .bp-pagination{padding:.4em 0 .4em .5em}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentytwo #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.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 25px 6px 10px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #delete-group-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-group-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul{border-top:none}#buddypress.twentytwentytwo .bp-invites-content ul li{border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary);width:32px;height:32px}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button .icons:before{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentytwo .profile table.profile-fields tr td,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td.label,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td.label{border-right-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentytwo .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentytwo .profile.edit .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .button-tabs li{border:solid 2px var(--wp--preset--color--primary);overflow:hidden}#buddypress.twentytwentytwo .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current a{color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentytwo .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentytwo .profile.edit legend{padding:0}#buddypress.twentytwentytwo .field-visibility-settings,#buddypress.twentytwentytwo .field-visibility-settings-header{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-list.invites h2.list-title{float:none}#buddypress.twentytwentytwo #group-list.invites .accept{margin-left:0}#buddypress.twentytwentytwo #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentytwo #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentytwo #message-threads{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.selected{border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.unread{border-left:8px solid var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo #message-threads li .thread-cb{padding-left:15px}#buddypress.twentytwentytwo #message-threads li.unread .thread-cb{padding-left:7px}#buddypress.twentytwentytwo #message-threads li .thread-from img.avatar,#buddypress.twentytwentytwo #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentytwo #message-threads li .thread-from .num-recipients,#buddypress.twentytwentytwo #message-threads li .thread-to .num-recipients{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-content .excerpt{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-date time{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected .thread-subject .subject{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li:not(.selected){color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentytwo .bp-messages-content #thread-preview h2:first-child{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list{border-top:none}#buddypress.twentytwentytwo .bp-messages-content #thread-preview{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentytwo .bp-messages-content #thread-preview dd{padding-left:0}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header dd{padding-left:0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:before{width:32px;height:32px;color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before{border-radius:50%;color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-unstar:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li{padding-left:0}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:.5em .2em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content *{padding-left:.8em;padding-right:.8em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--wp--preset--color--primary);border-top:none}#buddypress.twentytwentytwo .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentytwo .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentytwo .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-left-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 0 0 10px;padding:3px 5px;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentytwo.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentytwo.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .bp-tables-user.profile-settings{border:solid 1px currentColor;margin-bottom:1em}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr{border:none}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr th{text-align:left;border-bottom:dotted 1px currentColor}#buddypress.twentytwentytwo #delete-account-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-account-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .invitations-options-nav,#buddypress.twentytwentytwo .notifications-options-nav{margin-top:1em}#buddypress.twentytwentytwo .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentytwo .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentytwo .bp-tables-user.notifications th{text-align:left}#buddypress.twentytwentytwo .bp-tables-user.notifications td.notification-actions a.delete{color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentytwo fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentytwo .select-wrap{border:1px solid var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentytwo .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentytwo .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--wp--preset--color--foreground);vertical-align:-10%}#buddypress.twentytwentytwo .select-wrap:focus .select-arrow:before,#buddypress.twentytwentytwo .select-wrap:hover .select-arrow:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo input[type=checkbox],#buddypress.twentytwentytwo input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentytwo .groups-members-search input[type=text],#buddypress.twentytwentytwo input[type=color],#buddypress.twentytwentytwo input[type=date],#buddypress.twentytwentytwo input[type=datetime-local],#buddypress.twentytwentytwo input[type=datetime],#buddypress.twentytwentytwo input[type=email],#buddypress.twentytwentytwo input[type=month],#buddypress.twentytwentytwo input[type=number],#buddypress.twentytwentytwo input[type=password],#buddypress.twentytwentytwo input[type=range],#buddypress.twentytwentytwo input[type=search],#buddypress.twentytwentytwo input[type=tel],#buddypress.twentytwentytwo input[type=text],#buddypress.twentytwentytwo input[type=time],#buddypress.twentytwentytwo input[type=url],#buddypress.twentytwentytwo input[type=week],#buddypress.twentytwentytwo textarea{color:var(--wp--preset--color--foreground);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentytwo .bp-dir-search-form button,#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form#group_invites_search_form button{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-left-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-dir-search-form button:hover,#buddypress.twentytwentytwo form#group-members-search button:hover,#buddypress.twentytwentytwo form#group_invites_search_form button:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .standard-form p.description{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .standard-form .datebox-selects label,#buddypress.twentytwentytwo .standard-form .datebox-selects span.label{display:inline}body.bp-user.settings.general #buddypress.twentytwentytwo .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentytwo [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentytwo form#group-members-search,#buddypress.twentytwentytwo form.bp-dir-search-form,#buddypress.twentytwentytwo form.bp-messages-search-form,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form{border:1px solid var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form.bp-dir-search-form button,#buddypress.twentytwentytwo form.bp-messages-search-form button,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form button{padding:5px .8em 6px}#buddypress.twentytwentytwo.extended-default-reg .register-page .default-profile{min-width:45%}#buddypress.twentytwentytwo .bp-tables-user tbody tr,#buddypress.twentytwentytwo .bp-tables-user tbody tr.alt,#buddypress.twentytwentytwo table.forum tbody tr,#buddypress.twentytwentytwo table.forum tbody tr.alt,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentytwo .activity-read-more a,#buddypress.twentytwentytwo .comment-reply-link,#buddypress.twentytwentytwo .generic-button a,#buddypress.twentytwentytwo a.bp-title-button,#buddypress.twentytwentytwo a.button,#buddypress.twentytwentytwo button,#buddypress.twentytwentytwo input[type=button],#buddypress.twentytwentytwo input[type=submit],#buddypress.twentytwentytwo ul.button-nav:not(.button-tabs) li a{background:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:0;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #bp-messages-reset,#buddypress.twentytwentytwo .activity-read-more a:focus,#buddypress.twentytwentytwo .activity-read-more a:hover,#buddypress.twentytwentytwo .button-nav li a:focus,#buddypress.twentytwentytwo .button-nav li a:hover,#buddypress.twentytwentytwo .button-nav li.current a,#buddypress.twentytwentytwo .comment-reply-link:focus,#buddypress.twentytwentytwo .comment-reply-link:hover,#buddypress.twentytwentytwo .generic-button a:focus,#buddypress.twentytwentytwo .generic-button a:hover,#buddypress.twentytwentytwo a.button:focus,#buddypress.twentytwentytwo a.button:hover,#buddypress.twentytwentytwo button:focus,#buddypress.twentytwentytwo button:hover,#buddypress.twentytwentytwo input[type=button]:focus,#buddypress.twentytwentytwo input[type=button]:hover,#buddypress.twentytwentytwo input[type=reset],#buddypress.twentytwentytwo input[type=submit]:focus,#buddypress.twentytwentytwo input[type=submit]:hover{background:0 0;border-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);outline:0;text-decoration:none}#buddypress.twentytwentytwo #bp-messages-reset:focus,#buddypress.twentytwentytwo #bp-messages-reset:hover,#buddypress.twentytwentytwo input[type=reset]:focus,#buddypress.twentytwentytwo input[type=reset]:hover{outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo a.disabled,#buddypress.twentytwentytwo a.disabled:hover button.pending,#buddypress.twentytwentytwo button.disabled,#buddypress.twentytwentytwo button.disabled:hover,#buddypress.twentytwentytwo button.pending:hover,#buddypress.twentytwentytwo div.pending a,#buddypress.twentytwentytwo div.pending a:hover,#buddypress.twentytwentytwo input[type=button].disabled,#buddypress.twentytwentytwo input[type=button].pending,#buddypress.twentytwentytwo input[type=button]:hover.disabled,#buddypress.twentytwentytwo input[type=button]:hover.pending,#buddypress.twentytwentytwo input[type=reset].disabled,#buddypress.twentytwentytwo input[type=reset].pending,#buddypress.twentytwentytwo input[type=reset]:hover.disabled,#buddypress.twentytwentytwo input[type=reset]:hover.pending,#buddypress.twentytwentytwo input[type=submit].pending,#buddypress.twentytwentytwo input[type=submit]:disabled,#buddypress.twentytwentytwo input[type=submit]:hover.disabled,#buddypress.twentytwentytwo input[type=submit]:hover.pending,#buddypress.twentytwentytwo input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentytwo .blog-button:after,#buddypress.twentytwentytwo .blog-button:before{display:none}#buddypress.twentytwentytwo .create-button a:focus,#buddypress.twentytwentytwo .create-button a:hover{text-decoration:none}#buddypress.twentytwentytwo.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary);border-radius:0;border:1px solid var(--wp--preset--color--primary);background-clip:border-box}#buddypress.twentytwentytwo .warn{color:var(--wp--preset--color--primary);font-weight:600}#buddypress.twentytwentytwo .bp-feedback{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);box-shadow:none}#buddypress.twentytwentytwo .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback .bp-icon{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback a{border-bottom:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;right:15px}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentytwo #group-create-body .bp-cover-image-status p.warning{background-color:var(--wp--preset--color--tertiary);border:none;border-left-width:4px;border-left-style:solid;border-left-color:var(--wp--preset--color--luminous-vivid-orange);color:var(--wp--preset--color--primary);box-shadow:none}body.buddypress .site #buddypress.twentytwentytwo .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--wp--preset--color--primary);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--wp--preset--color--background);border-left:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--wp--preset--color--primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentytwo .grid.bp-list{border-top:none}#buddypress.twentytwentytwo .grid>li{border:none}#buddypress.twentytwentytwo .grid>li .list-wrap{border:1px solid var(--wp--preset--color--primary);background:0 0}#buddypress.twentytwentytwo .grid>li .item-avatar,#buddypress.twentytwentytwo .grid>li:not(.mini) .item-avatar{margin-right:auto}
|
1 |
+
@media screen and (max-width:46.8em){#buddypress.twentytwentytwo:not(.bp-single-vert-nav) .bp-navs li{background:0 0}}#buddypress.twentytwentytwo .bp-navs li .count{background-color:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:50%;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li a:hover a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.current a .count,#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.selected a .count{background-color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:focus,#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:hover{background:var(--wp--preset--color--background);color:var(--wp--preset--color--primary);outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo .bp-navs li.current a,#buddypress.twentytwentytwo .bp-navs li.current a:focus,#buddypress.twentytwentytwo .bp-navs li.current a:hover,#buddypress.twentytwentytwo .bp-navs li.selected a,#buddypress.twentytwentytwo .bp-navs li.selected a:focus,#buddypress.twentytwentytwo .bp-navs li.selected a:hover{color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current{border-color:var(--wp--preset--color--primary) var(--wp--preset--color--primary) var(--wp--preset--color--background);border-style:solid;border-top-left-radius:4px;border-top-right-radius:4px}#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current a,#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current a{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav{border-bottom:none}#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav li .count{margin-left:10px;border-radius:10%;vertical-align:10%}#buddypress.twentytwentytwo #group-invites-container #send-invites-editor ul{padding-left:0}#buddypress.twentytwentytwo.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links){border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .subnav-filters>ul{padding-left:0}#buddypress.twentytwentytwo .bp-pagination{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar img.avatar{display:block;margin:0 auto;margin-bottom:1em;max-width:80%}@media screen and (min-width:46.8em){#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar{max-width:128px;max-height:128px;margin:auto;margin-right:5%}}#buddypress.twentytwentytwo .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.twentytwentytwo .bp-list li.mini .item-avatar{width:5%;margin:auto;margin-right:2%}}#buddypress.twentytwentytwo .bp-list li.mini .activity-meta.action{clear:none}#buddypress.twentytwentytwo .bp-list li .item-meta,#buddypress.twentytwentytwo .bp-list li .meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-list.bp-list{background:inherit;border-left:none;border-right:none;border-top:none;border-bottom:1px dotted var(--wp--preset--color--primary);padding:0}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item{background:inherit;border:none;border-radius:0;border-top:1px dotted var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item:not(:first-child){margin-top:1.5em}#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since,#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since:hover{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .activity-update-form{border:none;box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea{border:solid 1px var(--wp--preset--color--foreground);border-radius:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #activity-autocomplete,#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{border:solid 1px var(--wp--preset--color--foreground);padding:.5em;font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select{width:-moz-fit-content;width:fit-content}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li{margin-bottom:0}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li #activity-autocomplete{width:98%}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object{padding:.5em;border-radius:0;border-style:dotted;border-width:0;border-left-width:1px;border-right-width:1px}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected){background:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .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.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover{background:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected{border:none;background-color:transparent}#buddypress.twentytwentytwo .activity-update-form #whats-new-submit{margin-bottom:calc(32px + var(--wp--style--block-gap))}#buddypress.twentytwentytwo #activity-rss-feed{line-height:40px}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a:focus{color:var(--wp--preset--color--foreground);background:0 0;outline-offset:-0.25ch;outline:2px dashed currentColor}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover a{color:var(--wp--preset--color--foreground);background:0 0}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header{color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a{font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a:hover,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a:hover{text-decoration:underline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-inner,body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content blockquote{background:inherit;border:1px dotted var(--wp--preset--color--primary)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action{background:inherit;margin-left:calc(128px + 5%)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .icons:before{height:auto;width:auto;display:inline}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:before{content:""}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button{background-color:var(--wp--preset--color--tertiary);padding:.7em .7em .5em}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button .bp-screen-reader-text{border:0;clip:inherit;height:auto;margin:auto;overflow:auto;position:inherit;width:auto;font-size:var(--wp--preset--font-size--small);font-weight:600}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--tertiary);padding:.1em .3em;border-radius:50%;font-size:var(--wp--preset--font-size--small);vertical-align:text-bottom}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:not(.delete-activity){color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover{background-color:var(--wp--preset--color--foreground);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span:not(.bp-screen-reader-text){background-color:var(--wp--preset--color--tertiary);color:var(--wp--preset--color--foreground)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity{color:var(--wp--preset--color--vivid-red);border:solid 1px var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity span.bp-screen-reader-text{color:var(--wp--preset--color--vivid-red)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover span.bp-screen-reader-text{color:var(--wp--preset--color--background)}body .wp-site-blocks #buddypress.twentytwentytwo .activity-list li.mini .activity-meta.action{margin-left:calc(50px + 2%)}body.activity-permalink #buddypress.twentytwentytwo .activity-list{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item{border:none}body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item .activity-avatar img.avatar{background:var(--wp--preset--color--white)}#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button{text-decoration:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .show-all button .icon{display:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar{width:auto;margin-right:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a{font-weight:600}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a:hover{text-decoration:underline}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-primary-action{background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-secondary-action{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-content{border-left:1px solid var(--wp--preset--color--foreground);margin:15px 0 0 5%}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea{width:98%;border-radius:0}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea:focus{box-shadow:none}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button],#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{color:var(--wp--preset--color--foreground);display:inline-block;font-size:var(--wp--preset--font-size--small)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=submit]{margin-left:calc(50px - .5em);background-color:var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type=button]{background-color:var(--wp--preset--color--tertiary)}#buddypress.twentytwentytwo .groups-list li .group-desc{color:var(--wp--preset--color--foreground);border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #groups-dir-list .current-group-type{text-align:center}body:not(.logged-in) #buddypress.twentytwentytwo .members-list .user-update{width:inherit}#buddypress.twentytwentytwo .members-list li .user-update{border:1px dotted var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);margin:0 auto 15px}#buddypress.twentytwentytwo #members-dir-list .current-member-type{text-align:center}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links){background:0 0;clear:both;overflow:hidden;border:none;border-bottom:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li a,#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li span{padding:.5em calc(.5em + 2px);display:block}body.bp-user #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.bp-user #buddypress.twentytwentytwo .item-body h2.screen-heading,body.single-item #buddypress.twentytwentytwo .item-body h2.bp-screen-title,body.single-item #buddypress.twentytwentytwo .item-body h2.screen-heading{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.twentytwentytwo .single-headers #item-header-cover-image h2{font-weight:900}#buddypress.twentytwentytwo .single-headers .bp-group-type-list,#buddypress.twentytwentytwo .single-headers .bp-member-type-list,#buddypress.twentytwentytwo .single-headers .group-status,#buddypress.twentytwentytwo .single-headers .item-meta{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .single-headers a:hover{text-decoration:underline}#buddypress.twentytwentytwo .groups-header .desc-wrap{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .groups-header .desc-wrap .group-description{background:0 0;box-shadow:none}#buddypress.twentytwentytwo .item-body h2.creation-step-name,#buddypress.twentytwentytwo .item-body h2.screen-heading{font-size:var(--wp--custom--typography--font-size--huge)}#buddypress.twentytwentytwo .item-body h3.creation-step-name,#buddypress.twentytwentytwo .item-body h3.screen-heading{font-size:var(--wp--preset--font-size--large)}#buddypress.twentytwentytwo .item-body h4.creation-step-name,#buddypress.twentytwentytwo .item-body h4.screen-heading{font-size:var(--wp--preset--font-size--medium)}#buddypress.twentytwentytwo .item-body .bp-avatar #avatar-crop-pane{margin-bottom:1em}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items{border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items li.current{border:1px solid var(--wp--preset--color--primary);border-bottom:1px solid var(--wp--preset--color--background)}#buddypress.twentytwentytwo .item-body #drag-drop-area{border:4px dashed var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area .drag-drop-info{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .item-body #drag-drop-area #bp-browse-button{margin:50px auto 0}#buddypress.twentytwentytwo .item-body .drag-over #drag-drop-area{border:4px dashed var(--wp--preset--color--vivid-cyan-blue)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{background-color:var(--wp--preset--color--tertiary);border:none;border-left-width:4px;border-left-style:solid;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning{border-left-color:var(--wp--preset--color--luminous-vivid-orange)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .success,#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success{border-left-color:var(--wp--preset--color--vivid-green-cyan)}#buddypress.twentytwentytwo .item-body .avatar-history-actions .error,#buddypress.twentytwentytwo .item-body .bp-avatar-status .error,#buddypress.twentytwentytwo .item-body .bp-cover-image-status .error{border-left-color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete{background-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);border:solid 1px var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .item-body .avatar-history-action.delete:hover{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--vivid-red)}.group-settings #buddypress.twentytwentytwo .group-settings-selections{margin-bottom:1em}#buddypress.twentytwentytwo #group-manage-members-ui .bp-pagination{padding:.4em 0 .4em .5em}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]{font-size:16px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type=search]:focus{outline-offset:-7px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]{border-width:1px;border-style:solid;background-clip:border-box}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type=submit]:hover{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit label,#buddypress.twentytwentytwo #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.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter{font-size:16px;padding:6px 25px 6px 10px}#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select:focus,#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter:focus{outline-offset:2px;outline:2px dotted var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #delete-group-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-group-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul{border-top:none}#buddypress.twentytwentytwo .bp-invites-content ul li{border:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-invites-content ul li.selected{box-shadow:none;border-style:solid}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button .icons:before{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary);width:32px;height:32px}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button .icons:before{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button:hover .icons:before{color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-invites-content ul li ul.group-inviters li{border:none}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td,#buddypress.twentytwentytwo .profile table.profile-fields tr td,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .profile table.bp-tables-user tr td.label,#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr td.label,#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td.label{border-right-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield{background:var(--wp--preset--color--background);border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .editfield p.field-visibility-settings-toggle{margin-top:1em}#buddypress.twentytwentytwo .profile.edit .editfield .field-visibility-settings .radio label{margin-bottom:.5em}#buddypress.twentytwentytwo .profile.edit .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .profile.edit .button-tabs li{border:solid 2px var(--wp--preset--color--primary);overflow:hidden}#buddypress.twentytwentytwo .profile.edit .button-tabs li a{text-decoration:none}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li.current a{color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .profile.edit .button-tabs li:hover{outline-offset:10px;border-style:dotted}#buddypress.twentytwentytwo .profile.edit .clear-value{text-decoration:underline}#buddypress.twentytwentytwo .profile.edit legend{padding:0}#buddypress.twentytwentytwo .field-visibility-settings,#buddypress.twentytwentytwo .field-visibility-settings-header{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo #group-list.invites h2.list-title{float:none}#buddypress.twentytwentytwo #group-list.invites .accept{margin-left:0}#buddypress.twentytwentytwo #user_messages_select_all{vertical-align:-5px}#buddypress.twentytwentytwo #user_messages_select_all:checked{vertical-align:-3px}#buddypress.twentytwentytwo #message-threads{border-top:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li{border-bottom:1px dotted var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.selected{border:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads>li.unread{border-left:8px solid var(--wp--preset--color--secondary)}#buddypress.twentytwentytwo #message-threads li .thread-cb{padding-left:15px}#buddypress.twentytwentytwo #message-threads li.unread .thread-cb{padding-left:7px}#buddypress.twentytwentytwo #message-threads li .thread-from img.avatar,#buddypress.twentytwentytwo #message-threads li .thread-to img.avatar{width:32px;height:32px}#buddypress.twentytwentytwo #message-threads li .thread-from .num-recipients,#buddypress.twentytwentytwo #message-threads li .thread-to .num-recipients{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-content .excerpt{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li .thread-date time{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected{background:0 0;font-weight:bolder;color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li.selected .thread-subject .subject{color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo #message-threads li:not(.selected){color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-header h2:first-child,#buddypress.twentytwentytwo .bp-messages-content #thread-preview h2:first-child{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list{border-top:none}#buddypress.twentytwentytwo .bp-messages-content #thread-preview{border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .participants-list,#buddypress.twentytwentytwo .bp-messages-content #thread-preview dd{padding-left:0}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-pane-header{border-bottom-style:dotted;border-bottom-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-content .preview-message{background:0 0}#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header .participants-list,#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header dd{padding-left:0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip{border:none;background:0 0}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:before{width:32px;height:32px;color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before,#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before{border-radius:50%;color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-star:before,#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-unstar:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li{padding-left:0}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata{background:0 0;border:1px solid var(--wp--preset--color--primary);box-shadow:none}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata *{line-height:1.6;vertical-align:middle}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link{margin-top:3px;margin-bottom:3px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong{display:inline-block;margin-top:2px}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong{text-decoration:underline}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata time{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content{background:0 0;margin:0;width:100%;padding:.5em .2em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content *{padding-left:.8em;padding-right:.8em}#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li:first-child .message-content{border:1px dotted var(--wp--preset--color--primary);border-top:none}#buddypress.twentytwentytwo .bp-messages-content #send-reply .avatar-box img.avatar{display:inline-block;vertical-align:-7px}#buddypress.twentytwentytwo .bp-messages-content .wp-editor-container .mce-toolbar button{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-messages-content #bp-messages-reset{border-width:0;font-size:inherit}#buddypress.twentytwentytwo .bp-messages-content #send-to-input{width:100%!important}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit{padding:3px .7em;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-left-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply{line-height:1.5;margin:0 0 0 10px;padding:3px 5px;background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply span{vertical-align:middle}#buddypress.twentytwentytwo.buddypress-wrap .bp-tables-user tr.alt td,#buddypress.twentytwentytwo.buddypress-wrap table.wp-profile-fields tr.alt td{background:0 0}#buddypress.twentytwentytwo .bp-tables-user.profile-settings{border:solid 1px currentColor;margin-bottom:1em}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr{border:none}#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr th{text-align:left;border-bottom:dotted 1px currentColor}#buddypress.twentytwentytwo #delete-account-button{border-color:var(--wp--preset--color--vivid-red);color:var(--wp--preset--color--background);background:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo #delete-account-button:hover{color:var(--wp--preset--color--vivid-red);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .invitations-options-nav,#buddypress.twentytwentytwo .notifications-options-nav{margin-top:1em}#buddypress.twentytwentytwo .invitations-options-nav input#invitation-bulk-manage,#buddypress.twentytwentytwo .notifications-options-nav input#notification-bulk-manage{line-height:1.2}#buddypress.twentytwentytwo .bp-tables-user.notifications th{text-align:left}#buddypress.twentytwentytwo .bp-tables-user.notifications td.notification-actions a.delete{color:var(--wp--preset--color--vivid-red)}#buddypress.twentytwentytwo fieldset{padding-top:0;margin-top:1em}#buddypress.twentytwentytwo fieldset legend{padding:0 1em;display:inline-block}#buddypress.twentytwentytwo .select-wrap{border:1px solid var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .select-wrap select{background:0 0;width:98%;text-indent:0}#buddypress.twentytwentytwo .select-wrap span.select-arrow{background:0 0}#buddypress.twentytwentytwo .select-wrap span.select-arrow:before{font-family:dashicons;content:"\f140";color:var(--wp--preset--color--foreground);vertical-align:-10%}#buddypress.twentytwentytwo .select-wrap:focus .select-arrow:before,#buddypress.twentytwentytwo .select-wrap:hover .select-arrow:before{color:var(--wp--preset--color--foreground)}#buddypress.twentytwentytwo input[type=checkbox],#buddypress.twentytwentytwo input[type=radio]{width:25px;height:25px;vertical-align:top}#buddypress.twentytwentytwo .groups-members-search input[type=text],#buddypress.twentytwentytwo input[type=color],#buddypress.twentytwentytwo input[type=date],#buddypress.twentytwentytwo input[type=datetime-local],#buddypress.twentytwentytwo input[type=datetime],#buddypress.twentytwentytwo input[type=email],#buddypress.twentytwentytwo input[type=month],#buddypress.twentytwentytwo input[type=number],#buddypress.twentytwentytwo input[type=password],#buddypress.twentytwentytwo input[type=range],#buddypress.twentytwentytwo input[type=search],#buddypress.twentytwentytwo input[type=tel],#buddypress.twentytwentytwo input[type=text],#buddypress.twentytwentytwo input[type=time],#buddypress.twentytwentytwo input[type=url],#buddypress.twentytwentytwo input[type=week],#buddypress.twentytwentytwo textarea{color:var(--wp--preset--color--foreground);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .subnav-filters input[type=search]{font-size:16px;background:0 0}#buddypress.twentytwentytwo .bp-dir-search-form button,#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form#group_invites_search_form button{background-color:var(--wp--preset--color--background);color:var(--wp--preset--color--foreground);border-color:var(--wp--preset--color--background);border-left-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-dir-search-form button:hover,#buddypress.twentytwentytwo form#group-members-search button:hover,#buddypress.twentytwentytwo form#group_invites_search_form button:hover{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background);border-color:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .standard-form p.description{color:var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .standard-form .datebox-selects label,#buddypress.twentytwentytwo .standard-form .datebox-selects span.label{display:inline}body.bp-user.settings.general #buddypress.twentytwentytwo .wp-pwd:not(.is-open){display:none}.bp-user #buddypress.twentytwentytwo [data-bp-search] form #user_messages_search{padding:3px 10px}#buddypress.twentytwentytwo form#group-members-search,#buddypress.twentytwentytwo form.bp-dir-search-form,#buddypress.twentytwentytwo form.bp-messages-search-form,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form{border:1px solid var(--wp--preset--color--primary);background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo form#group-members-search button,#buddypress.twentytwentytwo form.bp-dir-search-form button,#buddypress.twentytwentytwo form.bp-messages-search-form button,#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form button{padding:5px .8em 6px}#buddypress.twentytwentytwo.extended-default-reg .register-page .default-profile{min-width:45%}#buddypress.twentytwentytwo .bp-tables-user tbody tr,#buddypress.twentytwentytwo .bp-tables-user tbody tr.alt,#buddypress.twentytwentytwo table.forum tbody tr,#buddypress.twentytwentytwo table.forum tbody tr.alt,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr,#buddypress.twentytwentytwo table.wp-profile-fields tbody tr.alt{background:0 0}#buddypress.twentytwentytwo .activity-read-more a,#buddypress.twentytwentytwo .comment-reply-link,#buddypress.twentytwentytwo .generic-button a,#buddypress.twentytwentytwo a.bp-title-button,#buddypress.twentytwentytwo a.button,#buddypress.twentytwentytwo button,#buddypress.twentytwentytwo input[type=button],#buddypress.twentytwentytwo input[type=submit],#buddypress.twentytwentytwo ul.button-nav:not(.button-tabs) li a{background:var(--wp--preset--color--primary);border:1px solid var(--wp--preset--color--primary);border-radius:0;color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo #bp-messages-reset,#buddypress.twentytwentytwo .activity-read-more a:focus,#buddypress.twentytwentytwo .activity-read-more a:hover,#buddypress.twentytwentytwo .button-nav li a:focus,#buddypress.twentytwentytwo .button-nav li a:hover,#buddypress.twentytwentytwo .button-nav li.current a,#buddypress.twentytwentytwo .comment-reply-link:focus,#buddypress.twentytwentytwo .comment-reply-link:hover,#buddypress.twentytwentytwo .generic-button a:focus,#buddypress.twentytwentytwo .generic-button a:hover,#buddypress.twentytwentytwo a.button:focus,#buddypress.twentytwentytwo a.button:hover,#buddypress.twentytwentytwo button:focus,#buddypress.twentytwentytwo button:hover,#buddypress.twentytwentytwo input[type=button]:focus,#buddypress.twentytwentytwo input[type=button]:hover,#buddypress.twentytwentytwo input[type=reset],#buddypress.twentytwentytwo input[type=submit]:focus,#buddypress.twentytwentytwo input[type=submit]:hover{background:0 0;border-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--foreground);outline:0;text-decoration:none}#buddypress.twentytwentytwo #bp-messages-reset:focus,#buddypress.twentytwentytwo #bp-messages-reset:hover,#buddypress.twentytwentytwo input[type=reset]:focus,#buddypress.twentytwentytwo input[type=reset]:hover{outline-offset:-0.25ch;outline:2px dashed currentColor}#buddypress.twentytwentytwo a.disabled,#buddypress.twentytwentytwo a.disabled:hover button.pending,#buddypress.twentytwentytwo button.disabled,#buddypress.twentytwentytwo button.disabled:hover,#buddypress.twentytwentytwo button.pending:hover,#buddypress.twentytwentytwo div.pending a,#buddypress.twentytwentytwo div.pending a:hover,#buddypress.twentytwentytwo input[type=button].disabled,#buddypress.twentytwentytwo input[type=button].pending,#buddypress.twentytwentytwo input[type=button]:hover.disabled,#buddypress.twentytwentytwo input[type=button]:hover.pending,#buddypress.twentytwentytwo input[type=reset].disabled,#buddypress.twentytwentytwo input[type=reset].pending,#buddypress.twentytwentytwo input[type=reset]:hover.disabled,#buddypress.twentytwentytwo input[type=reset]:hover.pending,#buddypress.twentytwentytwo input[type=submit].pending,#buddypress.twentytwentytwo input[type=submit]:disabled,#buddypress.twentytwentytwo input[type=submit]:hover.disabled,#buddypress.twentytwentytwo input[type=submit]:hover.pending,#buddypress.twentytwentytwo input[type=submit][disabled=disabled]{opacity:.6;cursor:not-allowed}#buddypress.twentytwentytwo .blog-button:after,#buddypress.twentytwentytwo .blog-button:before{display:none}#buddypress.twentytwentytwo .create-button a:focus,#buddypress.twentytwentytwo .create-button a:hover{text-decoration:none}#buddypress.twentytwentytwo.bp-dir-vert-nav .create-button a{box-shadow:none;color:var(--wp--preset--color--background);background-color:var(--wp--preset--color--primary);border-radius:0;border:1px solid var(--wp--preset--color--primary);background-clip:border-box}#buddypress.twentytwentytwo .warn{color:var(--wp--preset--color--primary);font-weight:600}#buddypress.twentytwentytwo .bp-feedback{color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background);box-shadow:none}#buddypress.twentytwentytwo .bp-feedback:not(.custom-homepage-info){margin-top:1.5em;margin-bottom:1.5em;border:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback .bp-icon{background-color:var(--wp--preset--color--primary);color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback a{border-bottom:solid 1px var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip{border:none;background:0 0;top:-5px;right:0}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip .dashicons-dismiss{border-radius:50%;width:32px;height:32px;color:var(--wp--preset--color--primary);background:var(--wp--preset--color--background)}#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip:hover .dashicons-dismiss{color:var(--wp--preset--color--background);background:var(--wp--preset--color--primary)}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice button.bp-tooltip{top:0;right:15px}#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice .bp-icon:before{content:"\f16d"}#buddypress.twentytwentytwo #group-create-body .bp-cover-image-status p.warning{background-color:var(--wp--preset--color--tertiary);border:none;border-left-width:4px;border-left-style:solid;border-left-color:var(--wp--preset--color--luminous-vivid-orange);color:var(--wp--preset--color--primary);box-shadow:none}body.buddypress .site #buddypress.twentytwentytwo .button.bp-tooltip:after{content:attr(data-bp-tooltip);word-wrap:break-word;height:auto;width:auto}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li span{background-color:var(--wp--preset--color--primary);border-radius:10%;display:inline-block;margin:3px 0}#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.current span,#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.selected span{background-color:var(--wp--preset--color--background)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body){background:var(--wp--preset--color--background);border-left:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links){background:0 0;border-bottom:1px solid var(--wp--preset--color--primary)}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a{border:none;text-decoration:none}#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current,#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected{background-color:var(--wp--preset--color--primary);margin:0;padding:10px 0;border-radius:0}#buddypress.twentytwentytwo .grid.bp-list{border-top:none}#buddypress.twentytwentytwo .grid>li{border:none}#buddypress.twentytwentytwo .grid>li .list-wrap{border:1px solid var(--wp--preset--color--primary);background:0 0}#buddypress.twentytwentytwo .grid>li .item-avatar,#buddypress.twentytwentytwo .grid>li:not(.mini) .item-avatar{margin-right:auto}
|
bp-templates/bp-nouveau/js/buddypress-messages.js
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/* global wp, BP_Nouveau, _, Backbone, tinymce, tinyMCE */
|
2 |
/* jshint devel: true */
|
3 |
/* @since 3.0.0 */
|
4 |
-
/* @version
|
5 |
window.wp = window.wp || {};
|
6 |
window.bp = window.bp || {};
|
7 |
|
@@ -97,6 +97,21 @@ window.bp = window.bp || {};
|
|
97 |
} );
|
98 |
},
|
99 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
removeTinyMCE: function() {
|
101 |
if ( typeof tinymce !== 'undefined' ) {
|
102 |
var editor = tinymce.get( 'message_content' );
|
@@ -169,6 +184,7 @@ window.bp = window.bp || {};
|
|
169 |
composeView: function() {
|
170 |
// Remove all existing views.
|
171 |
this.clearViews();
|
|
|
172 |
|
173 |
// Create the loop view.
|
174 |
var form = new bp.Views.messageForm( {
|
@@ -181,11 +197,7 @@ window.bp = window.bp || {};
|
|
181 |
},
|
182 |
|
183 |
threadsView: function() {
|
184 |
-
|
185 |
-
$( '#subnav ul li' ).each( function( l, li ) {
|
186 |
-
$( li ).removeClass( 'current selected' );
|
187 |
-
} );
|
188 |
-
$( '#subnav a#' + this.box ).closest( 'li' ).addClass( 'current selected' );
|
189 |
|
190 |
// Create the loop view.
|
191 |
var threads_list = new bp.Views.userThreads( { collection: this.threads, box: this.box } );
|
1 |
/* global wp, BP_Nouveau, _, Backbone, tinymce, tinyMCE */
|
2 |
/* jshint devel: true */
|
3 |
/* @since 3.0.0 */
|
4 |
+
/* @version 10.2.0 */
|
5 |
window.wp = window.wp || {};
|
6 |
window.bp = window.bp || {};
|
7 |
|
97 |
} );
|
98 |
},
|
99 |
|
100 |
+
updateNav: function( view ) {
|
101 |
+
var currentView = this.box;
|
102 |
+
|
103 |
+
if ( view ) {
|
104 |
+
currentView = view;
|
105 |
+
}
|
106 |
+
|
107 |
+
// Activate the appropriate nav.
|
108 |
+
$( '#subnav ul li' ).each( function( l, li ) {
|
109 |
+
$( li ).removeClass( 'current selected' );
|
110 |
+
} );
|
111 |
+
|
112 |
+
$( '#subnav a#' + currentView ).closest( 'li' ).addClass( 'current selected' );
|
113 |
+
},
|
114 |
+
|
115 |
removeTinyMCE: function() {
|
116 |
if ( typeof tinymce !== 'undefined' ) {
|
117 |
var editor = tinymce.get( 'message_content' );
|
184 |
composeView: function() {
|
185 |
// Remove all existing views.
|
186 |
this.clearViews();
|
187 |
+
this.updateNav( 'compose' );
|
188 |
|
189 |
// Create the loop view.
|
190 |
var form = new bp.Views.messageForm( {
|
197 |
},
|
198 |
|
199 |
threadsView: function() {
|
200 |
+
this.updateNav();
|
|
|
|
|
|
|
|
|
201 |
|
202 |
// Create the loop view.
|
203 |
var threads_list = new bp.Views.userThreads( { collection: this.threads, box: this.box } );
|
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||"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);
|
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}))})},updateNav:function(e){var s=this.box;e&&(s=e),u("#subnav ul li").each(function(e,s){u(s).removeClass("current selected")}),u("#subnav a#"+s).closest("li").addClass("current selected")},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(),this.updateNav("compose");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(){this.updateNav();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/sass/twentytwentytwo.scss
CHANGED
@@ -615,6 +615,17 @@ body {
|
|
615 |
|
616 |
.activity-comments {
|
617 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
618 |
.acomment-avatar {
|
619 |
width: auto;
|
620 |
margin-right: 0;
|
615 |
|
616 |
.activity-comments {
|
617 |
|
618 |
+
.show-all {
|
619 |
+
|
620 |
+
button {
|
621 |
+
text-decoration: none;
|
622 |
+
|
623 |
+
.icon {
|
624 |
+
display: none;
|
625 |
+
}
|
626 |
+
}
|
627 |
+
}
|
628 |
+
|
629 |
.acomment-avatar {
|
630 |
width: auto;
|
631 |
margin-right: 0;
|
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: 2022-
|
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"
|
@@ -3563,7 +3563,7 @@ msgstr ""
|
|
3563 |
|
3564 |
#: bp-core/bp-core-functions.php:3259
|
3565 |
#: bp-groups/bp-groups-functions.php:2786
|
3566 |
-
#: bp-members/bp-members-functions.php:
|
3567 |
msgid "Enter if you want the type slug to be different from its ID."
|
3568 |
msgstr ""
|
3569 |
|
@@ -8573,264 +8573,264 @@ msgstr ""
|
|
8573 |
msgid "reset it"
|
8574 |
msgstr ""
|
8575 |
|
8576 |
-
#: bp-members/bp-members-functions.php:
|
8577 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_get_user_last_activity() instead."
|
8578 |
msgstr ""
|
8579 |
|
8580 |
-
#: bp-members/bp-members-functions.php:
|
8581 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_update_user_last_activity() instead."
|
8582 |
msgstr ""
|
8583 |
|
8584 |
-
#: bp-members/bp-members-functions.php:
|
8585 |
-
#: bp-members/bp-members-functions.php:
|
8586 |
msgid "<strong>Error</strong>: Your account has been marked as a spammer."
|
8587 |
msgstr ""
|
8588 |
|
8589 |
-
#: bp-members/bp-members-functions.php:
|
8590 |
msgid "Please check your email address."
|
8591 |
msgstr ""
|
8592 |
|
8593 |
-
#: bp-members/bp-members-functions.php:
|
8594 |
-
#: bp-members/bp-members-functions.php:
|
8595 |
msgid "Sorry, that email address is not allowed!"
|
8596 |
msgstr ""
|
8597 |
|
8598 |
-
#: bp-members/bp-members-functions.php:
|
8599 |
msgid "Sorry, that email address is already used!"
|
8600 |
msgstr ""
|
8601 |
|
8602 |
-
#: bp-members/bp-members-functions.php:
|
8603 |
msgid "Please enter a username"
|
8604 |
msgstr ""
|
8605 |
|
8606 |
-
#: bp-members/bp-members-functions.php:
|
8607 |
msgid "That username is not allowed"
|
8608 |
msgstr ""
|
8609 |
|
8610 |
-
#: bp-members/bp-members-functions.php:
|
8611 |
msgid "Usernames can contain only letters, numbers, ., -, and @"
|
8612 |
msgstr ""
|
8613 |
|
8614 |
-
#: bp-members/bp-members-functions.php:
|
8615 |
msgid "Username must be at least 4 characters"
|
8616 |
msgstr ""
|
8617 |
|
8618 |
-
#: bp-members/bp-members-functions.php:
|
8619 |
msgid "Sorry, usernames may not contain the character \"_\"!"
|
8620 |
msgstr ""
|
8621 |
|
8622 |
-
#: bp-members/bp-members-functions.php:
|
8623 |
msgid "Sorry, usernames must have letters too!"
|
8624 |
msgstr ""
|
8625 |
|
8626 |
-
#: bp-members/bp-members-functions.php:
|
8627 |
msgid "Sorry, that username already exists!"
|
8628 |
msgstr ""
|
8629 |
|
8630 |
-
#: bp-members/bp-members-functions.php:
|
8631 |
msgid "Please make sure you enter your password twice"
|
8632 |
msgstr ""
|
8633 |
|
8634 |
-
#: bp-members/bp-members-functions.php:
|
8635 |
msgid "The passwords you entered do not match."
|
8636 |
msgstr ""
|
8637 |
|
8638 |
-
#: bp-members/bp-members-functions.php:
|
8639 |
-
#: bp-members/bp-members-functions.php:
|
8640 |
#: bp-members/classes/class-bp-rest-signup-endpoint.php:644
|
8641 |
msgid "Invalid activation key."
|
8642 |
msgstr ""
|
8643 |
|
8644 |
-
#: bp-members/bp-members-functions.php:
|
8645 |
msgid "The user is already active."
|
8646 |
msgstr ""
|
8647 |
|
8648 |
-
#: bp-members/bp-members-functions.php:
|
8649 |
msgid "The site is already active."
|
8650 |
msgstr ""
|
8651 |
|
8652 |
-
#: bp-members/bp-members-functions.php:
|
8653 |
msgid "Could not create user"
|
8654 |
msgstr ""
|
8655 |
|
8656 |
-
#: bp-members/bp-members-functions.php:
|
8657 |
msgid "That username is already activated."
|
8658 |
msgstr ""
|
8659 |
|
8660 |
-
#: bp-members/bp-members-functions.php:
|
8661 |
-
#: bp-members/bp-members-functions.php:
|
8662 |
msgctxt "Warning displayed on the WP Login screen"
|
8663 |
msgid "Error:"
|
8664 |
msgstr ""
|
8665 |
|
8666 |
-
#: bp-members/bp-members-functions.php:
|
8667 |
msgctxt "Error message displayed on the WP Login screen"
|
8668 |
msgid "Your membership request has not yet been approved."
|
8669 |
msgstr ""
|
8670 |
|
8671 |
-
#: bp-members/bp-members-functions.php:
|
8672 |
msgctxt "Error message displayed on the WP Login screen"
|
8673 |
msgid "Your account has not been activated. Check your email for the activation link."
|
8674 |
msgstr ""
|
8675 |
|
8676 |
#. translators: %s: the link to resend the activation email.
|
8677 |
-
#: bp-members/bp-members-functions.php:
|
8678 |
msgctxt "WP Login screen message"
|
8679 |
msgid "If you have not received an email yet, %s."
|
8680 |
msgstr ""
|
8681 |
|
8682 |
-
#: bp-members/bp-members-functions.php:
|
8683 |
msgctxt "Text of the link to resend the activation email"
|
8684 |
msgid "click here to resend it"
|
8685 |
msgstr ""
|
8686 |
|
8687 |
-
#: bp-members/bp-members-functions.php:
|
8688 |
msgid "<strong>Error</strong>: Your account has already been activated."
|
8689 |
msgstr ""
|
8690 |
|
8691 |
-
#: bp-members/bp-members-functions.php:
|
8692 |
msgid "Activation email resent! Please check your inbox or spam folder."
|
8693 |
msgstr ""
|
8694 |
|
8695 |
-
#: bp-members/bp-members-functions.php:
|
8696 |
msgctxt "Member type taxonomy name"
|
8697 |
msgid "Member Types"
|
8698 |
msgstr ""
|
8699 |
|
8700 |
-
#: bp-members/bp-members-functions.php:
|
8701 |
msgctxt "Member type taxonomy singular name"
|
8702 |
msgid "Member Type"
|
8703 |
msgstr ""
|
8704 |
|
8705 |
-
#: bp-members/bp-members-functions.php:
|
8706 |
msgctxt "Member type taxonomy search items label"
|
8707 |
msgid "Search Member Types"
|
8708 |
msgstr ""
|
8709 |
|
8710 |
-
#: bp-members/bp-members-functions.php:
|
8711 |
msgctxt "Member type taxonomy popular items label"
|
8712 |
msgid "Popular Member Types"
|
8713 |
msgstr ""
|
8714 |
|
8715 |
-
#: bp-members/bp-members-functions.php:
|
8716 |
msgctxt "Member type taxonomy all items label"
|
8717 |
msgid "All Member Types"
|
8718 |
msgstr ""
|
8719 |
|
8720 |
-
#: bp-members/bp-members-functions.php:
|
8721 |
msgctxt "Member type taxonomy parent item label"
|
8722 |
msgid "Parent Member Type"
|
8723 |
msgstr ""
|
8724 |
|
8725 |
-
#: bp-members/bp-members-functions.php:
|
8726 |
msgctxt "Member type taxonomy parent item label"
|
8727 |
msgid "Parent Member Type:"
|
8728 |
msgstr ""
|
8729 |
|
8730 |
-
#: bp-members/bp-members-functions.php:
|
8731 |
msgctxt "Member type taxonomy edit item label"
|
8732 |
msgid "Edit Member Type"
|
8733 |
msgstr ""
|
8734 |
|
8735 |
-
#: bp-members/bp-members-functions.php:
|
8736 |
msgctxt "Member type taxonomy view item label"
|
8737 |
msgid "View Member Type"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
-
#: bp-members/bp-members-functions.php:
|
8741 |
msgctxt "Member type taxonomy update item label"
|
8742 |
msgid "Update Member Type"
|
8743 |
msgstr ""
|
8744 |
|
8745 |
-
#: bp-members/bp-members-functions.php:
|
8746 |
msgctxt "Member type taxonomy add new item label"
|
8747 |
msgid "Add New Member Type"
|
8748 |
msgstr ""
|
8749 |
|
8750 |
-
#: bp-members/bp-members-functions.php:
|
8751 |
msgctxt "Member type taxonomy new item name label"
|
8752 |
msgid "New Member Type Name"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
-
#: bp-members/bp-members-functions.php:
|
8756 |
msgctxt "Member type taxonomy separate items with commas label"
|
8757 |
msgid "Separate member types with commas"
|
8758 |
msgstr ""
|
8759 |
|
8760 |
-
#: bp-members/bp-members-functions.php:
|
8761 |
msgctxt "Member type taxonomy add or remove items label"
|
8762 |
msgid "Add or remove member types"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
-
#: bp-members/bp-members-functions.php:
|
8766 |
msgctxt "Member type taxonomy choose from most used label"
|
8767 |
msgid "Choose from the most used meber types"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
-
#: bp-members/bp-members-functions.php:
|
8771 |
msgctxt "Member type taxonomy not found label"
|
8772 |
msgid "No member types found."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
-
#: bp-members/bp-members-functions.php:
|
8776 |
msgctxt "Member type taxonomy no terms label"
|
8777 |
msgid "No member types"
|
8778 |
msgstr ""
|
8779 |
|
8780 |
-
#: bp-members/bp-members-functions.php:
|
8781 |
msgctxt "Member type taxonomy items list navigation label"
|
8782 |
msgid "Member Types list navigation"
|
8783 |
msgstr ""
|
8784 |
|
8785 |
-
#: bp-members/bp-members-functions.php:
|
8786 |
msgctxt "Member type taxonomy items list label"
|
8787 |
msgid "Member Types list"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
#. translators: Tab heading when selecting from the most used terms.
|
8791 |
-
#: bp-members/bp-members-functions.php:
|
8792 |
msgctxt "Member type taxonomy most used items label"
|
8793 |
msgid "Most Used"
|
8794 |
msgstr ""
|
8795 |
|
8796 |
-
#: bp-members/bp-members-functions.php:
|
8797 |
msgctxt "Member type taxonomy back to items label"
|
8798 |
msgid "← Back to Member Types"
|
8799 |
msgstr ""
|
8800 |
|
8801 |
-
#: bp-members/bp-members-functions.php:
|
8802 |
msgctxt "BP Member type ID label"
|
8803 |
msgid "Member Type ID"
|
8804 |
msgstr ""
|
8805 |
|
8806 |
-
#: bp-members/bp-members-functions.php:
|
8807 |
msgctxt "BP Member type ID description"
|
8808 |
msgid "Enter a lower-case string without spaces or special characters (used internally to identify the member type)."
|
8809 |
msgstr ""
|
8810 |
|
8811 |
-
#: bp-members/bp-members-functions.php:
|
8812 |
msgctxt "BP Member type show in list"
|
8813 |
msgid "Show on Member"
|
8814 |
msgstr ""
|
8815 |
|
8816 |
-
#: bp-members/bp-members-functions.php:
|
8817 |
msgctxt "Member type taxonomy description"
|
8818 |
msgid "BuddyPress Member Types"
|
8819 |
msgstr ""
|
8820 |
|
8821 |
-
#: bp-members/bp-members-functions.php:
|
8822 |
msgid "Make a list of members matching this type available on the members directory."
|
8823 |
msgstr ""
|
8824 |
|
8825 |
-
#: bp-members/bp-members-functions.php:
|
8826 |
msgid "Show where member types may be listed, like in the member header."
|
8827 |
msgstr ""
|
8828 |
|
8829 |
-
#: bp-members/bp-members-functions.php:
|
8830 |
msgid "Member type already exists."
|
8831 |
msgstr ""
|
8832 |
|
8833 |
-
#: bp-members/bp-members-functions.php:
|
8834 |
msgid "You may not register a member type with this name."
|
8835 |
msgstr ""
|
8836 |
|
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: 2022-03-17T21:36:49+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"
|
3563 |
|
3564 |
#: bp-core/bp-core-functions.php:3259
|
3565 |
#: bp-groups/bp-groups-functions.php:2786
|
3566 |
+
#: bp-members/bp-members-functions.php:2827
|
3567 |
msgid "Enter if you want the type slug to be different from its ID."
|
3568 |
msgstr ""
|
3569 |
|
8573 |
msgid "reset it"
|
8574 |
msgstr ""
|
8575 |
|
8576 |
+
#: bp-members/bp-members-functions.php:1141
|
8577 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_get_user_last_activity() instead."
|
8578 |
msgstr ""
|
8579 |
|
8580 |
+
#: bp-members/bp-members-functions.php:1176
|
8581 |
msgid "User last_activity data is no longer stored in usermeta. Use bp_update_user_last_activity() instead."
|
8582 |
msgstr ""
|
8583 |
|
8584 |
+
#: bp-members/bp-members-functions.php:1438
|
8585 |
+
#: bp-members/bp-members-functions.php:2665
|
8586 |
msgid "<strong>Error</strong>: Your account has been marked as a spammer."
|
8587 |
msgstr ""
|
8588 |
|
8589 |
+
#: bp-members/bp-members-functions.php:1685
|
8590 |
msgid "Please check your email address."
|
8591 |
msgstr ""
|
8592 |
|
8593 |
+
#: bp-members/bp-members-functions.php:1689
|
8594 |
+
#: bp-members/bp-members-functions.php:1693
|
8595 |
msgid "Sorry, that email address is not allowed!"
|
8596 |
msgstr ""
|
8597 |
|
8598 |
+
#: bp-members/bp-members-functions.php:1697
|
8599 |
msgid "Sorry, that email address is already used!"
|
8600 |
msgstr ""
|
8601 |
|
8602 |
+
#: bp-members/bp-members-functions.php:1737
|
8603 |
msgid "Please enter a username"
|
8604 |
msgstr ""
|
8605 |
|
8606 |
+
#: bp-members/bp-members-functions.php:1743
|
8607 |
msgid "That username is not allowed"
|
8608 |
msgstr ""
|
8609 |
|
8610 |
+
#: bp-members/bp-members-functions.php:1748
|
8611 |
msgid "Usernames can contain only letters, numbers, ., -, and @"
|
8612 |
msgstr ""
|
8613 |
|
8614 |
+
#: bp-members/bp-members-functions.php:1753
|
8615 |
msgid "Username must be at least 4 characters"
|
8616 |
msgstr ""
|
8617 |
|
8618 |
+
#: bp-members/bp-members-functions.php:1758
|
8619 |
msgid "Sorry, usernames may not contain the character \"_\"!"
|
8620 |
msgstr ""
|
8621 |
|
8622 |
+
#: bp-members/bp-members-functions.php:1765
|
8623 |
msgid "Sorry, usernames must have letters too!"
|
8624 |
msgstr ""
|
8625 |
|
8626 |
+
#: bp-members/bp-members-functions.php:1777
|
8627 |
msgid "Sorry, that username already exists!"
|
8628 |
msgstr ""
|
8629 |
|
8630 |
+
#: bp-members/bp-members-functions.php:1820
|
8631 |
msgid "Please make sure you enter your password twice"
|
8632 |
msgstr ""
|
8633 |
|
8634 |
+
#: bp-members/bp-members-functions.php:1824
|
8635 |
msgid "The passwords you entered do not match."
|
8636 |
msgstr ""
|
8637 |
|
8638 |
+
#: bp-members/bp-members-functions.php:2034
|
8639 |
+
#: bp-members/bp-members-functions.php:2061
|
8640 |
#: bp-members/classes/class-bp-rest-signup-endpoint.php:644
|
8641 |
msgid "Invalid activation key."
|
8642 |
msgstr ""
|
8643 |
|
8644 |
+
#: bp-members/bp-members-functions.php:2041
|
8645 |
msgid "The user is already active."
|
8646 |
msgstr ""
|
8647 |
|
8648 |
+
#: bp-members/bp-members-functions.php:2043
|
8649 |
msgid "The site is already active."
|
8650 |
msgstr ""
|
8651 |
|
8652 |
+
#: bp-members/bp-members-functions.php:2073
|
8653 |
msgid "Could not create user"
|
8654 |
msgstr ""
|
8655 |
|
8656 |
+
#: bp-members/bp-members-functions.php:2087
|
8657 |
msgid "That username is already activated."
|
8658 |
msgstr ""
|
8659 |
|
8660 |
+
#: bp-members/bp-members-functions.php:2456
|
8661 |
+
#: bp-members/bp-members-functions.php:2475
|
8662 |
msgctxt "Warning displayed on the WP Login screen"
|
8663 |
msgid "Error:"
|
8664 |
msgstr ""
|
8665 |
|
8666 |
+
#: bp-members/bp-members-functions.php:2457
|
8667 |
msgctxt "Error message displayed on the WP Login screen"
|
8668 |
msgid "Your membership request has not yet been approved."
|
8669 |
msgstr ""
|
8670 |
|
8671 |
+
#: bp-members/bp-members-functions.php:2476
|
8672 |
msgctxt "Error message displayed on the WP Login screen"
|
8673 |
msgid "Your account has not been activated. Check your email for the activation link."
|
8674 |
msgstr ""
|
8675 |
|
8676 |
#. translators: %s: the link to resend the activation email.
|
8677 |
+
#: bp-members/bp-members-functions.php:2479
|
8678 |
msgctxt "WP Login screen message"
|
8679 |
msgid "If you have not received an email yet, %s."
|
8680 |
msgstr ""
|
8681 |
|
8682 |
+
#: bp-members/bp-members-functions.php:2483
|
8683 |
msgctxt "Text of the link to resend the activation email"
|
8684 |
msgid "click here to resend it"
|
8685 |
msgstr ""
|
8686 |
|
8687 |
+
#: bp-members/bp-members-functions.php:2520
|
8688 |
msgid "<strong>Error</strong>: Your account has already been activated."
|
8689 |
msgstr ""
|
8690 |
|
8691 |
+
#: bp-members/bp-members-functions.php:2522
|
8692 |
msgid "Activation email resent! Please check your inbox or spam folder."
|
8693 |
msgstr ""
|
8694 |
|
8695 |
+
#: bp-members/bp-members-functions.php:2748
|
8696 |
msgctxt "Member type taxonomy name"
|
8697 |
msgid "Member Types"
|
8698 |
msgstr ""
|
8699 |
|
8700 |
+
#: bp-members/bp-members-functions.php:2749
|
8701 |
msgctxt "Member type taxonomy singular name"
|
8702 |
msgid "Member Type"
|
8703 |
msgstr ""
|
8704 |
|
8705 |
+
#: bp-members/bp-members-functions.php:2750
|
8706 |
msgctxt "Member type taxonomy search items label"
|
8707 |
msgid "Search Member Types"
|
8708 |
msgstr ""
|
8709 |
|
8710 |
+
#: bp-members/bp-members-functions.php:2751
|
8711 |
msgctxt "Member type taxonomy popular items label"
|
8712 |
msgid "Popular Member Types"
|
8713 |
msgstr ""
|
8714 |
|
8715 |
+
#: bp-members/bp-members-functions.php:2752
|
8716 |
msgctxt "Member type taxonomy all items label"
|
8717 |
msgid "All Member Types"
|
8718 |
msgstr ""
|
8719 |
|
8720 |
+
#: bp-members/bp-members-functions.php:2753
|
8721 |
msgctxt "Member type taxonomy parent item label"
|
8722 |
msgid "Parent Member Type"
|
8723 |
msgstr ""
|
8724 |
|
8725 |
+
#: bp-members/bp-members-functions.php:2754
|
8726 |
msgctxt "Member type taxonomy parent item label"
|
8727 |
msgid "Parent Member Type:"
|
8728 |
msgstr ""
|
8729 |
|
8730 |
+
#: bp-members/bp-members-functions.php:2755
|
8731 |
msgctxt "Member type taxonomy edit item label"
|
8732 |
msgid "Edit Member Type"
|
8733 |
msgstr ""
|
8734 |
|
8735 |
+
#: bp-members/bp-members-functions.php:2756
|
8736 |
msgctxt "Member type taxonomy view item label"
|
8737 |
msgid "View Member Type"
|
8738 |
msgstr ""
|
8739 |
|
8740 |
+
#: bp-members/bp-members-functions.php:2757
|
8741 |
msgctxt "Member type taxonomy update item label"
|
8742 |
msgid "Update Member Type"
|
8743 |
msgstr ""
|
8744 |
|
8745 |
+
#: bp-members/bp-members-functions.php:2758
|
8746 |
msgctxt "Member type taxonomy add new item label"
|
8747 |
msgid "Add New Member Type"
|
8748 |
msgstr ""
|
8749 |
|
8750 |
+
#: bp-members/bp-members-functions.php:2759
|
8751 |
msgctxt "Member type taxonomy new item name label"
|
8752 |
msgid "New Member Type Name"
|
8753 |
msgstr ""
|
8754 |
|
8755 |
+
#: bp-members/bp-members-functions.php:2760
|
8756 |
msgctxt "Member type taxonomy separate items with commas label"
|
8757 |
msgid "Separate member types with commas"
|
8758 |
msgstr ""
|
8759 |
|
8760 |
+
#: bp-members/bp-members-functions.php:2761
|
8761 |
msgctxt "Member type taxonomy add or remove items label"
|
8762 |
msgid "Add or remove member types"
|
8763 |
msgstr ""
|
8764 |
|
8765 |
+
#: bp-members/bp-members-functions.php:2762
|
8766 |
msgctxt "Member type taxonomy choose from most used label"
|
8767 |
msgid "Choose from the most used meber types"
|
8768 |
msgstr ""
|
8769 |
|
8770 |
+
#: bp-members/bp-members-functions.php:2763
|
8771 |
msgctxt "Member type taxonomy not found label"
|
8772 |
msgid "No member types found."
|
8773 |
msgstr ""
|
8774 |
|
8775 |
+
#: bp-members/bp-members-functions.php:2764
|
8776 |
msgctxt "Member type taxonomy no terms label"
|
8777 |
msgid "No member types"
|
8778 |
msgstr ""
|
8779 |
|
8780 |
+
#: bp-members/bp-members-functions.php:2765
|
8781 |
msgctxt "Member type taxonomy items list navigation label"
|
8782 |
msgid "Member Types list navigation"
|
8783 |
msgstr ""
|
8784 |
|
8785 |
+
#: bp-members/bp-members-functions.php:2766
|
8786 |
msgctxt "Member type taxonomy items list label"
|
8787 |
msgid "Member Types list"
|
8788 |
msgstr ""
|
8789 |
|
8790 |
#. translators: Tab heading when selecting from the most used terms.
|
8791 |
+
#: bp-members/bp-members-functions.php:2769
|
8792 |
msgctxt "Member type taxonomy most used items label"
|
8793 |
msgid "Most Used"
|
8794 |
msgstr ""
|
8795 |
|
8796 |
+
#: bp-members/bp-members-functions.php:2770
|
8797 |
msgctxt "Member type taxonomy back to items label"
|
8798 |
msgid "← Back to Member Types"
|
8799 |
msgstr ""
|
8800 |
|
8801 |
+
#: bp-members/bp-members-functions.php:2773
|
8802 |
msgctxt "BP Member type ID label"
|
8803 |
msgid "Member Type ID"
|
8804 |
msgstr ""
|
8805 |
|
8806 |
+
#: bp-members/bp-members-functions.php:2774
|
8807 |
msgctxt "BP Member type ID description"
|
8808 |
msgid "Enter a lower-case string without spaces or special characters (used internally to identify the member type)."
|
8809 |
msgstr ""
|
8810 |
|
8811 |
+
#: bp-members/bp-members-functions.php:2775
|
8812 |
msgctxt "BP Member type show in list"
|
8813 |
msgid "Show on Member"
|
8814 |
msgstr ""
|
8815 |
|
8816 |
+
#: bp-members/bp-members-functions.php:2800
|
8817 |
msgctxt "Member type taxonomy description"
|
8818 |
msgid "BuddyPress Member Types"
|
8819 |
msgstr ""
|
8820 |
|
8821 |
+
#: bp-members/bp-members-functions.php:2822
|
8822 |
msgid "Make a list of members matching this type available on the members directory."
|
8823 |
msgstr ""
|
8824 |
|
8825 |
+
#: bp-members/bp-members-functions.php:2832
|
8826 |
msgid "Show where member types may be listed, like in the member header."
|
8827 |
msgstr ""
|
8828 |
|
8829 |
+
#: bp-members/bp-members-functions.php:2889
|
8830 |
msgid "Member type already exists."
|
8831 |
msgstr ""
|
8832 |
|
8833 |
+
#: bp-members/bp-members-functions.php:2919
|
8834 |
msgid "You may not register a member type with this name."
|
8835 |
msgstr ""
|
8836 |
|
class-buddypress.php
CHANGED
@@ -349,7 +349,7 @@ class BuddyPress {
|
|
349 |
|
350 |
/** Versions */
|
351 |
|
352 |
-
$this->version = '10.
|
353 |
$this->db_version = 13165;
|
354 |
|
355 |
/** Loading */
|
349 |
|
350 |
/** Versions */
|
351 |
|
352 |
+
$this->version = '10.2.0';
|
353 |
$this->db_version = 13165;
|
354 |
|
355 |
/** Loading */
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
|
6 |
Requires at least: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
Tested up to: 5.9
|
9 |
-
Stable tag: 10.
|
10 |
|
11 |
BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
|
12 |
|
@@ -125,6 +125,9 @@ Try <a href="https://wordpress.org/plugins/bbpress/">bbPress</a>. It integrates
|
|
125 |
|
126 |
== Upgrade Notice ==
|
127 |
|
|
|
|
|
|
|
128 |
= 10.1.0 =
|
129 |
See: https://codex.buddypress.org/releases/version-10-1-0/
|
130 |
|
@@ -190,6 +193,9 @@ See: https://codex.buddypress.org/releases/version-5-0-0/
|
|
190 |
|
191 |
== Changelog ==
|
192 |
|
|
|
|
|
|
|
193 |
= 10.1.0 =
|
194 |
See: https://codex.buddypress.org/releases/version-10-1-0/
|
195 |
|
6 |
Requires at least: 5.4
|
7 |
Requires PHP: 5.6
|
8 |
Tested up to: 5.9
|
9 |
+
Stable tag: 10.2.0
|
10 |
|
11 |
BuddyPress helps site builders & developers add community features to their websites, with user profiles, activity streams, and more!
|
12 |
|
125 |
|
126 |
== Upgrade Notice ==
|
127 |
|
128 |
+
= 10.2.0 =
|
129 |
+
See: https://codex.buddypress.org/releases/version-10-2-0/
|
130 |
+
|
131 |
= 10.1.0 =
|
132 |
See: https://codex.buddypress.org/releases/version-10-1-0/
|
133 |
|
193 |
|
194 |
== Changelog ==
|
195 |
|
196 |
+
= 10.2.0 =
|
197 |
+
See: https://codex.buddypress.org/releases/version-10-2-0/
|
198 |
+
|
199 |
= 10.1.0 =
|
200 |
See: https://codex.buddypress.org/releases/version-10-1-0/
|
201 |
|