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

Fix changeset layout in Modern Firefox

Summary: Looks like a rule for old Firefox is causing layout issues in new Firefox. Prefer new Firefox. Fixes T4987

Test Plan:
Tested the current version of Firefox.

Bug:

{F158209}

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

Maniphest Tasks: T4987

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

+3 -14
+3 -3
resources/celerity/map.php
··· 10 10 'core.pkg.css' => '3445a3a7', 11 11 'core.pkg.js' => 'ab0d6d3d', 12 12 'darkconsole.pkg.js' => 'ca8671ce', 13 - 'differential.pkg.css' => '382ca868', 13 + 'differential.pkg.css' => 'fbf57382', 14 14 'differential.pkg.js' => '68d225fb', 15 15 'diffusion.pkg.css' => '3783278d', 16 16 'diffusion.pkg.js' => '077e3ad0', ··· 55 55 'rsrc/css/application/dashboard/dashboard.css' => 'c1d7f80b', 56 56 'rsrc/css/application/diff/inline-comment-summary.css' => '8cfd34e8', 57 57 'rsrc/css/application/differential/add-comment.css' => 'c478bcaa', 58 - 'rsrc/css/application/differential/changeset-view.css' => 'c45747f0', 58 + 'rsrc/css/application/differential/changeset-view.css' => 'f234b888', 59 59 'rsrc/css/application/differential/core.css' => '7ac3cabc', 60 60 'rsrc/css/application/differential/results-table.css' => '239924f9', 61 61 'rsrc/css/application/differential/revision-comment.css' => '48186045', ··· 509 509 'conpherence-notification-css' => '403cf598', 510 510 'conpherence-update-css' => '1099a660', 511 511 'conpherence-widget-pane-css' => 'bf275a6c', 512 - 'differential-changeset-view-css' => 'c45747f0', 512 + 'differential-changeset-view-css' => 'f234b888', 513 513 'differential-core-view-css' => '7ac3cabc', 514 514 'differential-inline-comment-editor' => 'f2441746', 515 515 'differential-results-table-css' => '239924f9',
-11
webroot/rsrc/css/application/differential/changeset-view.css
··· 41 41 } 42 42 43 43 .differential-diff td { 44 - /* 45 - Disable ligatures in Firefox. Firefox 3 has fancypants ligature support, but 46 - it gets applied to monospaced fonts, which sucks because it means that the 47 - "fi" ligature only takes up one character, e.g. It's probably the font's 48 - fault that it even specifies ligatures (seriously, what the hell?) but 49 - that's hard to fix and this is "easy" to "fix": custom letter spacing 50 - disables ligatures, as long as it's at least 0.008333-repeating pixels of 51 - custom letter spacing. I have no idea where this number comes from, but note 52 - that .83333.. = 5/6. -epriestley 53 - */ 54 - letter-spacing: 0.0083334px; 55 44 vertical-align: top; 56 45 white-space: pre-wrap; 57 46 word-wrap: break-word;