mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Maniphest style tweaks.
Summary: Test Plan: Reviewers: CC:
This commit is contained in:
parent
56880cc92e
commit
1636e8274a
3 changed files with 14 additions and 5 deletions
|
@ -86,7 +86,12 @@ class ManiphestTaskDetailController extends ManiphestController {
|
|||
|
||||
$dict['Author'] = $handles[$task->getAuthorPHID()]->renderLink();
|
||||
|
||||
$dict['Description'] = $engine->markupText($task->getDescription());
|
||||
$dict['Description'] =
|
||||
'<div class="maniphest-task-description">'.
|
||||
'<div class="phabricator-remarkup">'.
|
||||
$engine->markupText($task->getDescription()).
|
||||
'</div>'.
|
||||
'</div>';
|
||||
|
||||
require_celerity_resource('mainphest-task-detail-css');
|
||||
|
||||
|
|
|
@ -127,9 +127,7 @@ class ManiphestTransactionDetailView extends AphrontView {
|
|||
'<div class="maniphest-transaction-timestamp">'.
|
||||
phabricator_format_timestamp($transaction->getDateCreated()).
|
||||
'</div>'.
|
||||
'<strong>'.
|
||||
$descs.
|
||||
'</strong>'.
|
||||
$descs.
|
||||
'</div>'.
|
||||
$comment_block.
|
||||
'</div>');
|
||||
|
|
|
@ -9,10 +9,14 @@
|
|||
}
|
||||
|
||||
.maniphest-transaction-header {
|
||||
background: #e0e0e0;
|
||||
background: #e6e6e6;
|
||||
padding: 4px 1em;
|
||||
}
|
||||
|
||||
.maniphest-transaction-header a {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.maniphest-transaction-detail-view {
|
||||
margin-left: 54px;
|
||||
border: 1px solid #bbbbbb;
|
||||
|
@ -31,6 +35,8 @@
|
|||
background: #f3f3f3;
|
||||
}
|
||||
|
||||
|
||||
.maniphest-task-description p,
|
||||
.maniphest-transaction-comments p {
|
||||
margin: .25em 0 .5em;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue