@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 margin on blockquote paragraphs in Remarkup

Summary: This paragraph shouldn't get extra margin when inside a blockquote.

Test Plan: Quote some text, see less margin.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+7 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '3f4a6760', 10 + 'core.pkg.css' => '5e982028', 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' => '306fb6dc', 107 + 'rsrc/css/core/remarkup.css' => '88e1ebb6', 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' => '306fb6dc', 752 + 'phabricator-remarkup-css' => '88e1ebb6', 753 753 'phabricator-search-results-css' => '7dea472c', 754 754 'phabricator-shaped-request' => '7cbe244b', 755 755 'phabricator-side-menu-view-css' => 'bec2458e',
+4
webroot/rsrc/css/core/remarkup.css
··· 171 171 background-color: {$lightbluebackground}; 172 172 } 173 173 174 + .phabricator-remarkup blockquote p { 175 + margin: 0; 176 + } 177 + 174 178 .phabricator-remarkup blockquote blockquote { 175 179 background-color: rgba(175,175,175, .1); 176 180 }