Skip to content

Commit 09db186

Browse files
committed
preparing for version update
1 parent 5e293f3 commit 09db186

File tree

19 files changed

+566
-392
lines changed

19 files changed

+566
-392
lines changed

assets/css/bbpress.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,14 @@ a.bbp-topic-permalink {
235235
padding: 0!important;
236236
}
237237

238+
body .select2-container .select2-dropdown.bb-tag-list-dropdown.bb-tag-list-dropdown {
239+
top: 34px;
240+
}
241+
242+
#bbp_topic_tags_dropdown+.select2-container input {
243+
padding: 0 10px;
244+
}
245+
238246
/*--------------------------------------------------------------
239247
# Activity Page
240248
--------------------------------------------------------------*/

assets/css/buddypress.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,10 @@
5353
/*--------------------------------------------------------------
5454
# Global Buddypress Css
5555
--------------------------------------------------------------*/
56+
.avatar {
57+
aspect-ratio: 1;
58+
object-fit: cover;
59+
}
5660

5761
body.buddypress article.page>.entry-header .entry-title {
5862
color: var(--color-h1);
@@ -1414,6 +1418,10 @@ body:not(.logged-in) .activity-list.bp-list .activity-item {
14141418
margin-bottom: 15px !important;
14151419
}
14161420

1421+
.buddypress-wrap .new_blog_comment .activity-inner p {
1422+
padding: 0;
1423+
}
1424+
14171425
.buddypress-wrap .activity-list .activity-item.new_blog_comment .activity-content .activity-inner {
14181426
margin-bottom: 15px;
14191427
}

assets/css/buddypress.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/global.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2242,10 +2242,10 @@ body.layout-boxed .site {
22422242
border-color: #e2e2e2;
22432243
}
22442244

2245-
.mce-container iframe,
2245+
/* .mce-container iframe,
22462246
.wp-editor-container textarea.wp-editor-area {
22472247
height: 250px !important;
2248-
}
2248+
} */
22492249

22502250
.mce-toolbar .mce-btn-group .mce-btn:focus,
22512251
.mce-toolbar .mce-btn-group .mce-btn:hover,
@@ -2455,6 +2455,10 @@ p {
24552455
margin-bottom: 10px;
24562456
}
24572457

2458+
.entry-content ul.wp-block-post-template {
2459+
margin-left: 0;
2460+
}
2461+
24582462
article .entry-header {
24592463
max-width: max-content;
24602464
}

assets/css/platform.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -937,12 +937,7 @@ body .select2-container .select2-dropdown.bb-compose-input {
937937
background: #fff;
938938
}
939939

940-
.select2-container--default .select2-results__option--highlighted[aria-selected] {
941-
background-color: #f6f6f6;
942-
}
943-
944940
body .select2-container .select2-dropdown.bb-compose-input .select2-results__option {
945-
color: var(--color-link);
946941
border-radius: var(--global-border-radius);
947942
font-size: 13px;
948943
font-weight: 500;

assets/css/rtl.css

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -467,11 +467,6 @@ a.prev.page-numbers {
467467
transform: rotate(180deg);
468468
}
469469

470-
.bp-pagination-links .next,
471-
.bp-pagination-links .prev {
472-
display: none;
473-
}
474-
475470
.nav-links a.prev.page-numbers,
476471
.nav-links a.next.page-numbers {
477472
-webkit-transform: rotate(0deg);

assets/js/custom.js

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
$elementHeader = $('body.sticky-header, .sticky-header .site-header-wrapper'),
2626
className = 'has-sticky-header';
2727

28-
$document.scroll(function() {
28+
$document.on('scroll', function() {
2929
$elementHeader.toggleClass(className, $document.scrollTop() >= 1);
3030
});
3131
};
@@ -49,14 +49,14 @@
4949
$('.site-header .top-menu-search-container').toggle();
5050
});
5151

52-
$(document).mouseup(function(e) {
52+
$(document).on('mouseup', function(e) {
5353
var container = $(".top-menu-search-container");
5454
if (!container.is(e.target) && container.has(e.target).length === 0) {
5555
container.fadeOut();
5656
}
5757
});
5858

59-
$("#primary-menu a, .cart a.menu-icons-wrapper, .bp-icon-wrap, a.user-link, .site-sub-header a, .site-wrapper a").focusin(function() {
59+
$("#primary-menu a, .cart a.menu-icons-wrapper, .bp-icon-wrap, a.user-link, .site-sub-header a, .site-wrapper a").on('focusin', function() {
6060
$('.site-header .top-menu-search-container').hide();
6161
});
6262

@@ -78,15 +78,15 @@
7878
disableHI: false,
7979
});
8080

81-
$("#primary-menu a, .desktop-icons a, .bp-icon-wrap").focusin(function() {
81+
$("#primary-menu a, .desktop-icons a, .bp-icon-wrap").on('focusin', function() {
8282
$('.user-link-wrap, .user-notifications').removeClass("active");
8383
});
8484

85-
$(".site-title a, .user-link-wrap .user-link, button.menu-toggle").focusin(function() {
85+
$(".site-title a, .user-link-wrap .user-link, button.menu-toggle").on('focusin', function() {
8686
$('.user-notifications').removeClass("active");
8787
});
8888

89-
$(".user-link-wrap .user-link, .user-notifications .bp-icon-wrap").focusin(function() {
89+
$(".user-link-wrap .user-link, .user-notifications .bp-icon-wrap").on('focusin', function() {
9090
$(this).parent().removeClass("active");
9191
$(this).parent().addClass("active");
9292
});
@@ -96,13 +96,14 @@
9696
container.removeClass('active');
9797
});
9898

99-
$(".user-link-wrap ul#user-profile-menu > li:last-child a").focusout(function() {
99+
$(".user-link-wrap ul#user-profile-menu > li:last-child a").on('focusout', function() {
100100
$('.user-link-wrap').removeClass("active");
101101
});
102102

103-
$(".buddyx-mobile-menu").focusout(function() {
104-
$('.mobile-menu-heading .close-menu').focusin();
103+
$(".buddyx-mobile-menu").on('focusout', function() {
104+
$('.mobile-menu-heading .close-menu').trigger('focusin');
105105
});
106+
106107

107108
};
108109

@@ -147,7 +148,7 @@
147148
}
148149
});
149150

150-
$(document).keyup(function(e) {
151+
$(document).on('keyup', function(e) {
151152
if (e.keyCode === 27 && isOpened())
152153
closeWidget();
153154
});
@@ -389,7 +390,7 @@
389390

390391
};
391392

392-
$(document).ready(function() {
393+
$(function() {
393394

394395
BUDDYX.headerClass();
395396
BUDDYX.headerSearch();
@@ -405,17 +406,17 @@
405406

406407
});
407408

408-
$(window).resize(function() {
409+
$(window).on('resize', function() {
409410
// do stuff
410411
BUDDYX.headerClass();
411412
});
412413

413-
$(window).scroll(function() {
414+
$(window).on('scroll', function() {
414415
// do stuff
415416
BUDDYX.headerScroll();
416417
});
417418

418-
$(window).load(function() {
419+
$(window).on('load', function() {
419420
BUDDYX.headerClass();
420421
BUDDYX.siteLoader();
421422
BUDDYX.blogLayout();

assets/js/custom.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bb-buddypress/groups/groups-loop.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
bp_nouveau_loop_classes();
3939
echo esc_attr( ' ' . $cover_class . ' ' . $group_alignment );
4040
?>
41-
groups-dir-list">
41+
groups-dir-list">
4242

4343
<?php
4444
while ( bp_groups() ) :
4545
bp_the_group();
46-
?>
46+
?>
4747

4848
<li <?php bp_group_class( array( 'item-entry' ) ); ?> data-bp-item-id="<?php bp_group_id(); ?>" data-bp-item-component="groups">
4949
<div class="list-wrap">

0 commit comments

Comments
 (0)