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

Make Remarkup Notes not have margin as first or last child

Summary: When a NOTE is at the top or bottom of a document, there is extra unwanted space.

Test Plan:
Write a NOTE as the top of a Phriction document

{F311233}

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

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

+7 -5
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => 'd31eec13', 10 + 'core.pkg.css' => '44adcc42', 11 11 'core.pkg.js' => '23d653bb', 12 12 'darkconsole.pkg.js' => '8ab24e01', 13 13 'differential.pkg.css' => '380f07e5', ··· 105 105 'rsrc/css/application/tokens/tokens.css' => '3d0f239e', 106 106 'rsrc/css/application/uiexample/example.css' => '528b19de', 107 107 'rsrc/css/core/core.css' => '8f9b9588', 108 - 'rsrc/css/core/remarkup.css' => 'de20f873', 108 + 'rsrc/css/core/remarkup.css' => 'e8e5a324', 109 109 'rsrc/css/core/syntax.css' => '56c1ba38', 110 110 'rsrc/css/core/z-index.css' => '40eb7003', 111 111 'rsrc/css/diviner/diviner-shared.css' => '38813222', ··· 738 738 'phabricator-phtize' => 'd254d646', 739 739 'phabricator-prefab' => '72da38cc', 740 740 'phabricator-profile-css' => 'b4896815', 741 - 'phabricator-remarkup-css' => 'de20f873', 741 + 'phabricator-remarkup-css' => 'e8e5a324', 742 742 'phabricator-search-results-css' => 'f240504c', 743 743 'phabricator-shaped-request' => '7cbe244b', 744 744 'phabricator-side-menu-view-css' => '7e8c6341',
+4 -2
webroot/rsrc/css/core/remarkup.css
··· 330 330 .phabricator-remarkup h5.remarkup-header:first-child, 331 331 .phabricator-remarkup h6.remarkup-header:first-child, 332 332 .phabricator-remarkup blockquote:first-child, 333 - .phabricator-remarkup table.remarkup-table:first-child { 333 + .phabricator-remarkup table.remarkup-table:first-child, 334 + .phabricator-remarkup .remarkup-note:first-child { 334 335 margin-top: 0; 335 336 } 336 337 ··· 345 346 .phabricator-remarkup h5.remarkup-header:last-child, 346 347 .phabricator-remarkup h6.remarkup-header:last-child, 347 348 .phabricator-remarkup blockquote:last-child, 348 - .phabricator-remarkup table.remarkup-table:last-child { 349 + .phabricator-remarkup table.remarkup-table:last-child, 350 + .phabricator-remarkup .remarkup-note:last-child { 349 351 margin-bottom: 0; 350 352 } 351 353