fix: address word-break/overflow-wrap bug - #8487
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI (base), Organization UI (inherited) Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (11)
WalkthroughThis PR corrects a prior CSS migration error by changing ChangesOverflow-wrap correction
Estimated code review effort: 1 (Trivial) | ~5 minutes Possibly related PRs
Suggested reviewers: 🚥 Pre-merge checks | ✅ 4✅ Passed checks (4 passed)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Preview: https://pf-pr-8487.surge.sh A11y report: https://pf-pr-8487-a11y.surge.sh |
|
🎉 This PR is included in version 6.6.0-prerelease.17 🎉 The release is available on: Your semantic-release bot 📦🚀 |
* fix: address word-break/overflow-wrap bug (#8487) * chore(input group): add radius modifier (#8483) * fix(table): nested table sorting (#8491) * fix(tree-view): revert caret rotations (#8490) * fix(a11y): ignore target-size rule for WCAG 2.2 bump (#8493) * fix(tree): update tree table and DLS tree toggle icon direction (#8502) * fix: update disabled description to use text color token (#8497) * fix(plain actions): update tokens to vertical-plain (#8495) * fix: address bottom pagination bugs (#8498) * fix: address bottom pagination bugs * fix: round border-radius on default bottom in glass * chore(primary details): fix drawer and toolbar (#8509) * fix(modal): footer action spacing (#8526) --------- Co-authored-by: Michael Coker <35148959+mcoker@users.noreply.github.com> Co-authored-by: Andrew Ronaldson <aronalds@redhat.com> Co-authored-by: Jake Miller <jake83miller@gmail.com> Co-authored-by: Eric Olkowski <70952936+thatblindgeye@users.noreply.github.com> Co-authored-by: Jake Miller <jakmille@redhat.com>
fixes #8484
Follow up to a bug from #8438. I incorrectly replaced
word-break: break-wordwithoverflow-wrap: break-word, when it should have been replaced withoverflow-wrap: anywhere. This PR goes through all of the changes in #8438 and changes any rules that wereword-break: break-wordtooverflow-wrap: anywhereinstead.Note - there are some instances of
word-wrap: break-word(word-wrapvsword-break) replaced withoverflow-wrap: break-wordoriginally, which is correct, so I left those alone.Summary by CodeRabbit