@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.

[Redesign] Fallout cleanup from Merge

Summary: Ref T8099, I //think// this was just a bum merge, but maybe I missed a commit too.

Test Plan: Poked around a number of new headers and styles, uiexamples, dialogs, etc.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8099

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

+1 -70
-1
src/applications/maniphest/view/ManiphestTaskResultListView.php
··· 80 80 $task_list->setHandles($handles); 81 81 82 82 $header = id(new PHUIHeaderView()) 83 - ->addClass('maniphest-task-group-header') 84 83 ->addSigil('task-group') 85 84 ->setMetadata(array('priority' => head($list)->getPriority())) 86 85 ->setHeader(pht('%s (%s)', $group, new PhutilNumber(count($list))));
+1 -12
webroot/rsrc/css/aphront/dialog-view.css
··· 19 19 } 20 20 21 21 .aphront-dialog-head { 22 - padding: 4px 12px 0 12px; 22 + padding: 12px 12px 0 12px; 23 23 background: #fff; 24 24 border-top-left-radius: 3px; 25 25 border-top-right-radius: 3px; 26 - } 27 - 28 - .aphront-dialog-head .phui-action-header { 29 - border-bottom: 1px solid {$thinblueborder}; 30 - padding: 0 0 4px 0; 31 - white-space: nowrap; 32 26 } 33 27 34 28 .aphront-dialog-flush .aphront-dialog-body { ··· 107 101 108 102 .aphront-access-dialog { 109 103 width: 50%; 110 - } 111 - 112 - .aphront-dialog-view ul { 113 - margin: 12px 24px; 114 - list-style: circle; 115 104 } 116 105 117 106 .aphront-policy-rejection {
-24
webroot/rsrc/css/application/conpherence/durable-column.css
··· 101 101 .phabricator-dark-menu .phui-list-item-type-link { 102 102 background: transparent; 103 103 } 104 - .device-desktop 105 - .conpherence-durable-column-header 106 - .phabricator-application-menu 107 - .core-menu-item.phui-list-item-view:hover 108 - .phui-list-item-icon.phui-font-fa { 109 - color: #fff; 110 - } 111 104 .conpherence-durable-column-header 112 105 .phabricator-application-menu 113 106 .phui-list-item-view.core-menu-item { 114 107 display: block; 115 - } 116 - .device-desktop 117 - .conpherence-durable-column-header 118 - .phabricator-application-menu 119 - .core-menu-item.phui-list-item-view:hover { 120 - background-color: rgba(0,0,0,.33); 121 - border-radius: 3px; 122 - } 123 - .conpherence-durable-column-header 124 - .phabricator-application-menu .phui-list-item-icon.phui-font-fa { 125 - font-size: 20px; 126 - height: 20px; 127 - width: 20px; 128 - color: rgba(255,255,255,.8); 129 - margin: 8px; 130 - text-align: center; 131 - vertical-align: middle; 132 108 } 133 109 134 110 .conpherence-durable-column-header {
-33
webroot/rsrc/css/application/maniphest/task-summary.css
··· 7 7 display: none; 8 8 } 9 9 10 - .maniphest-task-group-header { 11 - font-size: 16px; 12 - font-weight: normal; 13 - color: {$darkbluetext}; 14 - padding: 0 0 8px 0; 15 - } 16 - 17 - .maniphest-total-result-count { 18 - text-align: right; 19 - padding: 5px 20px 0 0; 20 - font-size: 11px; 21 - color: {$greytext}; 22 - } 23 - 24 - .device-phone .maniphest-total-result-count { 25 - padding-right: 5px; 26 - } 27 - 28 10 .maniphest-batch-editor-layout { 29 11 width: 100%; 30 12 } ··· 54 36 .maniphest-board-link { 55 37 color: {$bluetext}; 56 38 } 57 - 58 - /* - Dashboards ------------------------------------------------------------ */ 59 - 60 - .dashboard-panel .maniphest-list-container { 61 - padding: 0; 62 - } 63 - 64 - .dashboard-panel .maniphest-task-group + .maniphest-task-group { 65 - padding-top: 0; 66 - } 67 - 68 - .dashboard-panel .maniphest-task-group-header { 69 - border-left: 1px solid {$lightblueborder}; 70 - border-right: 1px solid {$lightblueborder}; 71 - }