Files
notifications-admin/app/assets/stylesheets/components/radio-select.scss
T

60 lines
856 B
SCSS
Raw Normal View History

.radio-select {
2018-01-15 11:35:45 +00:00
min-height: 39px;
&-column {
display: inline-block;
vertical-align: top;
.multiple-choice {
2016-10-11 14:17:29 +01:00
margin-right: 5px;
padding-right: 10px;
2016-10-11 14:17:29 +01:00
padding-left: 54px - 10px;
}
}
.js-reset-button,
.js-category-button {
2017-04-11 17:22:44 +01:00
background: none;
text-decoration: underline;
color: $link-colour;
border: none;
display: inline-block;
vertical-align: top;
width: auto;
padding: 7px 20px 7px 10px;
2016-10-11 14:17:29 +01:00
margin-right: 5px;
2017-04-11 17:22:44 +01:00
cursor: pointer;
&:hover {
color: $link-hover-colour;
}
}
2017-04-26 11:28:22 +01:00
.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;
}
}
}