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

Persistent Chat: fix de-minimize misclick

Summary:
When the persistent chat is minimized to the bottom of your window, as mentioned in T15626,
the chat bar still has an invisible square area that does nothing if you click it by mistake:

{F2184778}

That area was reserved for the Settings Icon, that appears only if you de-minimize the chat.

The Settings Icon was toggled incorrectly from CSS. It was just hiding the Font Awesome icon,
(.fa-gear), instead of hiding its clickable container.

After this change, chat can be de-minimized even if you click in that specific evil spot.

Original credit to @roberto.urbani for the original troubleshooting and original patch.

Follow-up from: D25428

Closes T15626

Test Plan:
Show the Chat, then:

- when the chat is de-collapsed:
- you see the Settings icon (as before)
- you can click on the Settings Icon (as before)
- it shows the Settings menu (as before)
- when the chat is collapsed:
- you can click in whatever point, and it de-collapse (better than before)

Additionally, use the HTML inspector in your browser (`F12` from Firefox),
to double-check that now that `<li>` has display: none when the chat is collapsed.

Reviewers: O1 Blessed Committers, aklapper

Reviewed By: O1 Blessed Committers, aklapper

Subscribers: aklapper, tobiaswiese, Matthew, Cigaryno, roberto.urbani

Maniphest Tasks: T15626

Differential Revision: https://we.phorge.it/D25628

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '2f25eb4f', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'cf2d74fd', 12 + 'core.pkg.css' => '3471f5d3', 13 13 'core.pkg.js' => '2eeda9e0', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '6d3700f0', ··· 49 49 'rsrc/css/application/config/setup-issue.css' => '93231115', 50 50 'rsrc/css/application/config/unhandled-exception.css' => '9ecfc00d', 51 51 'rsrc/css/application/conpherence/color.css' => 'b17746b0', 52 - 'rsrc/css/application/conpherence/durable-column.css' => '2d57072b', 52 + 'rsrc/css/application/conpherence/durable-column.css' => 'f68f35e3', 53 53 'rsrc/css/application/conpherence/header-pane.css' => 'c9a3db8e', 54 54 'rsrc/css/application/conpherence/menu.css' => '67f4680d', 55 55 'rsrc/css/application/conpherence/message-pane.css' => '50b1345e', ··· 550 550 'conduit-api-css' => 'ce2cfc41', 551 551 'config-options-css' => '16c920ae', 552 552 'conpherence-color-css' => 'b17746b0', 553 - 'conpherence-durable-column-view' => '2d57072b', 553 + 'conpherence-durable-column-view' => 'f68f35e3', 554 554 'conpherence-header-pane-css' => 'c9a3db8e', 555 555 'conpherence-menu-css' => '67f4680d', 556 556 'conpherence-message-pane-css' => '50b1345e',
+1 -1
webroot/rsrc/css/application/conpherence/durable-column.css
··· 311 311 } 312 312 313 313 .minimize-column .conpherence-durable-column .phabricator-application-menu 314 - .fa-gear { 314 + .conpherence-settings-icon { 315 315 display: none; 316 316 }