-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Severity: Medium - Accessibility Issue
Description:
Checkboxes are not visible to users when they want to unmask UPNs of pupils transferring to/joining their schools because the css class .govuk-checkboxes__input has opacity: 0, making it completely transparent.
Current State:
.govuk-checkboxes__input {
z-index: 1;
width: 44px;
height: 44px;
margin: 0;
opacity: 0; /* ← This hides the checkbox */
cursor: pointer;
}
1
2
Expected State:
.govuk-checkboxes__input {
z-index: 1;
width: 44px;
height: 44px;
margin: 0;
opacity: 1; /* ← Should be visible */
cursor: pointer;
}
Impact:
- Users cannot see checkboxes
- Creates confusion for users trying to interact with forms
Steps to Reproduce:
- Log in with giap.testusers+SchoolUser1forLA937@education.gov.uk in PP
- Search via NPD with *
- Attempt to download NPD data
- Observe that checkbox elements are invisible
- Inspect element and note
opacity: 0
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working