@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 dropshadow from dialog on single pages

Summary: Restricts the dropshadow to just the js dialog.

Test Plan: Test login page, logout dialog.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

authored by

Chad Little and committed by
chad
50b8815e a39d0344

+6 -3
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'core.pkg.css' => '69616aad', 10 + 'core.pkg.css' => 'bd041864', 11 11 'core.pkg.js' => 'd7daa6d8', 12 12 'darkconsole.pkg.js' => 'e7393ebb', 13 13 'differential.pkg.css' => '2de124c9', ··· 18 18 'maniphest.pkg.js' => '949a7498', 19 19 'rsrc/css/aphront/aphront-bars.css' => '231ac33c', 20 20 'rsrc/css/aphront/dark-console.css' => '6378ef3d', 21 - 'rsrc/css/aphront/dialog-view.css' => 'e2f4919b', 21 + 'rsrc/css/aphront/dialog-view.css' => 'b4334e08', 22 22 'rsrc/css/aphront/lightbox-attachment.css' => '7acac05d', 23 23 'rsrc/css/aphront/list-filter-view.css' => '5d6f0526', 24 24 'rsrc/css/aphront/multi-column.css' => 'fd18389d', ··· 518 518 'almanac-css' => 'dbb9b3af', 519 519 'aphront-bars' => '231ac33c', 520 520 'aphront-dark-console-css' => '6378ef3d', 521 - 'aphront-dialog-view-css' => 'e2f4919b', 521 + 'aphront-dialog-view-css' => 'b4334e08', 522 522 'aphront-list-filter-view-css' => '5d6f0526', 523 523 'aphront-multi-column-view-css' => 'fd18389d', 524 524 'aphront-panel-view-css' => '8427b78d',
+3
webroot/rsrc/css/aphront/dialog-view.css
··· 8 8 border: 1px solid {$lightblueborder}; 9 9 border-radius: 3px; 10 10 background-color: #fff; 11 + } 12 + 13 + .jx-client-dialog .aphront-dialog-view { 11 14 box-shadow: {$dropshadow}; 12 15 } 13 16