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

Put the keyboard focus reticle back on top of diffs

Summary:
Fixes T10954. This got hidden underneath things at some point.

Use `pointer-events: none` to make the mouse ignore the element so that hover/select/edit/click still work "through" the element.

Design could probably be improved here, maybe I'll make it more-visible when you press {key n} and then have it fade quickly so it kind of gets out of your way once you find the block you want to read.

Test Plan: {F4921746}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10954

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

+7 -6
+3 -2
webroot/rsrc/css/application/base/standard-page-view.css
··· 61 61 } 62 62 63 63 .keyboard-focus-focus-reticle { 64 - background: #ffffd3; 64 + background: rgba(255, 255, 211, 0.15); 65 65 position: absolute; 66 - border: 1px solid #999900; 66 + border: 1px solid {$yellow}; 67 + pointer-events: none; 67 68 } 68 69 69 70 a.handle-status-closed {
+4 -4
webroot/rsrc/css/core/z-index.css
··· 2 2 * @provides phabricator-zindex-css 3 3 */ 4 4 5 - .keyboard-focus-focus-reticle { 6 - z-index: 1; 7 - } 8 - 9 5 .device .phabricator-action-list-view.phabricator-action-list-toggle, 10 6 .device-desktop .phui-document-content 11 7 .phabricator-action-list-view.phabricator-action-list-toggle { 12 8 z-index: 1; 9 + } 10 + 11 + .keyboard-focus-focus-reticle { 12 + z-index: 2; 13 13 } 14 14 15 15 .device-desktop .phui-timeline-minor-event .phui-timeline-image {