@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 unused anchor-target CSS for Conpherence message pane

Summary:
Remove unused CSS selectors related to `anchor-target` which do not get applied due to missing a whitespace.
Even when making them apply, they do not add any value apart from a small yellow square placed in an unhelpful spot.

See also https://we.phorge.it/D25992 for gory details.

Test Plan: Go to a Conpherence chat via an anchor link like `Z1#10`, inspect HTML's CSS classes for messages at top of the room (setting policy etc) and also posted chat messages themselves. See no visual differences.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

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

+3 -18
+3 -3
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => '79a197f6', 10 + 'conpherence.pkg.css' => '384ce2d9', 11 11 'conpherence.pkg.js' => '020aebcf', 12 12 'core.pkg.css' => '727e128a', 13 13 'core.pkg.js' => '63f896ec', ··· 50 50 'rsrc/css/application/conpherence/durable-column.css' => 'f68f35e3', 51 51 'rsrc/css/application/conpherence/header-pane.css' => 'c9a3db8e', 52 52 'rsrc/css/application/conpherence/menu.css' => '67f4680d', 53 - 'rsrc/css/application/conpherence/message-pane.css' => '9777246c', 53 + 'rsrc/css/application/conpherence/message-pane.css' => '6270be38', 54 54 'rsrc/css/application/conpherence/notification.css' => '85c48def', 55 55 'rsrc/css/application/conpherence/participant-pane.css' => '69e0058a', 56 56 'rsrc/css/application/conpherence/transaction.css' => '3a3f5e7e', ··· 532 532 'conpherence-durable-column-view' => 'f68f35e3', 533 533 'conpherence-header-pane-css' => 'c9a3db8e', 534 534 'conpherence-menu-css' => '67f4680d', 535 - 'conpherence-message-pane-css' => '9777246c', 535 + 'conpherence-message-pane-css' => '6270be38', 536 536 'conpherence-notification-css' => '85c48def', 537 537 'conpherence-participant-pane-css' => '69e0058a', 538 538 'conpherence-thread-manager' => 'aec8e38c',
-15
webroot/rsrc/css/application/conpherence/message-pane.css
··· 235 235 background-size: 25px; 236 236 } 237 237 238 - .conpherence-transaction-view.conpherence-comment.anchor-target, 239 - .conpherence-transaction-view.conpherence-edited.anchor-target { 240 - background: {$lightyellow}; 241 - } 242 - 243 - .cconpherence-transaction-view.conpherence-comment.anchor-target { 244 - margin: 4px 8px 4px 8px; 245 - padding: 2px 4px 2px 4px; 246 - } 247 - 248 - .conpherence-transaction-view.conpherence-edited.anchor-target { 249 - margin: 0px 8px 0px 8px; 250 - padding: 0px 4px 0px 4px; 251 - } 252 - 253 238 .conpherence-transaction-view .conpherence-transaction-detail { 254 239 border-width: 0; 255 240 margin-left: 45px;