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

Add a more specific CSS rule to make Spaces headers in projects colored red

Summary:
Depends on D19551. Ref T13164. Projects use a special kind of header setup that has a more specific CSS rule to make content black. Add an even more specific rule to make it red.

(This could probably be disentangled a bit and isn't necessarily the cleanest fix, but I poked at it for a few minutes and didn't come up with anything cleaner.)

Test Plan: Viewed projects in spaces, saw the space names colored red properly.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13164

Differential Revision: https://secure.phabricator.com/D19552

+5 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => 'e68cf1fa', 11 11 'conpherence.pkg.js' => '15191c65', 12 - 'core.pkg.css' => 'e5233bff', 12 + 'core.pkg.css' => 'f515619b', 13 13 'core.pkg.js' => '2058ec09', 14 14 'differential.pkg.css' => '06dc617c', 15 15 'differential.pkg.js' => 'ef19e026', ··· 154 154 'rsrc/css/phui/phui-form-view.css' => 'ae9f8d16', 155 155 'rsrc/css/phui/phui-form.css' => '7aaa04e3', 156 156 'rsrc/css/phui/phui-head-thing.css' => 'fd311e5f', 157 - 'rsrc/css/phui/phui-header-view.css' => '31dc6c72', 157 + 'rsrc/css/phui/phui-header-view.css' => 'edeb9252', 158 158 'rsrc/css/phui/phui-hovercard.css' => 'f0592bcf', 159 159 'rsrc/css/phui/phui-icon-set-selector.css' => '87db8fee', 160 160 'rsrc/css/phui/phui-icon.css' => 'cf24ceec', ··· 821 821 'phui-form-css' => '7aaa04e3', 822 822 'phui-form-view-css' => 'ae9f8d16', 823 823 'phui-head-thing-view-css' => 'fd311e5f', 824 - 'phui-header-view-css' => '31dc6c72', 824 + 'phui-header-view-css' => 'edeb9252', 825 825 'phui-hovercard' => '1bd28176', 826 826 'phui-hovercard-view-css' => 'f0592bcf', 827 827 'phui-icon-set-selector-css' => '87db8fee',
+2 -1
webroot/rsrc/css/phui/phui-header-view.css
··· 294 294 } 295 295 296 296 .spaces-name .phui-handle, 297 - .spaces-name a.phui-handle { 297 + .spaces-name a.phui-handle, 298 + .phui-profile-header.phui-header-shell .spaces-name .phui-handle { 298 299 color: {$sh-redtext}; 299 300 } 300 301