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

Improve Dark mode on workboards for empty columns and milestone columns

Summary:
Replace hardcoded background colors for empty columns and milestone columns on project workboards.

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 http://phorge.localhost/project/board/1/, create a column with no task cards and look at its background color
* Go to http://phorge.localhost/project/board/1/, create a milestone in that project and look at its column color on the board

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

+4 -2
+1
src/applications/celerity/postprocessor/CelerityDarkModePostprocessor.php
··· 221 221 222 222 'navigation-menu-selection-background' => 'rgba(255, 255, 255,.2)', 223 223 'navigation-menu-hover-background' => 'rgba(255,255,255,.1)', 224 + 'workboard-column-background' => 'rgba(60,90,120,.55)', 224 225 225 226 // Buttons 226 227 'blue.button.color' => '#2980b9',
+1
src/applications/celerity/postprocessor/CelerityDefaultPostprocessor.php
··· 240 240 241 241 'navigation-menu-selection-background' => 'rgba(0, 0, 0,.05)', 242 242 'navigation-menu-hover-background' => 'rgba(0, 0, 0,.07)', 243 + 'workboard-column-background' => 'rgba(234, 230, 247, 0.85)', 243 244 244 245 // Buttons 245 246 'blue.button.color' => '#2980b9',
+2 -2
webroot/rsrc/css/phui/workboards/phui-workpanel.css
··· 37 37 } 38 38 39 39 .phui-workpanel-view.phui-workboard-column-milestone .phui-box-grey { 40 - background-color: rgba(234, 230, 247, 0.85); 40 + background-color: {$workboard-column-background}; 41 41 } 42 42 43 43 .phui-workpanel-view .phui-header-col2 .phui-icon-view { ··· 116 116 } 117 117 118 118 .project-panel-empty .phui-oi-list-view { 119 - background: rgba(234, 230, 247, 0.85); 119 + background: {$workboard-column-background}; 120 120 border-radius: 3px; 121 121 margin-bottom: 4px; 122 122 border: 1px dashed {$sh-indigoborder};