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

Fix CSS Remarkup rule bleed

Summary: This margin rule is bleeding in some cases where we wrap `phabricator-remarkup` around a large amount of other content (like Dialogs). This restricts the rule to the first direct child.

Test Plan: Go to a workboard, edit a task, see proper alignment of icons.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+4 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'a79276eb', 10 + 'core.pkg.css' => '80728a82', 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' => '82f4e4c5', 107 + 'rsrc/css/core/remarkup.css' => '2cdbf272', 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', ··· 740 740 'phabricator-object-selector-css' => '85ee8ce6', 741 741 'phabricator-phtize' => 'd254d646', 742 742 'phabricator-prefab' => '6920d200', 743 - 'phabricator-remarkup-css' => '82f4e4c5', 743 + 'phabricator-remarkup-css' => '2cdbf272', 744 744 'phabricator-search-results-css' => '7dea472c', 745 745 'phabricator-shaped-request' => '7cbe244b', 746 746 'phabricator-side-menu-view-css' => 'bec2458e',
+1 -1
webroot/rsrc/css/core/remarkup.css
··· 363 363 padding-top: 0; 364 364 } 365 365 366 - body .phabricator-remarkup *:first-child, 366 + body .phabricator-remarkup > *:first-child, 367 367 body .phabricator-remarkup .remarkup-header + * { 368 368 margin-top: 0; 369 369 }