FIX: Show time input in poll builder (#9128)

This commit is contained in:
Bianca Nenciu 2020-03-16 14:25:45 +02:00 committed by GitHub
parent 453c3b6157
commit 5e4cf244a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -101,6 +101,9 @@
<div class="input-group poll-date">
{{date-picker-future value=date containerId="date-container"}}
{{input type="time" value=time}}
</div>
<div class="input-group poll-date">
<div id="date-container"></div>
</div>
{{/if}}

View File

@ -200,3 +200,9 @@ body.crawler {
}
}
}
.poll-ui-builder {
.poll-date input {
height: 30px;
}
}