@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 54 lines 1.0 kB view raw
1/** 2 * @provides phui-document-summary-view-css 3 */ 4 5.phui-document-summary-view { 6 margin-top: 8px; 7 border-bottom: 1px solid rgba({$alphagrey},.1); 8} 9 10.phui-document-summary-view.is-draft { 11 opacity: 0.5; 12} 13 14body .phui-document-view .phui-document-summary-view h2.remarkup-header { 15 margin: 0; 16 padding: 0; 17} 18 19.phui-document-summary-view h2.remarkup-header a { 20 color: {$blacktext}; 21} 22 23.phui-document-summary-view h2.remarkup-header a:hover { 24 color: {$violet}; 25 text-decoration: none; 26} 27 28.phui-document-view .phui-document-summary-body div.phabricator-remarkup { 29 padding-bottom: 4px; 30} 31 32a.phui-document-read-more { 33 color: {$lightgreytext}; 34 font-size: {$smallerfontsize}; 35 display: block; 36 padding-bottom: 12px; 37} 38 39a.phui-document-read-more:hover { 40 color: {$violet}; 41} 42 43.phui-document-summary-subtitle { 44 color: {$lightgreytext}; 45 font-size: {$normalfontsize}; 46} 47 48.phui-document-summary-subtitle a { 49 color: {$darkbluetext}; 50} 51 52.phui-document-summary-subtitle a:hover { 53 color: {$violet}; 54}