2
0
Fork 0
mirror of https://github.com/discourse/wp-discourse.git synced 2025-10-03 08:59:21 +08:00

Two Four Seven (#469)

* Add comment block

* Various bugfixes

* Bump versions

* Fix unit tests

* phpcs fixes

* Escape html output

* Update .jshintignore

* Update WP PHPCS usage && fix warning in log_viewer

* Update contact section of readme

We'll be closing issues on the github repo and directing all contact to https://meta.discourse.org/c/support/wordpress
This commit is contained in:
Angus McLeod 2022-12-23 20:28:43 +01:00 committed by GitHub
parent 94298c790f
commit cb91768161
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
34 changed files with 27389 additions and 187 deletions

View file

@ -120,6 +120,16 @@ article.onebox-body:after {
color: #222;
}

.comment-body .comment-meta {
display: flex;
gap: 1em;
}

.comment-body .comment-author {
display: flex;
gap: 1em;
}

span.badge-category-bg {
width: 9px;
height: 9px;
@ -142,6 +152,7 @@ span.badge-category-bg {

.discourse-comments-area ol {
list-style: none;
padding: 0;
}

.discourse-comments-area .comment-reply-title {
@ -152,3 +163,11 @@ span.badge-category-bg {
max-width: none;
}

.block-editor-block-preview__content-iframe .comments-title-wrap,
.block-editor-block-preview__content-iframe .comment-respond {
display: none;
}
.block-editor-block-preview__content-iframe .comment-body img.avatar {
width: 50px;
height: 50px;
}