https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42299 David Nind <david@davidnind.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Text to go in the| |This fixes an accessibility release notes| |issue for star ratings on | |the OPAC record details | |page - it adds a label for | |screen reader patrons. CC| |david@davidnind.com --- Comment #3 from David Nind <david@davidnind.com> --- Testing notes (using KTD): 1. Before the patch, inspecting the HTML source: ... <div class="br-wrapper br-theme-fontawesome-stars"> <select id="star_rating" class="star_rating" name="rating" data-biblionumber="262" data-context="rating-262" autocomplete="off" style="display: none;"> ... 2. After the patch: ... added--> <label for="star_rating" class="sr-only">Rate this title from 1 to 5 stars</label> <div class="br-wrapper br-theme-fontawesome-stars"> <select id="star_rating" class="star_rating" name="rating" data-biblionumber="262" data-context="rating-262" autocomplete="off" style="display: none;"> ... -- You are receiving this mail because: You are watching all bug changes.