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

Awesomify dragging stuff on workboards

Summary: Such fun. Many pixels. Professional PM. Much Business.

Test Plan: Move stuff in and around workboards

Reviewers: epriestley, btrahan

Reviewed By: btrahan

CC: Korvin, epriestley, aran

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

+21 -10
+5 -5
resources/celerity/map.php
··· 7 7 return array( 8 8 'names' => 9 9 array( 10 - 'core.pkg.css' => '69c32d07', 10 + 'core.pkg.css' => '2eafddad', 11 11 'core.pkg.js' => 'c907bd96', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 13 'differential.pkg.css' => '5a65a762', ··· 136 136 'rsrc/css/phui/phui-info-panel.css' => '27ea50a1', 137 137 'rsrc/css/phui/phui-list.css' => '2edb76cf', 138 138 'rsrc/css/phui/phui-object-box.css' => '4f916b80', 139 - 'rsrc/css/phui/phui-object-item-list-view.css' => 'c177f587', 139 + 'rsrc/css/phui/phui-object-item-list-view.css' => 'eb579d6c', 140 140 'rsrc/css/phui/phui-pinboard-view.css' => '53c5fca0', 141 141 'rsrc/css/phui/phui-property-list-view.css' => 'dbf53b12', 142 142 'rsrc/css/phui/phui-remarkup-preview.css' => '19ad512b', ··· 145 145 'rsrc/css/phui/phui-tag-view.css' => '295d81c4', 146 146 'rsrc/css/phui/phui-text.css' => '23e9b4b7', 147 147 'rsrc/css/phui/phui-workboard-view.css' => 'bf70dd2e', 148 - 'rsrc/css/phui/phui-workpanel-view.css' => 'ffb31e99', 148 + 'rsrc/css/phui/phui-workpanel-view.css' => '6f8527f6', 149 149 'rsrc/css/sprite-actions.css' => '4557baf8', 150 150 'rsrc/css/sprite-apps-large.css' => 'e37c2ff1', 151 151 'rsrc/css/sprite-apps-xlarge.css' => 'db66c878', ··· 743 743 'phui-info-panel-css' => '27ea50a1', 744 744 'phui-list-view-css' => '2edb76cf', 745 745 'phui-object-box-css' => '4f916b80', 746 - 'phui-object-item-list-view-css' => 'c177f587', 746 + 'phui-object-item-list-view-css' => 'eb579d6c', 747 747 'phui-pinboard-view-css' => '53c5fca0', 748 748 'phui-property-list-view-css' => 'dbf53b12', 749 749 'phui-remarkup-preview-css' => '19ad512b', ··· 752 752 'phui-tag-view-css' => '295d81c4', 753 753 'phui-text-css' => '23e9b4b7', 754 754 'phui-workboard-view-css' => 'bf70dd2e', 755 - 'phui-workpanel-view-css' => 'ffb31e99', 755 + 'phui-workpanel-view-css' => '6f8527f6', 756 756 'policy-css' => '957ea14c', 757 757 'policy-edit-css' => '05cca26a', 758 758 'ponder-comment-table-css' => '6cdccea7',
+4 -3
webroot/rsrc/css/phui/phui-object-item-list-view.css
··· 537 537 538 538 .drag-ghost { 539 539 position: relative; 540 - border: 1px dashed #aaaaaa; 541 - background: #f9f9f9; 542 - margin: 4px; 540 + border: 1px dashed #fff; 541 + background: rgba(255,255,255,.5); 542 + margin-bottom: 4px; 543 + border-radius: 3px; 543 544 } 544 545 545 546 .drag-dragging {
+12 -2
webroot/rsrc/css/phui/phui-workpanel-view.css
··· 66 66 } 67 67 68 68 .project-column-empty { 69 - /* TODO: Use this to put some kind of reasonable null state in the columns? */ 70 - background: {$red}; 69 + background: rgba(255,255,255,.4); 70 + border-radius: 3px; 71 + margin-bottom: 4px; 72 + border: 1px dashed #fff; 73 + } 74 + 75 + .project-column-empty .drag-ghost { 76 + display: none; 77 + } 78 + 79 + .project-column-empty.drag-target-list { 80 + background: rgba(255,255,255,.7); 71 81 }