@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 .phabricator-main-menu-brand

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

Test Plan: Paste `main-menu-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/D25922

+7 -7
+6 -6
resources/celerity/map.php
··· 9 9 'names' => array( 10 10 'conpherence.pkg.css' => '2f25eb4f', 11 11 'conpherence.pkg.js' => '020aebcf', 12 - 'core.pkg.css' => '1ae55870', 12 + 'core.pkg.css' => '5eeca167', 13 13 'core.pkg.js' => 'f58c3c6e', 14 14 'dark-console.pkg.js' => '187792c2', 15 15 'differential.pkg.css' => 'b343ce15', ··· 39 39 'rsrc/css/aphront/typeahead.css' => '8779483d', 40 40 'rsrc/css/application/almanac/almanac.css' => '2e050f4f', 41 41 'rsrc/css/application/auth/auth.css' => 'c2f23d74', 42 - 'rsrc/css/application/base/main-menu-view.css' => '33820efe', 42 + 'rsrc/css/application/base/main-menu-view.css' => '741a6bba', 43 43 'rsrc/css/application/base/notification-menu.css' => '4df1ee30', 44 44 'rsrc/css/application/base/phui-theme.css' => '35883b37', 45 45 'rsrc/css/application/base/standard-page-view.css' => '392a0904', ··· 791 791 'phabricator-flag-css' => '2b77be8d', 792 792 'phabricator-keyboard-shortcut' => '1a844c06', 793 793 'phabricator-keyboard-shortcut-manager' => '81debc48', 794 - 'phabricator-main-menu-view' => '33820efe', 794 + 'phabricator-main-menu-view' => '741a6bba', 795 795 'phabricator-nav-view-css' => '423f92cc', 796 796 'phabricator-notification' => 'a9b91e3f', 797 797 'phabricator-notification-css' => '30240bd2', ··· 1212 1212 'javelin-dom', 1213 1213 'phabricator-notification', 1214 1214 ), 1215 - '33820efe' => array( 1216 - 'phui-theme-css', 1217 - ), 1218 1215 34450586 => array( 1219 1216 'javelin-color', 1220 1217 'javelin-install', ··· 1584 1581 'javelin-behavior-device', 1585 1582 'javelin-stratcom', 1586 1583 'phabricator-tooltip', 1584 + ), 1585 + '741a6bba' => array( 1586 + 'phui-theme-css', 1587 1587 ), 1588 1588 74446546 => array( 1589 1589 'javelin-behavior',
+1 -1
webroot/rsrc/css/application/base/main-menu-view.css
··· 59 59 60 60 .device-desktop .phabricator-main-menu-brand:hover { 61 61 background-color: rgba({$alphagrey},.2); 62 - cursor: hand; 62 + cursor: pointer; 63 63 } 64 64 65 65 .device-phone .phabricator-wordmark {