@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 103 lines 2.3 kB view raw
1/** 2 * @provides phui-document-view-css 3 */ 4 5.phui-document-view { 6 margin-bottom: 16px; 7 border-radius: 3px; 8 position: relative; 9} 10 11.device-desktop .phui-document-view { 12 border: 1px solid {$lightblueborder}; 13 max-width: 960px; 14 margin: 16px auto; 15} 16 17.device-desktop .phui-document-fluid .phui-document-view { 18 max-width: none; 19 margin: 16px; 20} 21 22/* Fix so that Phriction Document preview is the same width as the document */ 23.device-desktop .phui-remarkup-preview .phui-document-view { 24 width: 800px; 25} 26 27.phui-document-content .phui-header-shell { 28 border-top: none; 29 border-bottom: 1px solid {$lightblueborder}; 30} 31 32.phui-document-content 33 .phui-header-shell.phui-header-no-background { 34 border-bottom: 1px solid {$thinblueborder}; 35 margin: 0 0 16px 0; 36} 37 38.phui-document-content 39 .phui-header-shell.phui-header-no-background 40 .phui-header-view { 41 padding: 8px 0 4px; 42} 43 44.legalpad .phui-document-content .phui-property-list-view { 45 border: none; 46 box-shadow: none; 47 border-radius: 3px; 48 margin: 16px 0 0 0; 49 background-color: {$bluebackground}; 50} 51 52.phui-document-content { 53 background: {$page.content}; 54} 55 56.phui-document-content .phabricator-remarkup { 57 padding: 16px; 58 font-size: 14px; 59} 60 61.phui-document-view.has-no-curtain 62 .phui-header-action-links .phui-mobile-menu { 63 display: block; 64} 65 66.device-phone .phui-document-content .phabricator-remarkup { 67 padding: 8px; 68} 69 70.phui-document-content .phabricator-remarkup .remarkup-code-block { 71 clear: both; 72 margin: 16px 0; 73} 74 75.phui-document-view .phui-info-severity-nodata { 76 background-color: {$lightgreybackground}; 77} 78 79.phui-document-view .phui-property-list-section-header { 80 padding: 20px 24px 0px; 81 border-top: none; 82} 83 84.phui-document-view .phui-property-list-text-content { 85 padding: 0 24px 4px; 86} 87 88.phui-document-view .PhabricatorMonospaced, 89.phui-document-view .phabricator-remarkup .remarkup-code-block .remarkup-code { 90 font: 12px/18px "Menlo", "Consolas", "Monaco", monospace; 91} 92 93.platform-windows .phui-document-view .PhabricatorMonospaced, 94.platform-windows .phui-document-view .phabricator-remarkup .remarkup-code-block 95 .remarkup-code { 96 font: 13px/18px "Menlo", "Consolas", "Monaco", monospace; 97} 98 99.phui-document-version-navigation { 100 text-align: center; 101 padding: 8px; 102 background-color: {$lightgreybackground}; 103}