@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 cursor value for .phui-oi-grippable

Summary:
The W3C CSS validator throws `Value Error : cursor normal is not a cursor value : normal`.
`normal` is not a valid value for `cursor`; likely `default` was meant.
See https://developer.mozilla.org/en-US/docs/Web/CSS/cursor

Test Plan: Paste `phui-oi-list-view.css` into https://jigsaw.w3.org/css-validator/ and read some CSS docs.

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

+4 -4
+3 -3
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '3144a5e2', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '10815c8e', 12 + 'core.pkg.css' => 'ba74ba77', 13 13 'core.pkg.js' => '086da722', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => '91ac6214', ··· 132 132 'rsrc/css/phui/object-item/phui-oi-color.css' => 'b517bfa0', 133 133 'rsrc/css/phui/object-item/phui-oi-drag-ui.css' => 'da15d3dc', 134 134 'rsrc/css/phui/object-item/phui-oi-flush-ui.css' => '490e2e2e', 135 - 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '2c4e34fa', 135 + 'rsrc/css/phui/object-item/phui-oi-list-view.css' => '187460f1', 136 136 'rsrc/css/phui/object-item/phui-oi-simple-ui.css' => '9b03a61f', 137 137 'rsrc/css/phui/phui-action-list.css' => 'd26ccb62', 138 138 'rsrc/css/phui/phui-action-panel.css' => '6c386cbf', ··· 867 867 'phui-oi-color-css' => 'b517bfa0', 868 868 'phui-oi-drag-ui-css' => 'da15d3dc', 869 869 'phui-oi-flush-ui-css' => '490e2e2e', 870 - 'phui-oi-list-view-css' => '2c4e34fa', 870 + 'phui-oi-list-view-css' => '187460f1', 871 871 'phui-oi-simple-ui-css' => '9b03a61f', 872 872 'phui-pager-css' => 'd022c7ad', 873 873 'phui-pinboard-view-css' => '1f08f5d8',
+1 -1
webroot/rsrc/css/phui/object-item/phui-oi-list-view.css
··· 120 120 } 121 121 122 122 .device .phui-oi-grippable { 123 - cursor: normal; 123 + cursor: default; 124 124 } 125 125 126 126 .phui-oi-grip {