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

Remove orphan CSS selectors for differential-haunt-mode

Summary:
Added in rP29d8fc04e50b83fc7cf09f428ef905aa5e54e838.
Usage removed in rPb5722a99635adb513036b9741fccdfc61b5e4472.

Test Plan: Grep the code for "haunt". Get no results.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D25997

+4 -60
+4 -7
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '79a197f6', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'e756bc36', 12 + 'core.pkg.css' => 'e4b109cc', 13 13 'core.pkg.js' => '086da722', 14 14 'dark-console.pkg.js' => '187792c2', 15 - 'differential.pkg.css' => '197dafe9', 15 + 'differential.pkg.css' => 'db7c5008', 16 16 'differential.pkg.js' => '46fcb3af', 17 17 'diffusion.pkg.css' => '354279ea', 18 18 'diffusion.pkg.js' => '78c9885d', ··· 65 65 'rsrc/css/application/differential/changeset-view.css' => '979e688c', 66 66 'rsrc/css/application/differential/core.css' => '7300a73e', 67 67 'rsrc/css/application/differential/phui-inline-comment.css' => 'bcbaff3d', 68 - 'rsrc/css/application/differential/revision-comment.css' => '745647df', 69 68 'rsrc/css/application/differential/revision-history.css' => '237a2979', 70 69 'rsrc/css/application/differential/table-of-contents.css' => 'bba788b9', 71 70 'rsrc/css/application/diffusion/diffusion-icons.css' => 'e812add2', ··· 108 107 'rsrc/css/core/core.css' => '83d97073', 109 108 'rsrc/css/core/remarkup.css' => '03b6c819', 110 109 'rsrc/css/core/syntax.css' => '548567f6', 111 - 'rsrc/css/core/z-index.css' => '23a7d2e2', 110 + 'rsrc/css/core/z-index.css' => '56fbe5ba', 112 111 'rsrc/css/diviner/diviner-shared.css' => '4bd263b0', 113 112 'rsrc/css/font/font-awesome.css' => 'a8d83a0c', 114 113 'rsrc/css/font/font-lato.css' => '23631304', ··· 559 558 'differential-changeset-view-css' => '979e688c', 560 559 'differential-core-view-css' => '7300a73e', 561 560 'differential-revision-add-comment-css' => '7e5900d9', 562 - 'differential-revision-comment-css' => '745647df', 563 561 'differential-revision-history-css' => '237a2979', 564 562 'differential-table-of-contents-css' => 'bba788b9', 565 563 'diffusion-css' => 'e46232d6', ··· 802 800 'phabricator-title' => '43bc9360', 803 801 'phabricator-tooltip' => '83754533', 804 802 'phabricator-ui-example-css' => '549e220b', 805 - 'phabricator-zindex-css' => '23a7d2e2', 803 + 'phabricator-zindex-css' => '56fbe5ba', 806 804 'phame-css' => '209125c7', 807 805 'pholio-css' => '10ac89b5', 808 806 'pholio-edit-css' => '4df55b3b', ··· 2392 2390 'differential-changeset-view-css', 2393 2391 'differential-revision-history-css', 2394 2392 'differential-table-of-contents-css', 2395 - 'differential-revision-comment-css', 2396 2393 'differential-revision-add-comment-css', 2397 2394 'phabricator-object-selector-css', 2398 2395 'phabricator-content-source-view-css',
-1
resources/celerity/packages.php
··· 188 188 'differential-changeset-view-css', 189 189 'differential-revision-history-css', 190 190 'differential-table-of-contents-css', 191 - 'differential-revision-comment-css', 192 191 'differential-revision-add-comment-css', 193 192 'phabricator-object-selector-css', 194 193 'phabricator-content-source-view-css',
-47
webroot/rsrc/css/application/differential/revision-comment.css
··· 1 - /** 2 - * @provides differential-revision-comment-css 3 - */ 4 - 5 - /* Spooky haunted panel which floats on the bottom of the screen. 6 - Haunt modes are: 7 - 8 - - Mode 1: Just the comment box. 9 - - Mode 2: Comment box, comment preview, and inline comment previews. 10 - */ 11 - .differential-haunt-mode-1 .differential-add-comment-panel, 12 - .differential-haunt-mode-2 .differential-add-comment-panel { 13 - background-color: #fff; 14 - position: fixed; 15 - width: 100%; 16 - bottom: 0; 17 - right: 0; 18 - left: 0; 19 - overflow: auto; 20 - max-height: 375px; 21 - margin: 0; 22 - 23 - box-shadow: 0 0 4px #000; 24 - } 25 - 26 - .differential-haunt-mode-1 .differential-add-comment-panel .phui-box, 27 - .differential-haunt-mode-2 .differential-add-comment-panel .phui-box { 28 - margin: 0; 29 - border-width: 0; 30 - } 31 - 32 - .differential-haunt-mode-2 .differential-add-comment-panel { 33 - max-height: 75%; 34 - } 35 - 36 - .differential-haunt-mode-1 .differential-add-comment-panel .phui-header-shell, 37 - .differential-haunt-mode-2 .differential-add-comment-panel .phui-header-shell { 38 - display: none; 39 - } 40 - 41 - .differential-haunt-mode-1 .aphront-panel-preview { 42 - display: none; 43 - } 44 - 45 - .differential-haunt-mode-1 { 46 - padding-bottom: 250px; 47 - }
-5
webroot/rsrc/css/core/z-index.css
··· 89 89 z-index: 8; 90 90 } 91 91 92 - .differential-haunt-mode-1 .differential-add-comment-panel, 93 - .differential-haunt-mode-2 .differential-add-comment-panel { 94 - z-index: 8; 95 - } 96 - 97 92 .remarkup-assist-pinned { 98 93 z-index: 8; 99 94 }