Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Allow scrolling right in reply-quoted code block #7024

Merged
merged 2 commits into from
Oct 25, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion res/css/views/rooms/_ReplyTile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ limitations under the License.

// Hack to cut content in <pre> tags too
.mx_EventTile_pre_container > pre {
overflow: hidden;
overflow-y: scroll;
overflow-y: hidden;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Erm, one of these probably wants to be an overflow-x ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ehm, /me is good at typing :D

text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
Expand Down