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

Make an IE CSS hack pass W3C CSS validator

Summary:
The W3C CSS validator throws `Value Error : margin-top Too many values or values are not recognized : 1px \9`. It does not complain about `1px\9`.

See https://stackoverflow.com/questions/8004765/what-is-the-meaning-of-9-in-this-width-property-value-declaration, https://stackoverflow.com/questions/18907131/detecting-ie-version-using-css-capability-feature-detection, https://www.w3.org/TR/CSS2/syndata.html#characters

Test Plan: Paste `core.pkg.css` into https://jigsaw.w3.org/css-validator/. Optionally, find some ancient Internet Explorer version and run it (I did not).

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

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '3144a5e2', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '3406c4ea', 12 + 'core.pkg.css' => '22e722fb', 13 13 'core.pkg.js' => '086da722', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '91ac6214', ··· 154 154 'rsrc/css/phui/phui-feed-story.css' => 'a0c05029', 155 155 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 156 156 'rsrc/css/phui/phui-form-view.css' => 'c35b66ed', 157 - 'rsrc/css/phui/phui-form.css' => '8608beb3', 157 + 'rsrc/css/phui/phui-form.css' => '8ea0227d', 158 158 'rsrc/css/phui/phui-formation-view.css' => 'd3956117', 159 159 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', 160 160 'rsrc/css/phui/phui-header-view.css' => '4cd25427', ··· 845 845 'phui-feed-story-css' => 'a0c05029', 846 846 'phui-font-icon-base-css' => 'e3b53e1e', 847 847 'phui-fontkit-css' => '1ec937e5', 848 - 'phui-form-css' => '8608beb3', 848 + 'phui-form-css' => '8ea0227d', 849 849 'phui-form-view-css' => 'c35b66ed', 850 850 'phui-formation-view-css' => 'd3956117', 851 851 'phui-head-thing-view-css' => 'd7f293df',
+1 -1
webroot/rsrc/css/phui/phui-form.css
··· 85 85 input[type="radio"], 86 86 input[type="checkbox"] { 87 87 margin: 4px 0 0; 88 - margin-top: 1px \9; 88 + margin-top: 1px\9; 89 89 /* IE8-9 */ 90 90 line-height: normal; 91 91 }