Add frontend support for long multiple choice widgets

This commit is contained in:
Raphael Michel
2017-10-13 15:57:42 +02:00
parent b9b509ad9b
commit b4928f662a
2 changed files with 31 additions and 0 deletions

View File

@@ -245,3 +245,16 @@ label .optional {
color: $text-muted;
font-weight: normal;
}
.scrolling-multiple-choice {
height: 150px;
border: 1px solid $input-border;
border-radius: $input-border-radius;
padding-left: 15px;
overflow-y: auto;
padding-top: 5px;
.radio:first-of-type, .checkbox:first-of-type {
margin-top: 0;
}
}