@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor Ponder Comment tweaks

Summary: Makes the New Comment, See Comments more obviously placed to find.

Test Plan: Review new CSS, answer question, comment, etc.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D14043

+15 -12
+2 -2
resources/celerity/map.php
··· 93 93 'rsrc/css/application/policy/policy-edit.css' => '815c66f7', 94 94 'rsrc/css/application/policy/policy-transaction-detail.css' => '82100a43', 95 95 'rsrc/css/application/policy/policy.css' => '957ea14c', 96 - 'rsrc/css/application/ponder/ponder-view.css' => 'bef48f86', 96 + 'rsrc/css/application/ponder/ponder-view.css' => '7b0df4da', 97 97 'rsrc/css/application/projects/project-icon.css' => '4e3eaa5a', 98 98 'rsrc/css/application/releeph/releeph-core.css' => '9b3c5733', 99 99 'rsrc/css/application/releeph/releeph-preview-branch.css' => 'b7a6f4a5', ··· 811 811 'policy-css' => '957ea14c', 812 812 'policy-edit-css' => '815c66f7', 813 813 'policy-transaction-detail-css' => '82100a43', 814 - 'ponder-view-css' => 'bef48f86', 814 + 'ponder-view-css' => '7b0df4da', 815 815 'project-icon-css' => '4e3eaa5a', 816 816 'raphael-core' => '51ee6b43', 817 817 'raphael-g' => '40dde778',
+2 -2
src/applications/ponder/view/PonderFooterView.php
··· 37 37 38 38 if ($this->count == 0) { 39 39 $icon = id(new PHUIIconView()) 40 - ->setIconFont('fa-plus-circle msr'); 40 + ->setIconFont('fa-comments msr'); 41 41 $text = pht('Add a Comment'); 42 42 } else { 43 43 $icon = id(new PHUIIconView()) ··· 78 78 $actions[] = $hide_action; 79 79 $actions[] = $show_action; 80 80 81 - return array($this->actions, $actions); 81 + return array($actions, $this->actions); 82 82 } 83 83 84 84 }
+11 -8
webroot/rsrc/css/application/ponder/ponder-view.css
··· 54 54 } 55 55 56 56 .ponder-footer-view { 57 - margin: 0 4px -4px; 58 - text-align: right; 57 + margin: 0 0 -4px; 58 + text-align: left; 59 59 } 60 60 61 61 .ponder-footer-view .ponder-footer-action { 62 62 padding: 4px 8px; 63 - margin-left: 8px; 64 - color: {$bluetext}; 63 + margin-right: 8px; 64 + color: {$anchor}; 65 65 display: inline-block; 66 66 background-color: rgba(71, 87, 120, 0.06); 67 - font-size: {$smallerfontsize}; 68 67 } 69 68 70 69 .ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful { 71 70 background-color: {$lightyellow}; 71 + color: {$bluetext}; 72 + } 73 + 74 + .ponder-footer-view .ponder-footer-action.ponder-footer-action-helpful 75 + .phui-icon-view { 76 + color: {$bluetext}; 72 77 } 73 78 74 79 .ponder-footer-view .ponder-footer-action .phui-icon-view { 75 - color: {$bluetext}; 76 - font-size: {$smallerfontsize}; 80 + color: {$anchor}; 77 81 } 78 82 79 83 .ponder-footer-view a:hover { 80 84 text-decoration: none; 81 - color: {$darkbluetext}; 82 85 background-color: rgba(71, 87, 120, 0.10); 83 86 }