mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-03 11:21:01 +01:00
Allow Maniphest task titles to wrap
Summary: Long task titles currently break the task list in icky ways, let them wrap instead. We probably need some shorten() / word break action here eventually since I can still type "MMMMMMMMMMMMMMMMMMMMMMMMMM" (etc) to break the layout but this covers non-prankster use cases. Test Plan: Created a task with an exceptionally long title, viewed it in the task list, it wrapped reasonably and didn't ruin everything. Differential Revision: 40 Reviewed By: aran Reviewers: fratrik, aran CC: epriestley, aran
This commit is contained in:
parent
60b08936a4
commit
4fdca4ca41
2 changed files with 2 additions and 1 deletions
|
@ -208,7 +208,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'maniphest-task-summary-css' =>
|
||||
array(
|
||||
'uri' => '/res/10d5ec2e/rsrc/css/application/maniphest/task-summary.css',
|
||||
'uri' => '/res/94d01e6f/rsrc/css/application/maniphest/task-summary.css',
|
||||
'type' => 'css',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -39,6 +39,7 @@
|
|||
.maniphest-task-summary td.maniphest-task-name {
|
||||
overflow: hidden;
|
||||
font-weight: bold;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.maniphest-task-summary td.maniphest-task-priority {
|
||||
|
|
Loading…
Reference in a new issue