-
Notifications
You must be signed in to change notification settings - Fork 11.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking long URLS to prevent overflow #6368
Breaking long URLS to prevent overflow #6368
Conversation
Added CSS to handle long URL overflow
@@ -258,6 +258,13 @@ input:focus { | |||
border-radius: 6px; | |||
padding: 5px; | |||
float: left; | |||
word-wrap: break-word; | |||
word-break: break-word; | |||
-ms-word-break: break-all; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we don't need this. IE11 can handle word-break
already.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@karlprieb can we enable the less autoprefixer again?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@karlprieb is this the only concern on this PR? if so, we can edit it to use only work-break
and merge it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sampaiodiego Of course :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to clarify, you want the -ms-word-break
removed, correct?
Added CSS to handle long URL overflow
@RocketChat/core
Closes #6329
Updated box