@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 answer background color when using Dark Mode in Ponder

Summary:
This CSS fix replaces the hard coded white background value by the page.content CSS variable.

| Before | After |
|---------|---------|
|{F332921}|{F332922}|

Test Plan:
- Flush all Phorge caches
- Sign in
- Go to question with at least one answer.
- Check that the answer block background color is consistent with the theme.
- Do these steps for each user interface theme in order to check against regression.

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

bob 0ec3291f beec08e0

+1 -1
+1 -1
webroot/rsrc/css/application/ponder/ponder-view.css
··· 77 77 } 78 78 79 79 .ponder-answer-view .ponder-answer-content { 80 - background-color: #fff; 80 + background-color: {$page.content}; 81 81 padding: 16px 16px 0 16px; 82 82 } 83 83