Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PROD-8421] Disable activity read more links while activity post is active #4593

Open
wants to merge 1 commit into
base: release
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1848,6 +1848,10 @@
pointer-events: none;
}
}

.acomment-content .activity-read-more a {
pointer-events: none;
}
}

.activity-item.active {
Expand All @@ -1865,6 +1869,10 @@
pointer-events: none;
}
}

.activity-content .activity-read-more a {
pointer-events: none;
}
}
}

Expand Down
10 changes: 9 additions & 1 deletion src/bp-templates/bp-nouveau/css/buddypress-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -5168,6 +5168,10 @@ body.buddypress .buddypress-wrap .bb-modal-activity-header h2 {
pointer-events: none;
}

.bb-internal-model .activity-comments.active .acomment-content .activity-read-more a {
pointer-events: none;
}

.bb-internal-model .activity-item.active .activity-header .activity-privacy li {
pointer-events: none;
}
Expand All @@ -5176,6 +5180,10 @@ body.buddypress .buddypress-wrap .bb-modal-activity-header h2 {
pointer-events: none;
}

.bb-internal-model .activity-item.active .activity-content .activity-read-more a {
pointer-events: none;
}

/* Activity comment modal ==> Ends Here */
.ac-reply-toolbar .emojionearea.ac-input.medium-editor-element {
background-color: transparent;
Expand Down Expand Up @@ -27595,7 +27603,7 @@ html[dir="rtl"] .theme-editor-php .CodeMirror-code {
.bb-activity-video-elem .video-js .vjs-control-bar .vjs-seek-button.skip-back .vjs-icon-placeholder:before,
.bb-video-thumb .video-js .vjs-control-bar .vjs-seek-button.skip-back .vjs-icon-placeholder:before,
.bb-media-section .video-js .vjs-control-bar .vjs-seek-button.skip-back .vjs-icon-placeholder:before {
transform: rotateY(180deg);
transform: rotateY(-180deg);
}

@media screen and (max-width: 768px) {
Expand Down
4 changes: 2 additions & 2 deletions src/bp-templates/bp-nouveau/css/buddypress-rtl.min.css

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions src/bp-templates/bp-nouveau/css/buddypress.css
Original file line number Diff line number Diff line change
Expand Up @@ -5168,6 +5168,10 @@ body.buddypress .buddypress-wrap .bb-modal-activity-header h2 {
pointer-events: none;
}

.bb-internal-model .activity-comments.active .acomment-content .activity-read-more a {
pointer-events: none;
}

.bb-internal-model .activity-item.active .activity-header .activity-privacy li {
pointer-events: none;
}
Expand All @@ -5176,6 +5180,10 @@ body.buddypress .buddypress-wrap .bb-modal-activity-header h2 {
pointer-events: none;
}

.bb-internal-model .activity-item.active .activity-content .activity-read-more a {
pointer-events: none;
}

/* Activity comment modal ==> Ends Here */
.ac-reply-toolbar .emojionearea.ac-input.medium-editor-element {
background-color: transparent;
Expand Down
4 changes: 2 additions & 2 deletions src/bp-templates/bp-nouveau/css/buddypress.min.css

Large diffs are not rendered by default.

Loading