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

at recaptime-dev/main 44 lines 773 B view raw
1/** 2 * @provides phui-status-list-view-css 3 */ 4 5.phui-status-list-view { 6 width: 100%; 7} 8 9.phui-status-list-view .phui-icon-view { 10 width: 14px; 11 height: 14px; 12 margin: 2px 4px 2px 0; 13} 14 15.phui-status-item-target { 16 padding: 1px 8px; 17 white-space: nowrap; 18} 19 20.phui-status-item-note { 21 width: 100%; 22 color: {$greytext}; 23 line-height: 14px; 24 padding: 3px 4px; 25} 26 27.phui-status-item-highlighted td { 28 background-color: {$sh-yellowbackground}; 29 border-radius: 3px; 30} 31 32.phui-status-item-exiled td { 33 background-color: {$lightredbackground}; 34 border-radius: 3px; 35} 36 37.phui-status-list-view td a { 38 color: {$darkbluetext}; 39} 40 41.phui-status-item-highlighted td.phui-status-item-note, 42.phui-status-item-exiled td.phui-status-item-note { 43 background-color: transparent; 44}