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;
}
.content a {
word-break: break-all
.content {
-webkit-user-select: text;
a {
word-break: break-all
}
}
p {
margin: 0;
}

View file

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

File diff suppressed because one or more lines are too long