Fixes #286 Allow selection of message text

// FREEBIE
This commit is contained in:
lilia 2015-06-26 16:16:13 -07:00
parent 6aa36a98aa
commit 90fe82a0c0
3 changed files with 13 additions and 6 deletions

View file

@ -182,9 +182,13 @@
border-bottom: 6px solid transparent; border-bottom: 6px solid transparent;
} }
.content a { .content {
-webkit-user-select: text;
a {
word-break: break-all word-break: break-all
} }
}
p { p {
margin: 0; margin: 0;
} }

View file

@ -562,6 +562,9 @@ input.search {
top: 11px; top: 11px;
border-top: 6px solid transparent; border-top: 6px solid transparent;
border-bottom: 6px solid transparent; } border-bottom: 6px solid transparent; }
.message-detail .bubble .content,
.message-list .bubble .content {
-webkit-user-select: text; }
.message-detail .bubble .content a, .message-detail .bubble .content a,
.message-list .bubble .content a { .message-list .bubble .content a {
word-break: break-all; } word-break: break-all; }

File diff suppressed because one or more lines are too long