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

Scope syntax css rules to direct descendants only in diffs

Summary: Fixes T11641. We're overbroad here (and this may need more scoping?) but this seems to resolve the immediate issue.

Test Plan: Upload a few diffs and ask disabled accounts to comment on them inline.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T11641

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

+7 -7
+6 -6
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '82aca405', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 - 'core.pkg.css' => 'acd257dc', 12 + 'core.pkg.css' => '87c434ee', 13 13 'core.pkg.js' => '021685f1', 14 14 'darkconsole.pkg.js' => 'e7393ebb', 15 15 'differential.pkg.css' => '90b30783', ··· 109 109 'rsrc/css/application/uiexample/example.css' => '528b19de', 110 110 'rsrc/css/core/core.css' => '9f4cb463', 111 111 'rsrc/css/core/remarkup.css' => '17c0fb37', 112 - 'rsrc/css/core/syntax.css' => '769d3498', 112 + 'rsrc/css/core/syntax.css' => 'cae95e89', 113 113 'rsrc/css/core/z-index.css' => '5e72c4e0', 114 114 'rsrc/css/diviner/diviner-shared.css' => '896f1d43', 115 115 'rsrc/css/font/font-awesome.css' => 'e838e088', ··· 903 903 'sprite-login-css' => '587d92d7', 904 904 'sprite-tokens-css' => '9cdfd599', 905 905 'syntax-default-css' => '9923583c', 906 - 'syntax-highlighting-css' => '769d3498', 906 + 'syntax-highlighting-css' => 'cae95e89', 907 907 'tokens-css' => '3d0f239e', 908 908 'typeahead-browse-css' => '8904346a', 909 909 'unhandled-exception-css' => '4c96257a', ··· 1436 1436 'phabricator-shaped-request', 1437 1437 'conpherence-thread-manager', 1438 1438 ), 1439 - '769d3498' => array( 1440 - 'syntax-default-css', 1441 - ), 1442 1439 '76b9fc3e' => array( 1443 1440 'javelin-behavior', 1444 1441 'javelin-stratcom', ··· 1999 1996 'javelin-behavior-device', 2000 1997 'phabricator-title', 2001 1998 'phabricator-favicon', 1999 + ), 2000 + 'cae95e89' => array( 2001 + 'syntax-default-css', 2002 2002 ), 2003 2003 'ccf1cbf8' => array( 2004 2004 'javelin-install',
+1 -1
webroot/rsrc/css/core/syntax.css
··· 11 11 margin-right: 1px; 12 12 } 13 13 14 - .remarkup-code td span { 14 + .remarkup-code td > span { 15 15 display: inline; 16 16 word-break: break-all; 17 17 }