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

Maybe possibly really fix :last-child in phabricator-remarkup

Summary: This rule should correctly target the last //direct// descendent child of .phabricator-remarkup, and not grandchildren. Fixes T9833

Test Plan: Test commenting, documents, descriptions, and other remarkup areas. All spacing seems consistent.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T9833

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

+4 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '22a4e620', 10 + 'core.pkg.css' => '3f4a6760', 11 11 'core.pkg.js' => '47dc9ebb', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 104 104 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 105 105 'rsrc/css/application/uiexample/example.css' => '528b19de', 106 106 'rsrc/css/core/core.css' => '78e8d7ea', 107 - 'rsrc/css/core/remarkup.css' => 'b080287b', 107 + 'rsrc/css/core/remarkup.css' => '306fb6dc', 108 108 'rsrc/css/core/syntax.css' => '9fd11da8', 109 109 'rsrc/css/core/z-index.css' => '57ddcaa2', 110 110 'rsrc/css/diviner/diviner-shared.css' => 'aa3656aa', ··· 749 749 'phabricator-object-selector-css' => '85ee8ce6', 750 750 'phabricator-phtize' => 'd254d646', 751 751 'phabricator-prefab' => '6920d200', 752 - 'phabricator-remarkup-css' => 'b080287b', 752 + 'phabricator-remarkup-css' => '306fb6dc', 753 753 'phabricator-search-results-css' => '7dea472c', 754 754 'phabricator-shaped-request' => '7cbe244b', 755 755 'phabricator-side-menu-view-css' => 'bec2458e',
+1 -1
webroot/rsrc/css/core/remarkup.css
··· 371 371 margin-top: 0; 372 372 } 373 373 374 - body div.phabricator-remarkup:last-child { 374 + body div.phabricator-remarkup > *:last-child { 375 375 margin-bottom: 0; 376 376 } 377 377