mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Add space under comment previews
Summary: Fixes T11166. Adds some class, and space to the preview widget. Test Plan: Test Maniphest, Ponder, etc, without a footer. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T11166 Differential Revision: https://secure.phabricator.com/D16168
This commit is contained in:
parent
60c55387ab
commit
3bb3170a2c
3 changed files with 8 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
|||
*/
|
||||
return array(
|
||||
'names' => array(
|
||||
'core.pkg.css' => '2168daaf',
|
||||
'core.pkg.css' => 'cf375d17',
|
||||
'core.pkg.js' => 'f2139810',
|
||||
'darkconsole.pkg.js' => 'e7393ebb',
|
||||
'differential.pkg.css' => 'b3eea3f5',
|
||||
|
@ -155,7 +155,7 @@ return array(
|
|||
'rsrc/css/phui/phui-spacing.css' => '042804d6',
|
||||
'rsrc/css/phui/phui-status.css' => 'd5263e49',
|
||||
'rsrc/css/phui/phui-tag-view.css' => '6bbd83e2',
|
||||
'rsrc/css/phui/phui-timeline-view.css' => '8ea41b25',
|
||||
'rsrc/css/phui/phui-timeline-view.css' => 'c3782437',
|
||||
'rsrc/css/phui/phui-two-column-view.css' => '9fb86c85',
|
||||
'rsrc/css/phui/workboards/phui-workboard-color.css' => 'ac6fe6a7',
|
||||
'rsrc/css/phui/workboards/phui-workboard.css' => 'e6d89647',
|
||||
|
@ -863,7 +863,7 @@ return array(
|
|||
'phui-status-list-view-css' => 'd5263e49',
|
||||
'phui-tag-view-css' => '6bbd83e2',
|
||||
'phui-theme-css' => '027ba77e',
|
||||
'phui-timeline-view-css' => '8ea41b25',
|
||||
'phui-timeline-view-css' => 'c3782437',
|
||||
'phui-two-column-view-css' => '9fb86c85',
|
||||
'phui-workboard-color-css' => 'ac6fe6a7',
|
||||
'phui-workboard-view-css' => 'e6d89647',
|
||||
|
|
|
@ -343,6 +343,7 @@ class PhabricatorApplicationTransactionCommentView extends AphrontView {
|
|||
array(
|
||||
'id' => $this->getPreviewPanelID(),
|
||||
'style' => 'display: none',
|
||||
'class' => 'phui-comment-preview-view',
|
||||
),
|
||||
$preview);
|
||||
}
|
||||
|
|
|
@ -417,3 +417,7 @@ a.phui-timeline-menu .phui-icon-view {
|
|||
.phui-timeline-badges .phui-badge-mini .phui-icon-view {
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
.phui-comment-preview-view {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue