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

Add a little style to Phriction ToC menu

Summary: Adds some indentation and color. Ref T9868.

Test Plan: A long page with multiple indentation levels.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9868

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

+26 -5
+2 -2
resources/celerity/map.php
··· 147 147 'rsrc/css/phui/phui-comment-panel.css' => 'f50152ad', 148 148 'rsrc/css/phui/phui-crumbs-view.css' => '6ece3bbb', 149 149 'rsrc/css/phui/phui-curtain-view.css' => '55dd0e59', 150 - 'rsrc/css/phui/phui-document-pro.css' => '58199f99', 150 + 'rsrc/css/phui/phui-document-pro.css' => 'bb18da6b', 151 151 'rsrc/css/phui/phui-document-summary.css' => '9ca48bdf', 152 152 'rsrc/css/phui/phui-document.css' => 'c32e8dec', 153 153 'rsrc/css/phui/phui-feed-story.css' => '44a9c8e9', ··· 851 851 'phui-curtain-view-css' => '55dd0e59', 852 852 'phui-document-summary-view-css' => '9ca48bdf', 853 853 'phui-document-view-css' => 'c32e8dec', 854 - 'phui-document-view-pro-css' => '58199f99', 854 + 'phui-document-view-pro-css' => 'bb18da6b', 855 855 'phui-feed-story-css' => '44a9c8e9', 856 856 'phui-font-icon-base-css' => '870a7360', 857 857 'phui-fontkit-css' => '1320ed01',
+24 -3
webroot/rsrc/css/phui/phui-document-pro.css
··· 84 84 border: 1px solid {$lightgreyborder}; 85 85 border-radius: 3px; 86 86 box-shadow: {$dropshadow}; 87 - width: 200px; 87 + width: 260px; 88 88 position: absolute; 89 89 z-index: 30; 90 90 background-color: #fff; ··· 114 114 } 115 115 116 116 .phui-document-view-pro .phui-document-toc-content { 117 - margin: 4px 12px; 117 + margin: 8px 16px; 118 118 } 119 119 120 120 .phui-document-view-pro .phui-document-toc-header { 121 121 font-weight: bold; 122 122 color: {$bluetext}; 123 123 margin-bottom: 8px; 124 + text-transform: uppercase; 125 + font-size: {$smallerfontsize}; 124 126 } 125 127 126 128 .phui-document-view-pro .phui-document-toc-content li { 127 - margin: 4px 8px; 129 + margin: 4px 8px 4px 0; 130 + } 131 + 132 + .phui-document-view-pro .phui-document-toc-content a { 133 + padding: 2px 0; 134 + display: block; 135 + text-decoration: none; 136 + color: {$darkbluetext}; 137 + text-overflow: ellipsis; 138 + overflow: hidden; 139 + white-space: nowrap; 140 + } 141 + 142 + .phui-document-view-pro .phui-document-toc-content a:hover { 143 + color: {$anchor}; 144 + text-decoration: underline; 145 + } 146 + 147 + .phui-document-view-pro .phui-document-toc-content li + ul { 148 + margin: 4px 0 4px 8px; 128 149 } 129 150 130 151 .phui-document-view-pro .phui-document-content .phabricator-remarkup {