mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-18 11:30:55 +01:00
Wrap long text in setup issues
Summary: Really long text strings break this ui when first setting up Phabricator. Test Plan: MySQL sql_mode setup issue. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16455
This commit is contained in:
parent
9a52492f1b
commit
2b185daf7e
2 changed files with 3 additions and 2 deletions
|
@ -42,7 +42,7 @@ return array(
|
|||
'rsrc/css/application/config/config-options.css' => '0ede4c9b',
|
||||
'rsrc/css/application/config/config-template.css' => '8e6c6fcd',
|
||||
'rsrc/css/application/config/config-welcome.css' => '035aa483',
|
||||
'rsrc/css/application/config/setup-issue.css' => 'db7e9c40',
|
||||
'rsrc/css/application/config/setup-issue.css' => 'f794cfc3',
|
||||
'rsrc/css/application/config/unhandled-exception.css' => '4c96257a',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => '86396117',
|
||||
'rsrc/css/application/conpherence/menu.css' => 'f99fee4c',
|
||||
|
@ -891,7 +891,7 @@ return array(
|
|||
'releeph-preview-branch' => 'b7a6f4a5',
|
||||
'releeph-request-differential-create-dialog' => '8d8b92cd',
|
||||
'releeph-request-typeahead-css' => '667a48ae',
|
||||
'setup-issue-css' => 'db7e9c40',
|
||||
'setup-issue-css' => 'f794cfc3',
|
||||
'sprite-login-css' => '60e8560e',
|
||||
'sprite-tokens-css' => '9cdfd599',
|
||||
'syntax-default-css' => '9923583c',
|
||||
|
|
|
@ -38,6 +38,7 @@
|
|||
.setup-issue table td {
|
||||
border: 1px solid #BFCFDA;
|
||||
padding: 8px;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.setup-issue pre {
|
||||
|
|
Loading…
Reference in a new issue