@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 dark mode for date picker

Summary:
Replace the hardcoded background color of `.fancy-datepicker-core` with the same background color that `.phui-box-border` uses: `{$page.content}`.

Refs T15056

Test Plan:
1. Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
2. Run `./bin/config set phabricator.show-prototypes true`
3. Install Calendar at http://phorge.localhost/applications/view/PhabricatorCalendarApplication/
4. Go to http://phorge.localhost/calendar/
5. Select "Create Event" in upper right corner
6. Click the small date picker button for Start or End fields

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15056

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

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '384ce2d9', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '96aaba46', 12 + 'core.pkg.css' => 'bbec6c7d', 13 13 'core.pkg.js' => '83580d78', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'a0c57051', ··· 148 148 'rsrc/css/phui/phui-document.css' => 'a9154763', 149 149 'rsrc/css/phui/phui-feed-story.css' => '1dd2e4c0', 150 150 'rsrc/css/phui/phui-fontkit.css' => '1ec937e5', 151 - 'rsrc/css/phui/phui-form-view.css' => '0c6c5f44', 151 + 'rsrc/css/phui/phui-form-view.css' => 'd4346d2d', 152 152 'rsrc/css/phui/phui-form.css' => '2884219c', 153 153 'rsrc/css/phui/phui-formation-view.css' => '8a01850c', 154 154 'rsrc/css/phui/phui-head-thing.css' => 'd7f293df', ··· 809 809 'phui-font-icon-base-css' => 'b7608e58', 810 810 'phui-fontkit-css' => '1ec937e5', 811 811 'phui-form-css' => '2884219c', 812 - 'phui-form-view-css' => '0c6c5f44', 812 + 'phui-form-view-css' => 'd4346d2d', 813 813 'phui-formation-view-css' => '8a01850c', 814 814 'phui-head-thing-view-css' => 'd7f293df', 815 815 'phui-header-view-css' => '7bc4efa0',
+1 -1
webroot/rsrc/css/phui/phui-form-view.css
··· 399 399 } 400 400 401 401 .fancy-datepicker-core { 402 - background-color: white; 402 + background-color: {$page.content}; 403 403 border: 1px solid {$lightgreyborder}; 404 404 box-shadow: {$dropshadow}; 405 405 border-radius: 3px;