mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 08:31:00 -04:00
We’ve seen in research a user getting stuck playing with the scheduler. They picked a day, but then didn’t want to choose one of the options for that day. There’s no way to do this except pick a day and then un-pick it. What they ended up doing was clicking the grey back button, which took them back to the previous page, making them upload their file again. This commit adds a ‘back’ link for the scheduler. ‘Back’ seems like sensible naming because that’s the thing that the user tried to click, and the UI of a link matches the thing they clicked to get into this situation.
58 lines
835 B
SCSS
58 lines
835 B
SCSS
.radio-select {
|
|
|
|
&-column {
|
|
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
.multiple-choice {
|
|
margin-right: 5px;
|
|
padding-right: 10px;
|
|
padding-left: 54px - 10px;
|
|
}
|
|
|
|
}
|
|
|
|
.js-reset-button,
|
|
.js-category-button {
|
|
|
|
background: none;
|
|
text-decoration: underline;
|
|
color: $link-colour;
|
|
border: none;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
width: auto;
|
|
padding: 7px 20px 7px 10px;
|
|
margin-right: 5px;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: $link-hover-colour;
|
|
}
|
|
|
|
}
|
|
|
|
.js-reset-button-block {
|
|
display: block;
|
|
width: 100%;
|
|
text-align: left;
|
|
padding: 20px 20px $gutter 57px;
|
|
}
|
|
|
|
.js-enabled & {
|
|
|
|
overflow: visible;
|
|
|
|
.multiple-choice {
|
|
display: none;
|
|
}
|
|
|
|
.js-multiple-choice {
|
|
display: block;
|
|
}
|
|
|
|
}
|
|
|
|
}
|