Files
notifications-admin/app/assets/stylesheets/components/radio-select.scss
Chris Hill-Scott 225a61ddd3 Add a component for picking the time to send a job
Users need to pick a time in the next 24hrs, or send a file immediately.

Rationale for this is a bit lost in time-before-holiday, but generally:

‘Now’ and ‘later’ as the inital choices makes it really clear what
this feature is about conceptually.

The choice of times is absolute, eg ‘1pm’ not ‘in 3 hours’
2016-08-31 16:58:09 +01:00

48 lines
565 B
SCSS

.radio-select {
&-column {
display: inline-block;
vertical-align: top;
.block-label {
margin-right: 10px;
}
}
.tertiary-button {
display: inline-block;
vertical-align: top;
width: auto;
padding: 20px 30px 15px 30px;
}
.js-enabled & {
.block-label {
&:last-child {
margin-bottom: 10px;
}
}
.block-label,
.tertiary-button {
display: none;
}
.js-visible {
display: block;
&.tertiary-button {
display: inline-block;
}
}
}
}