@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 pre-2005 vendor-prefixed -khtml- CSS property

Summary:
Remove `-khtml-opacity: 0.5;` from CSS.
Per https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariCSSRef/Articles/StandardCSSProperties.html, standard `opacity` has been supported since Safari 2.0 released in April 2005. If you still run Safari 1.x after 20 years you have bigger problems than this line of CSS in Phorge.
This is the only `-khtml-` prefixed property in the codebase.

Test Plan: None.

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/D25914

+3 -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' => '112931ab', 12 + 'core.pkg.css' => 'a3eea9ef', 13 13 'core.pkg.js' => 'f58c3c6e', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '94bb10ca', ··· 124 124 'rsrc/css/layout/phabricator-source-code-view.css' => 'e382316a', 125 125 'rsrc/css/phui/button/phui-button-bar.css' => 'a4aa75c4', 126 126 'rsrc/css/phui/button/phui-button-simple.css' => '1ff278aa', 127 - 'rsrc/css/phui/button/phui-button.css' => '55025b10', 127 + 'rsrc/css/phui/button/phui-button.css' => '430e7f8a', 128 128 'rsrc/css/phui/calendar/phui-calendar-day.css' => '9597d706', 129 129 'rsrc/css/phui/calendar/phui-calendar-list.css' => 'ccd7e4e2', 130 130 'rsrc/css/phui/calendar/phui-calendar-month.css' => 'cb758c42', ··· 828 828 'phui-box-css' => '5ed3b8cb', 829 829 'phui-bulk-editor-css' => '374d5e30', 830 830 'phui-button-bar-css' => 'a4aa75c4', 831 - 'phui-button-css' => '55025b10', 831 + 'phui-button-css' => '430e7f8a', 832 832 'phui-button-simple-css' => '1ff278aa', 833 833 'phui-calendar-css' => 'f11073aa', 834 834 'phui-calendar-day-css' => '9597d706',
-1
webroot/rsrc/css/phui/button/phui-button.css
··· 102 102 button[disabled] { 103 103 filter:alpha(opacity=50); 104 104 -moz-opacity: 0.5; 105 - -khtml-opacity: 0.5; 106 105 opacity: 0.5; 107 106 } 108 107