File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 33// @namespace http://axSgrease.nvaccess.org/
44// @description Improves the accessibility of GitHub.
55// @author James Teh <jteh@mozilla.com>
6- // @copyright 2019-2024 Mozilla Corporation, Derek Riemer
6+ // @copyright 2019-2025 Mozilla Corporation, Derek Riemer
77// @license Mozilla Public License version 2.0
8- // @version 2024.2
8+ // @version 2025.1
99// @include https://github.com/*
1010// ==/UserScript==
1111
@@ -136,6 +136,11 @@ const DYNAMIC_TWEAKS = [
136136 if ( code && comment ) {
137137 makeElementOwn ( cell , [ code , comment ] ) ;
138138 }
139+ if ( comment ) {
140+ // These buttons only appear on hover, which sucks for screen reader users.
141+ // Make them always visible.
142+ comment . style . display = "block" ;
143+ }
139144 } } ,
140145 // Make non-comment events into headings; e.g. closing/referencing an issue,
141146 // approving/requesting changes to a PR, merging a PR. Exclude commits and
You can’t perform that action at this time.
0 commit comments