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

Dashboard View for Feed

Summary: A basic rendering of feed in dashboards

Test Plan:
built a feed in dashboards, viewed it as my homepage.

{F157119}

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+46 -4
+4 -4
resources/celerity/map.php
··· 66 66 'rsrc/css/application/diffusion/diffusion-icons.css' => '384a0f7d', 67 67 'rsrc/css/application/diffusion/diffusion-source.css' => '66fdf661', 68 68 'rsrc/css/application/directory/phabricator-jump-nav.css' => 'f0c5e726', 69 - 'rsrc/css/application/feed/feed.css' => '0d17c209', 69 + 'rsrc/css/application/feed/feed.css' => '02463b16', 70 70 'rsrc/css/application/files/global-drag-and-drop.css' => '697324ad', 71 71 'rsrc/css/application/flag/flag.css' => '5337623f', 72 72 'rsrc/css/application/harbormaster/harbormaster.css' => 'cec833b7', ··· 114 114 'rsrc/css/font/font-awesome.css' => '73d075c3', 115 115 'rsrc/css/font/font-source-sans-pro.css' => '91d53463', 116 116 'rsrc/css/font/phui-font-icon-base.css' => '74cfb6a9', 117 - 'rsrc/css/layout/phabricator-action-header-view.css' => 'c14dfc57', 117 + 'rsrc/css/layout/phabricator-action-header-view.css' => '589371fe', 118 118 'rsrc/css/layout/phabricator-action-list-view.css' => 'dcd9875f', 119 119 'rsrc/css/layout/phabricator-crumbs-view.css' => '6a23399c', 120 120 'rsrc/css/layout/phabricator-filetree-view.css' => 'a8c86ace', ··· 689 689 'paste-css' => 'aa1767d1', 690 690 'path-typeahead' => 'f7fc67ec', 691 691 'people-profile-css' => 'ba7b2762', 692 - 'phabricator-action-header-view-css' => 'c14dfc57', 692 + 'phabricator-action-header-view-css' => '589371fe', 693 693 'phabricator-action-list-view-css' => 'dcd9875f', 694 694 'phabricator-application-launch-view-css' => 'd290ba21', 695 695 'phabricator-busy' => '6453c869', ··· 702 702 'phabricator-drag-and-drop-file-upload' => 'ae6abfba', 703 703 'phabricator-draggable-list' => '1681c4d4', 704 704 'phabricator-fatal-config-template-css' => '25d446d6', 705 - 'phabricator-feed-css' => '0d17c209', 705 + 'phabricator-feed-css' => '02463b16', 706 706 'phabricator-file-upload' => 'a4ae61bf', 707 707 'phabricator-filetree-view-css' => 'a8c86ace', 708 708 'phabricator-flag-css' => '5337623f',
+34
webroot/rsrc/css/application/feed/feed.css
··· 51 51 .phabricator-public-feed-frame .phui-feed-wrap { 52 52 border: none; 53 53 } 54 + 55 + /** Dashboards **/ 56 + 57 + .dashboard-panel .phabricator-feed-frame { 58 + background: #fff; 59 + margin: 0; 60 + border-left: 1px solid {$lightgreyborder}; 61 + border-right: 1px solid {$lightgreyborder}; 62 + border-bottom: 1px solid {$greyborder}; 63 + } 64 + 65 + .dashboard-panel .phabricator-feed-frame .phabricator-action-header { 66 + background: #f7f7f7; 67 + } 68 + 69 + .dashboard-panel .phabricator-feed-frame .phabricator-action-header-title { 70 + font-size: 13px; 71 + margin-left: 8px; 72 + margin-bottom: 0; 73 + } 74 + 75 + .dashboard-panel .phabricator-feed-frame .phui-feed-story { 76 + border: none; 77 + border-bottom: 1px solid {$thinblueborder}; 78 + margin-bottom: 0; 79 + } 80 + 81 + .dashboard-panel .phabricator-feed-frame .phui-feed-story-foot { 82 + background: #fff; 83 + } 84 + 85 + .dashboard-panel .phabricator-feed-frame .phabricator-feed-story-date-separator { 86 + margin-top: 0; 87 + }
+8
webroot/rsrc/css/layout/phabricator-action-header-view.css
··· 62 62 width: 16px; 63 63 margin-right: 4px; 64 64 } 65 + 66 + /** Dashboards **/ 67 + 68 + .dashboard-panel .phabricator-action-header.gradient-grey-header { 69 + border: 1px solid {$lightgreyborder}; 70 + border-top-left-radius: 5px; 71 + border-top-right-radius: 5px; 72 + }