@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 71 lines 1.7 kB view raw
1/** 2 * @provides inline-comment-summary-css 3 */ 4 5.transaction-comment + .phabricator-inline-summary-table { 6 margin-top: 8px; 7} 8 9.phabricator-inline-summary-table { 10 border-collapse: collapse; 11 border-style: hidden; 12 width: 100%; 13 margin-top: -16px; 14} 15 16.phabricator-inline-summary-table .inline-comment-summary-table-header { 17 font-weight: bold; 18 padding: 16px 1px 8px; 19 color: {$blacktext}; 20 border-bottom: 1px solid {$thinblueborder}; 21} 22 23.phabricator-inline-summary-table .inline-table-dolumn { 24 padding: 4px 8px; 25 white-space: nowrap; 26 color: {$darkbluetext}; 27 background: {$page.content}; 28} 29 30.phabricator-inline-summary-table td.inline-line-number { 31 padding: 0; 32 width: 100px; 33 white-space: nowrap; 34 background: {$lightgreybackground}; 35 font-family: "Menlo", "Consolas", monospace; 36 font-size: {$smallestfontsize}; 37 color: {$bluetext}; 38 border-right: 1px solid {$thinblueborder}; 39} 40 41.phabricator-inline-summary-table td.inline-which-diff { 42 color: {$greytext}; 43 width: 120px; 44} 45 46.phabricator-inline-summary-table td.inline-summary-content { 47 vertical-align: top; 48 white-space: normal; 49} 50 51/* NOTE: These two rules provide a larger hit target for clicking line numbers 52 (by letting you click the entire cell) and a visual indicator that you're on 53 target (by highlighting the entire cell). */ 54 55.phabricator-inline-summary-table td.inline-line-number a.num { 56 padding: 4px 8px; 57 display: block; 58 color: {$bluetext}; 59} 60 61.phabricator-inline-summary-table td.inline-line-number:hover a.num { 62 background: rgba(150,150,150,.1); 63 text-decoration: none; 64 color: {$darkbluetext}; 65} 66 67.phui-timeline-core-content .phabricator-inline-summary:first-child { 68 border: none; 69 margin-top: 0; 70 padding-top: 0; 71}