@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 invalid CSS border-left-color value for .phabricator-action-view-submenu .caret-right

Summary:
The W3C CSS validator throws `Value Error : border-left-color Too many values or values are not recognized : 71,87,120`.
The value lacks `rgb()` wrapping. See other lines in the same CSS file.

Test Plan: Paste celerity processed `phui-action-list.css` into https://jigsaw.w3.org/css-validator/; look at the browser console while editing a task.

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

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '2f25eb4f', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '40c6f67d', 12 + 'core.pkg.css' => 'be74e96c', 13 13 'core.pkg.js' => 'f58c3c6e', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'b343ce15', ··· 135 135 'rsrc/css/phui/object-item/phui-oi-flush-ui.css' => '490e2e2e', 136 136 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '9275ff55', 137 137 'rsrc/css/phui/object-item/phui-oi-simple-ui.css' => '9b03a61f', 138 - 'rsrc/css/phui/phui-action-list.css' => '1b0085b2', 138 + 'rsrc/css/phui/phui-action-list.css' => 'd26ccb62', 139 139 'rsrc/css/phui/phui-action-panel.css' => '6c386cbf', 140 140 'rsrc/css/phui/phui-badge.css' => 'c4ef4923', 141 141 'rsrc/css/phui/phui-basic-nav-view.css' => 'a5693cf0', ··· 768 768 'path-typeahead' => 'ad486db3', 769 769 'people-picture-menu-item-css' => 'fe8e07cf', 770 770 'people-profile-css' => '2ea2daa1', 771 - 'phabricator-action-list-view-css' => '1b0085b2', 771 + 'phabricator-action-list-view-css' => 'd26ccb62', 772 772 'phabricator-busy' => '5202e831', 773 773 'phabricator-content-source-view-css' => 'cdf0d579', 774 774 'phabricator-core-css' => '531ad849',
+1 -1
webroot/rsrc/css/phui/phui-action-list.css
··· 192 192 position: absolute; 193 193 top: 8px; 194 194 right: 8px; 195 - border-left-color: {$alphablue}; 195 + border-left-color: rgb({$alphablue}); 196 196 } 197 197 198 198 .phabricator-action-view-submenu .caret {