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
Comments overlapping in Edge #1593
Comments
|
Thanks for the report. This is most likely because we have HTML toggles that collapse and expand the comments, but it's not supported by Edge yet. |
|
@Zhao-Andy @benhalpern .comments-container details details .comment-deep-1, .comments-container details details .comment-deep-2 {
margin-top: -123px;
}Which I guess is there for the details stuff? It's the sort of thing we can hack away but is that the road we want to go down? /* will only work in edge and IE */
@supports (-ms-ime-align:auto) {
.comments-container details details .comment-deep-1, .comments-container details details .comment-deep-2 {
margin-top: 0px;
}
} |
|
@Link2Twenty I think that hack is okay in this case. We knew the So it seems like a sensible patch that doesn't add unnecessary debt elsewhere. |
|
Thanks for contributing to this issue. As it has been 90 days since the last activity, we are automatically closing the issue in 7 days. This is often because the request was already solved in some way and it just wasn't updated or it's no longer applicable. If this issue still requires attention, please respond with a comment. Happy Coding! |
|
Still an issue. @Link2Twenty's suggestion should be a good starting place if anyone wants to work on this. |
|
Resolved with #3553 |
Describe the bug
When using Edge, some comments render as overlapping eachother
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The comments should not overlap while using Edge.
Screenshots
Example of issue: https://imgur.com/a/IW3sbEG
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: