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

Hide Conpherence durable column when printing

Summary: Fixes T12303. Hides column.

Test Plan: Print a page with `__print__=1`

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Maniphest Tasks: T12303

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

+6 -4
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => 'a520d619', 10 + 'conpherence.pkg.css' => '6875302f', 11 11 'conpherence.pkg.js' => '6249a1cf', 12 12 'core.pkg.css' => '12c56bd9', 13 13 'core.pkg.js' => '1fa7c0c5', ··· 45 45 'rsrc/css/application/config/config-template.css' => '8f18fa41', 46 46 'rsrc/css/application/config/setup-issue.css' => 'f794cfc3', 47 47 'rsrc/css/application/config/unhandled-exception.css' => '4c96257a', 48 - 'rsrc/css/application/conpherence/durable-column.css' => 'd82e130c', 48 + 'rsrc/css/application/conpherence/durable-column.css' => '292c71f0', 49 49 'rsrc/css/application/conpherence/header-pane.css' => 'db93ebc6', 50 50 'rsrc/css/application/conpherence/menu.css' => '3d8e5c9c', 51 51 'rsrc/css/application/conpherence/message-pane.css' => 'b085d40d', ··· 563 563 'conduit-api-css' => '7bc725c4', 564 564 'config-options-css' => '0ede4c9b', 565 565 'config-page-css' => 'c1d5121b', 566 - 'conpherence-durable-column-view' => 'd82e130c', 566 + 'conpherence-durable-column-view' => '292c71f0', 567 567 'conpherence-header-pane-css' => 'db93ebc6', 568 568 'conpherence-menu-css' => '3d8e5c9c', 569 569 'conpherence-message-pane-css' => 'b085d40d',
+3 -1
webroot/rsrc/css/application/conpherence/durable-column.css
··· 18 18 box-shadow: 0px 1px 8px rgba(55,55,55, .3); 19 19 } 20 20 21 - .device .conpherence-durable-column { 21 + .device .conpherence-durable-column, 22 + .printable .conpherence-durable-column, 23 + !print .conpherence-durable-column { 22 24 display: none; 23 25 } 24 26