base tabler
This commit is contained in:
parent
ac2cfa9fe1
commit
0f84beacf1
1432 changed files with 28760 additions and 1 deletions
15
liquid/includes/ui/modal.html
Normal file
15
liquid/includes/ui/modal.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!-- BEGIN MODAL -->
|
||||
{% assign modal-id = include.modal-id | default: 'simple' %}
|
||||
{% assign size = include['size'] %}
|
||||
{% assign inline = include.inline | default: false %}
|
||||
|
||||
{% capture_modal inline %}
|
||||
<div class="modal modal-blur fade{% if include.class %} {{ include.class }}{% endif %}{% if include.show %} show{% endif %}" {% if include.style %} style="{{ include.style }}"{% endif %} id="modal-{{ modal-id }}" tabindex="-1" role="dialog"{% if include.show %} aria-hidden="false"{% else %} aria-hidden="true"{% endif %}>
|
||||
<div class="modal-dialog{% if size%} modal-{{ size }}{% endif %}{% unless include.top %} modal-dialog-centered{% endunless %}{% if include.scrollable %} modal-dialog-scrollable{% endif %}" role="document">
|
||||
<div class="modal-content">
|
||||
{% include "parts/modals/{{ modal-id }}.html" %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endcapture_modal %}
|
||||
<!-- END MODAL -->
|
||||
Loading…
Add table
Add a link
Reference in a new issue