@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 opacity effects for left-side / right-side diff text selection

Summary:
These effects feel like they're possibly overkill, since other CSS rules make the selection reticle behave correctly and the implementation is relatively intuitive.

Or not, either way.

Test Plan: Selected text on either side of a 2-up diff, no more opacity effects.

Reviewers: amckinley

Reviewed By: amckinley

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

+6 -11
+6 -6
resources/celerity/map.php
··· 11 11 'conpherence.pkg.js' => '020aebcf', 12 12 'core.pkg.css' => '34ce1741', 13 13 'core.pkg.js' => 'b96c872e', 14 - 'differential.pkg.css' => '1755a478', 14 + 'differential.pkg.css' => '8d8360fb', 15 15 'differential.pkg.js' => '67e02996', 16 16 'diffusion.pkg.css' => '42c75c37', 17 17 'diffusion.pkg.js' => '91192d85', ··· 61 61 'rsrc/css/application/dashboard/dashboard.css' => '4267d6c6', 62 62 'rsrc/css/application/diff/inline-comment-summary.css' => '81eb368d', 63 63 'rsrc/css/application/differential/add-comment.css' => '7e5900d9', 64 - 'rsrc/css/application/differential/changeset-view.css' => '4193eeff', 64 + 'rsrc/css/application/differential/changeset-view.css' => 'bde53589', 65 65 'rsrc/css/application/differential/core.css' => '7300a73e', 66 66 'rsrc/css/application/differential/phui-inline-comment.css' => '48acce5b', 67 67 'rsrc/css/application/differential/revision-comment.css' => '7dbc8d1d', ··· 542 542 'conpherence-thread-manager' => 'aec8e38c', 543 543 'conpherence-transaction-css' => '3a3f5e7e', 544 544 'd3' => 'd67475f5', 545 - 'differential-changeset-view-css' => '4193eeff', 545 + 'differential-changeset-view-css' => 'bde53589', 546 546 'differential-core-view-css' => '7300a73e', 547 547 'differential-revision-add-comment-css' => '7e5900d9', 548 548 'differential-revision-comment-css' => '7dbc8d1d', ··· 1210 1210 'javelin-behavior', 1211 1211 'javelin-uri', 1212 1212 ), 1213 - '4193eeff' => array( 1214 - 'phui-inline-comment-view-css', 1215 - ), 1216 1213 '4234f572' => array( 1217 1214 'syntax-default-css', 1218 1215 ), ··· 1900 1897 'javelin-dom', 1901 1898 'javelin-vector', 1902 1899 'javelin-stratcom', 1900 + ), 1901 + 'bde53589' => array( 1902 + 'phui-inline-comment-view-css', 1903 1903 ), 1904 1904 'c03f2fb4' => array( 1905 1905 'javelin-install',
-5
webroot/rsrc/css/application/differential/changeset-view.css
··· 451 451 -ms-user-select: none; 452 452 -webkit-user-select: none; 453 453 user-select: none; 454 - opacity: 0.5; 455 454 } 456 455 457 456 .differential-diff.copy-l > tbody > tr > td:nth-child(2) { ··· 459 458 -ms-user-select: auto; 460 459 -webkit-user-select: auto; 461 460 user-select: auto; 462 - opacity: 1; 463 461 } 464 462 465 463 .differential-diff.copy-l > tbody > tr > td.show-more:nth-child(2) { ··· 467 465 -ms-user-select: none; 468 466 -webkit-user-select: none; 469 467 user-select: none; 470 - opacity: 0.5; 471 468 } 472 469 473 470 .differential-diff.copy-r > tbody > tr > td:nth-child(5) { ··· 475 472 -ms-user-select: auto; 476 473 -webkit-user-select: auto; 477 474 user-select: auto; 478 - opacity: 1; 479 475 } 480 476 481 477 .differential-diff.copy-l > tbody > tr.inline > td, ··· 484 480 -ms-user-select: none; 485 481 -webkit-user-select: none; 486 482 user-select: none; 487 - opacity: 0.5; 488 483 }