Skip to content

Commit

Permalink
Merge pull request #11162 from nextcloud/backport/11161/stable28
Browse files Browse the repository at this point in the history
[stable28] fix(messages): apply ltr styles to system messages
  • Loading branch information
nickvergessen committed Dec 8, 2023
2 parents 0042991 + d57c3af commit 390d08f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/MessagesList/MessagesGroup/Message/Message.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1155,11 +1155,6 @@ export default {
:deep(.rich-text--wrapper) {
text-align: start;
// Hardcode to prevent RTL affecting on user mentions
.rich-text--component {
direction: ltr;
}
// Overwrite core styles, otherwise h4 is lesser than default font-size
h4 {
font-size: 100%;
Expand Down Expand Up @@ -1204,4 +1199,9 @@ export default {
}
}
}
// Hardcode to prevent RTL affecting on user mentions
:deep(.rich-text--component) {
direction: ltr;
}
</style>

0 comments on commit 390d08f

Please sign in to comment.