Add spacing to daterange filter inputs (#6182)

pull/5928/head
Dan Braghis 2020-06-27 10:20:20 +01:00 zatwierdzone przez GitHub
rodzic 1b92c0a9ea
commit bce1e440bd
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -242,6 +242,11 @@ li.focused > .help {
}
}
.daterange_field {
input:last-of-type {
margin-top: 1.2em; // Mirrors the label 1.2em top padding.
}
}
// This is specifically for model that are a generated set of checkboxes/radios
.model_multiple_choice_field .input li,

Wyświetl plik

@ -1 +1,3 @@
<div class="daterange_field">
{% for widget in widget.subwidgets %}{% include widget.template_name %}{% endfor %}
</div>