@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 -moz-box-sizing CSS property

Summary:
Per https://caniuse.com/?search=-moz-box-sizing, the standard version without vendor prefix has been supported since Firefox 29 released April 2014.
Furthermore, numerous other CSS files in Phorge only define the standard version and do not also define this vendor-prefixed one.

Closes T16184

Test Plan: None. Probably installing old browser versions if you don't trust documentation.

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T16184

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

+9 -12
+9 -9
resources/celerity/map.php
··· 7 7 */ 8 8 return array( 9 9 'names' => array( 10 - 'conpherence.pkg.css' => '384ce2d9', 10 + 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '1a97d320', 12 + 'core.pkg.css' => 'f1a2ed56', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 - 'differential.pkg.css' => 'a0c57051', 15 + 'differential.pkg.css' => '77189aae', 16 16 'differential.pkg.js' => '46fcb3af', 17 17 'diffusion.pkg.css' => '91e57dc1', 18 18 'diffusion.pkg.js' => '78c9885d', ··· 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' => '6270be38', 53 + 'rsrc/css/application/conpherence/message-pane.css' => '21a238b9', 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', ··· 63 63 'rsrc/css/application/differential/add-comment.css' => '7e5900d9', 64 64 'rsrc/css/application/differential/changeset-view.css' => '979e688c', 65 65 'rsrc/css/application/differential/core.css' => '7300a73e', 66 - 'rsrc/css/application/differential/phui-inline-comment.css' => 'bcbaff3d', 66 + 'rsrc/css/application/differential/phui-inline-comment.css' => '066c3341', 67 67 'rsrc/css/application/differential/revision-history.css' => '237a2979', 68 68 'rsrc/css/application/differential/table-of-contents.css' => '49256a9e', 69 69 'rsrc/css/application/diffusion/diffusion-icons.css' => 'a1271364', ··· 149 149 'rsrc/css/phui/phui-feed-story.css' => '1dd2e4c0', 150 150 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 151 151 'rsrc/css/phui/phui-form-view.css' => 'd4346d2d', 152 - 'rsrc/css/phui/phui-form.css' => '2884219c', 152 + 'rsrc/css/phui/phui-form.css' => '4427de33', 153 153 'rsrc/css/phui/phui-formation-view.css' => '8a01850c', 154 154 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', 155 155 'rsrc/css/phui/phui-header-view.css' => '7bc4efa0', ··· 519 519 'conpherence-durable-column-view' => 'f68f35e3', 520 520 'conpherence-header-pane-css' => 'c9a3db8e', 521 521 'conpherence-menu-css' => '67f4680d', 522 - 'conpherence-message-pane-css' => '6270be38', 522 + 'conpherence-message-pane-css' => '21a238b9', 523 523 'conpherence-notification-css' => '85c48def', 524 524 'conpherence-participant-pane-css' => '69e0058a', 525 525 'conpherence-thread-manager' => 'aec8e38c', ··· 808 808 'phui-feed-story-css' => '1dd2e4c0', 809 809 'phui-font-icon-base-css' => 'b7608e58', 810 810 'phui-fontkit-css' => '1ec937e5', 811 - 'phui-form-css' => '2884219c', 811 + 'phui-form-css' => '4427de33', 812 812 'phui-form-view-css' => 'd4346d2d', 813 813 'phui-formation-view-css' => '8a01850c', 814 814 'phui-head-thing-view-css' => 'd7f293df', ··· 820 820 'phui-icon-view-css' => '084ac612', 821 821 'phui-image-mask-css' => '62c7f4d2', 822 822 'phui-info-view-css' => 'a10a909b', 823 - 'phui-inline-comment-view-css' => 'bcbaff3d', 823 + 'phui-inline-comment-view-css' => '066c3341', 824 824 'phui-invisible-character-view-css' => 'c694c4a4', 825 825 'phui-left-right-css' => '68513c34', 826 826 'phui-lightbox-css' => 'e4015eff',
-1
webroot/rsrc/css/application/conpherence/message-pane.css
··· 335 335 height: 34px; 336 336 padding: 8px; 337 337 box-sizing: border-box; 338 - -moz-box-sizing: border-box; 339 338 border-bottom-left-radius: 3px; 340 339 border-bottom-right-radius: 3px; 341 340 }
-1
webroot/rsrc/css/application/differential/phui-inline-comment.css
··· 26 26 .differential-inline-comment, 27 27 .differential-inline-comment-edit { 28 28 font: {$basefont}; 29 - -moz-box-sizing: border-box; 30 29 box-sizing: border-box; 31 30 overflow: hidden; 32 31 white-space: normal;
-1
webroot/rsrc/css/phui/phui-form.css
··· 50 50 51 51 transition: border linear .05s, box-shadow linear .05s; 52 52 53 - -moz-box-sizing: border-box; 54 53 box-sizing: border-box; 55 54 56 55 /* iOS Safari */