@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 invalid CSS vertical-align value for .fancy-datepicker-core

Summary:
`vertical-align: center` is not a valid value per https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align.
Likely `middle` was meant.

Test Plan: Read CSS docs; check output of your web browser console. (Interstingly, https://jigsaw.w3.org/css-validator/validator does not complain.)

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

+4 -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' => '9073ec19', 12 + 'core.pkg.css' => '6e4e44eb', 13 13 'core.pkg.js' => 'f58c3c6e', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'b343ce15', ··· 154 154 'rsrc/css/phui/phui-document.css' => '52b748a5', 155 155 'rsrc/css/phui/phui-feed-story.css' => 'a0c05029', 156 156 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 157 - 'rsrc/css/phui/phui-form-view.css' => '57edecb7', 157 + 'rsrc/css/phui/phui-form-view.css' => 'c35b66ed', 158 158 'rsrc/css/phui/phui-form.css' => '6d2917d0', 159 159 'rsrc/css/phui/phui-formation-view.css' => 'd3956117', 160 160 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', ··· 848 848 'phui-font-icon-base-css' => 'e7616f91', 849 849 'phui-fontkit-css' => '1ec937e5', 850 850 'phui-form-css' => '6d2917d0', 851 - 'phui-form-view-css' => '57edecb7', 851 + 'phui-form-view-css' => 'c35b66ed', 852 852 'phui-formation-view-css' => 'd3956117', 853 853 'phui-head-thing-view-css' => 'd7f293df', 854 854 'phui-header-view-css' => '4cd25427',
+1 -1
webroot/rsrc/css/phui/phui-form-view.css
··· 402 402 403 403 .fancy-datepicker-core .day-table td { 404 404 overflow: hidden; 405 - vertical-align: center; 405 + vertical-align: middle; 406 406 text-align: center; 407 407 border: 1px solid {$thinblueborder}; 408 408 padding: 4px 0;