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

Use "overflow-[x/y]: auto;" instead of "overflow-[x/y]: scroll" in Conpherence

Summary: `scroll` always shows the scroll bar, `auto` shows it only if scrolling needs to happen. Fixes some weirdness in the blank/empty states in Safari, at least.

Test Plan: Looked at Conpherence in Safari.

Reviewers: btrahan, chad

Reviewed By: chad

CC: aran

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

+6 -6
+3 -3
src/__celerity_resource_map__.php
··· 727 727 ), 728 728 'conpherence-header-pane-css' => 729 729 array( 730 - 'uri' => '/res/5a02bdbe/rsrc/css/application/conpherence/header-pane.css', 730 + 'uri' => '/res/e50e02c8/rsrc/css/application/conpherence/header-pane.css', 731 731 'type' => 'css', 732 732 'requires' => 733 733 array( ··· 736 736 ), 737 737 'conpherence-menu-css' => 738 738 array( 739 - 'uri' => '/res/b893e529/rsrc/css/application/conpherence/menu.css', 739 + 'uri' => '/res/02b20456/rsrc/css/application/conpherence/menu.css', 740 740 'type' => 'css', 741 741 'requires' => 742 742 array( ··· 745 745 ), 746 746 'conpherence-message-pane-css' => 747 747 array( 748 - 'uri' => '/res/32073bd5/rsrc/css/application/conpherence/message-pane.css', 748 + 'uri' => '/res/799dc191/rsrc/css/application/conpherence/message-pane.css', 749 749 'type' => 'css', 750 750 'requires' => 751 751 array(
+1 -1
webroot/rsrc/css/application/conpherence/header-pane.css
··· 27 27 left: 62px; 28 28 top: 6px; 29 29 max-width: 80%; 30 - overflow-x: scroll; 30 + overflow-x: auto; 31 31 } 32 32 33 33 .conpherence-header-pane .subtitle {
+1 -1
webroot/rsrc/css/application/conpherence/menu.css
··· 27 27 28 28 .conpherence-menu .phabricator-menu-view { 29 29 overflow-x: hidden; 30 - overflow-y: scroll; 30 + overflow-y: auto; 31 31 margin-bottom: 0; 32 32 } 33 33
+1 -1
webroot/rsrc/css/application/conpherence/message-pane.css
··· 17 17 right: 321px; 18 18 top: 94px; 19 19 bottom: 225px; 20 - overflow-y: scroll; 20 + overflow-y: auto; 21 21 } 22 22 23 23 .conpherence-message-pane .phabricator-form-view {