Merge branch 'feat/pagination'

This commit is contained in:
Felix Hamann 2018-06-30 23:30:11 +02:00
commit 2c04ac6d95
4 changed files with 24 additions and 6 deletions

View File

@ -159,7 +159,6 @@ h4 {
.main__content {
position: relative;
background-color: white;
z-index: 0;
overflow: hidden;
> .container {
@ -291,7 +290,7 @@ a.btn.btn-info:hover,
.table__td {
font-size: 16px;
color: #808080;
color: var(--color-font);
line-height: 1.4;
vertical-align: top;
}

View File

@ -13,6 +13,7 @@
.alerts {
top: 150px;
bottom: auto;
}
}

View File

@ -10,6 +10,12 @@
if (requireds.length == 0) {
return false;
}
if (typeof button.dataset.formnorequired !== 'undefined' && button.dataset.formnorequired !== null) {
button.addEventListener('click', function() {
form.submit();
});
return false;
}
updateButtonState();
requireds.forEach(function(el) {
@ -66,10 +72,10 @@ document.addEventListener('DOMContentLoaded', function() {
var forms = document.querySelectorAll('form');
Array.from(forms).forEach(function(form) {
// auto reactiveButton submit-buttons with required fields
var submitBtn = form.querySelector('[type=submit]');
if (submitBtn) {
var submitBtns = Array.from(form.querySelectorAll('[type=submit]'));
submitBtns.forEach(function(submitBtn) {
window.utils.reactiveButton(form, submitBtn, validateForm);
}
});
// auto conditonal fieldsets
var fieldSets = Array.from(form.querySelectorAll('fieldset[data-conditional-id][data-conditional-value]'));

View File

@ -1,3 +1,15 @@
.hidden {
display: none;
visibility: hidden;
height: 0;
opacity: 0;
}
fieldset {
border: 0;
margin: 20px 0 30px;
legend {
display: none;
}
}