mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Break long words on txt files in Diffusion
Summary: Fixes T12163. We don't send txt files through a pygment highlighter, so the break-word needs to also just apply to diffusion-source. Test Plan: Test in Chrome Inspector Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T12163 Differential Revision: https://secure.phabricator.com/D17303
This commit is contained in:
parent
e980b94a2f
commit
c0e3573454
2 changed files with 3 additions and 2 deletions
|
@ -67,7 +67,7 @@ return array(
|
|||
'rsrc/css/application/differential/table-of-contents.css' => 'ae4b7a55',
|
||||
'rsrc/css/application/diffusion/diffusion-icons.css' => 'd678600a',
|
||||
'rsrc/css/application/diffusion/diffusion-readme.css' => '297373eb',
|
||||
'rsrc/css/application/diffusion/diffusion-source.css' => '68b30fd3',
|
||||
'rsrc/css/application/diffusion/diffusion-source.css' => '750add59',
|
||||
'rsrc/css/application/feed/feed.css' => 'ecd4ec57',
|
||||
'rsrc/css/application/files/global-drag-and-drop.css' => '5c1b47c2',
|
||||
'rsrc/css/application/flag/flag.css' => 'bba8f811',
|
||||
|
@ -582,7 +582,7 @@ return array(
|
|||
'differential-table-of-contents-css' => 'ae4b7a55',
|
||||
'diffusion-icons-css' => 'd678600a',
|
||||
'diffusion-readme-css' => '297373eb',
|
||||
'diffusion-source-css' => '68b30fd3',
|
||||
'diffusion-source-css' => '750add59',
|
||||
'diviner-shared-css' => 'aa3656aa',
|
||||
'font-aleo' => '8bdb2835',
|
||||
'font-fontawesome' => 'e838e088',
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
padding-bottom: 1px;
|
||||
padding-left: 8px;
|
||||
width: 100%;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.diffusion-browse-type-form {
|
||||
|
|
Loading…
Reference in a new issue