Browse Source

Merge pull request #927 from nextcloud/drop-unneeded-statements

white-space: pre-wrap is supported on all current browsers
pull/937/head
Roeland Jago Douma 10 years ago
committed by GitHub
parent
commit
71d81eef08
  1. 9
      apps/comments/css/comments.css

9
apps/comments/css/comments.css

@ -60,14 +60,7 @@
}
#commentsTabView .comment.collapsed .message {
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -webkit-pre-wrap; /*Chrome & Safari */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
white-space: pre-wrap; /* css-3 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
word-break: break-all;
white-space: normal;
white-space: pre-wrap;
}
#commentsTabView .comment.collapsed .message {

Loading…
Cancel
Save