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

Replace :-moz-placeholder CSS pseudo-class with ::-moz-placeholder pseudo-element

Summary:
Per https://caniuse.com/css-placeholder, `:-moz-placeholder` was supported up to Firefox 18 released 11/2012.
Firefox 18 to Firefox 50 (released 11/2016) support `::-moz-placeholder` instead.
We currently already use the latter in `phui-form-view.css` for `.aphront-form-input`.

This is a followup to rP8353146b; we missed this corner-case at that time.

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

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

+5 -5
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'beb13d57', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => 'afb971b4', 12 + 'core.pkg.css' => '10f5cfc9', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '77189aae', ··· 148 148 'rsrc/css/phui/phui-feed-story.css' => '1dd2e4c0', 149 149 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 150 150 'rsrc/css/phui/phui-form-view.css' => '029b1ef9', 151 - 'rsrc/css/phui/phui-form.css' => '2e7f0443', 151 + 'rsrc/css/phui/phui-form.css' => 'aa7692fe', 152 152 'rsrc/css/phui/phui-formation-view.css' => '8a01850c', 153 153 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', 154 154 'rsrc/css/phui/phui-header-view.css' => '7bc4efa0', ··· 793 793 'phui-feed-story-css' => '1dd2e4c0', 794 794 'phui-font-icon-base-css' => 'b7608e58', 795 795 'phui-fontkit-css' => '1ec937e5', 796 - 'phui-form-css' => '2e7f0443', 796 + 'phui-form-css' => 'aa7692fe', 797 797 'phui-form-view-css' => '029b1ef9', 798 798 'phui-formation-view-css' => '8a01850c', 799 799 'phui-head-thing-view-css' => 'd7f293df',
+2 -2
webroot/rsrc/css/phui/phui-form.css
··· 117 117 outline-offset: -2px; 118 118 } 119 119 120 - input:-moz-placeholder, 121 - textarea:-moz-placeholder { 120 + input::-moz-placeholder, 121 + textarea::-moz-placeholder { 122 122 color: {$lightgreytext}; 123 123 } 124 124