@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 some orphan CSS selectors in differential/table-of-contents.css

Summary: `diff-star-*` seem to be unused since their usage was removed in https://we.phorge.it/rPd6ed9392d4e06a815b95000214ea3c2491b1795b

Test Plan: * Grep the code via `grep --exclude="*.css" -R 'diff-star-' .` and find no use.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

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

+3 -25
+3 -3
resources/celerity/map.php
··· 12 12 'core.pkg.css' => 'bb4f086c', 13 13 'core.pkg.js' => '63f896ec', 14 14 'dark-console.pkg.js' => '187792c2', 15 - 'differential.pkg.css' => 'db7c5008', 15 + 'differential.pkg.css' => '4c951b31', 16 16 'differential.pkg.js' => '46fcb3af', 17 17 'diffusion.pkg.css' => '91e57dc1', 18 18 'diffusion.pkg.js' => '78c9885d', ··· 65 65 'rsrc/css/application/differential/core.css' => '7300a73e', 66 66 'rsrc/css/application/differential/phui-inline-comment.css' => 'bcbaff3d', 67 67 'rsrc/css/application/differential/revision-history.css' => '237a2979', 68 - 'rsrc/css/application/differential/table-of-contents.css' => 'bba788b9', 68 + 'rsrc/css/application/differential/table-of-contents.css' => '49256a9e', 69 69 'rsrc/css/application/diffusion/diffusion-icons.css' => 'a1271364', 70 70 'rsrc/css/application/diffusion/diffusion-readme.css' => '25a7ae42', 71 71 'rsrc/css/application/diffusion/diffusion-repository.css' => 'd9f8ff47', ··· 543 543 'differential-core-view-css' => '7300a73e', 544 544 'differential-revision-add-comment-css' => '7e5900d9', 545 545 'differential-revision-history-css' => '237a2979', 546 - 'differential-table-of-contents-css' => 'bba788b9', 546 + 'differential-table-of-contents-css' => '49256a9e', 547 547 'diffusion-css' => 'e46232d6', 548 548 'diffusion-icons-css' => 'a1271364', 549 549 'diffusion-readme-css' => '25a7ae42',
-22
webroot/rsrc/css/application/differential/table-of-contents.css
··· 45 45 margin-left: 4px; 46 46 } 47 47 48 - .diff-star-none { 49 - color: {$greytext}; 50 - } 51 - 52 - .diff-star-okay { 53 - color: {$orange}; 54 - } 55 - 56 - /* TODO: 'warn' and 'fail' are both red, but we can't make 'warn' yellow since 57 - 'okay' is a "gold star". */ 58 - .diff-star-warn { 59 - color: {$red}; 60 - } 61 - 62 - .diff-star-fail { 63 - color: {$red}; 64 - } 65 - 66 - .diff-star-skip { 67 - color: {$indigo}; 68 - } 69 - 70 48 .differential-toc table td em { 71 49 color: {$greytext}; 72 50 }