1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-05 03:18:25 +01:00

Fix long URLs on mobile chatlog

Summary: Really long words or URLs from IRC break mobile layout, so this breaks the word if it hits the edge of the screen.

Test Plan: Duderpooooooooooooooooooooooooooooooooooooooooo

Reviewers: epriestley, btrahan

Reviewed By: btrahan

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5703
This commit is contained in:
Chad Little 2013-04-15 15:54:15 -07:00
parent c301b049d8
commit bcbdb44e2f
2 changed files with 3 additions and 1 deletions

View file

@ -2878,7 +2878,7 @@ celerity_register_resource_map(array(
),
'phabricator-chatlog-css' =>
array(
'uri' => '/res/b5600765/rsrc/css/application/chatlog/chatlog.css',
'uri' => '/res/5542e247/rsrc/css/application/chatlog/chatlog.css',
'type' => 'css',
'requires' =>
array(

View file

@ -63,6 +63,7 @@
color: #a1a5a9;
font-size: 11px;
float: right;
margin-left: 5px;
}
.phabricator-chat-log td.author {
@ -79,4 +80,5 @@
.phabricator-chat-log td.message {
white-space: pre-wrap;
word-break: break-word;
}