mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-25 05:02:57 +01:00
Fix long comment UI issues (scroll shaking & comment overflow)
- Includes PR #11322 - Fixes #10984 (scrolling issues with long initial comments) - Fixes #11324 (overflow of comment reply with long words)
This commit is contained in:
parent
a88a775aea
commit
6f93b1a2c4
@ -63,6 +63,7 @@ Changelog
|
||||
* Fix: Prevent TitleFieldPanel from raising an error when the slug field is missing or read-only (Rohit Sharma)
|
||||
* Fix: Ensure that the close button on the new dialog designs is visible in the non-message variant (Nandini Arora)
|
||||
* Fix: Ensure the sidebar account toggle has no duplicate accessible labels (Nandini Arora)
|
||||
* Fix: Avoid text overflow issues in comment replies and scroll position issues for long comments (Rohit Sharma)
|
||||
* Docs: Document, for contributors, the use of translate string literals passed as arguments to tags and filters using `_()` within templates (Chiemezuo Akujobi)
|
||||
* Docs: Document all features for the Documents app in one location (Neeraj Yetheendran)
|
||||
* Docs: Add section to testing docs about creating pages and working with page content (Mariana Bedran Lesche)
|
||||
|
@ -12,6 +12,7 @@
|
||||
margin-bottom: 0;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
word-break: break-all;
|
||||
|
||||
&--mode-deleting {
|
||||
color: theme('colors.text-context');
|
||||
|
@ -110,7 +110,7 @@ $box-padding: 20px;
|
||||
}
|
||||
|
||||
.comments-list {
|
||||
position: absolute;
|
||||
position: relative;
|
||||
top: 20px;
|
||||
inset-inline-end: 20px;
|
||||
z-index: calc(theme('zIndex.header') + 5);
|
||||
|
@ -91,6 +91,7 @@ Thank you to Thibaud Colas and Badr Fourane for their work on this feature.
|
||||
* Prevent TitleFieldPanel from raising an error when the slug field is missing or read-only (Rohit Sharma)
|
||||
* Ensure that the close button on the new dialog designs is visible in the non-message variant (Nandini Arora)
|
||||
* Ensure the sidebar account toggle has no duplicate accessible labels (Nandini Arora)
|
||||
* Avoid text overflow issues in comment replies and scroll position issues for long comments (Rohit Sharma)
|
||||
|
||||
|
||||
### Documentation
|
||||
|
Loading…
Reference in New Issue
Block a user