Fixed permission state explanation checkboxes rendering

This commit is contained in:
Jan Böhmer 2022-11-13 18:21:22 +01:00
parent 63a1855eb6
commit e2875adc22

View file

@ -57,11 +57,11 @@
<label class="form-check-label opacity-100">{% trans %}permission.legend.disallow{% endtrans %}</label>
</div>
<div class="form-check form-check-inline">
<input class="form-check-input" type="checkbox" disabled>
<input class="form-check-input" type="checkbox" checked disabled>
<label class="form-check-label opacity-100">{% trans %}permission.legend.allow{% endtrans %}</label>
</div>
<div class="form-check form-check-inline">
<input type="checkbox" class="tristate form-check-input" indeterminate="indeterminate" disabled>
<input type="checkbox" class="tristate form-check-input" indeterminate="indeterminate" value="indeterminate" disabled>
<label class="form-check-label opacity-100">{% trans %}permission.legend.inherit{% endtrans %}</label>
</div>
</div>