Skip to content
Open
Changes from all commits
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
1 change: 1 addition & 0 deletions webapp/src/components/cardDetail/comment.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@

.comment-markdown > * {
white-space: pre-wrap;
user-select: auto;

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Why not user-select: text if we are sure about allowing the user to select the text inside the element?
user-select: auto leaves the decision up to the browser’s default behaviour or what’s inherited from parent elements.

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

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

I agree, is probably best to have it as 'text', since 'auto' can have different outcome.

}
}