@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 Form inset background color

Summary:
Replace hardcoded background color for form insets with a variable, e.g. when editing a Herald rule.

Split from D25724 written by mturdus.

Refs T15056

Test Plan:
* Go to http://phorge.localhost/settings/panel/display/ and set `Accessibility` to `Dark Mode (Experimental)`
* Go to e.g. http://phorge.localhost/herald/edit/?content_type=HeraldManiphestTaskAdapter&rule_type=personal

Reviewers: O1 Blessed Committers, mainframe98

Reviewed By: O1 Blessed Committers, mainframe98

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15056

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

+3 -1
+1
src/applications/celerity/postprocessor/CelerityDarkModePostprocessor.php
··· 222 222 'navigation-menu-selection-background' => 'rgba(255, 255, 255,.2)', 223 223 'navigation-menu-hover-background' => 'rgba(255,255,255,.1)', 224 224 'workboard-column-background' => 'rgba(60,90,120,.55)', 225 + 'form-inset-background' => '#1c293b', 225 226 226 227 // Buttons 227 228 'blue.button.color' => '#2980b9',
+1
src/applications/celerity/postprocessor/CelerityDefaultPostprocessor.php
··· 241 241 'navigation-menu-selection-background' => 'rgba(0, 0, 0,.05)', 242 242 'navigation-menu-hover-background' => 'rgba(0, 0, 0,.07)', 243 243 'workboard-column-background' => 'rgba(234, 230, 247, 0.85)', 244 + 'form-inset-background' => '#f7f9fd', 244 245 245 246 // Buttons 246 247 'blue.button.color' => '#2980b9',
+1 -1
webroot/rsrc/css/phui/phui-form-view.css
··· 228 228 .phui-form-inset { 229 229 margin: 12px 0; 230 230 padding: 8px; 231 - background: #f7f9fd; 231 + background: {$form-inset-background}; 232 232 border: 1px solid {$lightblueborder}; 233 233 border-radius: 3px; 234 234 }