1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-15 18:11:42 +04:00

Monorepo structure, remove Gulp, new build process (#2116)

This commit is contained in:
Paweł Kuna
2025-02-01 21:05:00 +01:00
committed by GitHub
parent ce98145fb2
commit eaa7f81604
2071 changed files with 1543 additions and 5560 deletions
+34
View File
@@ -0,0 +1,34 @@
---
title: Modals
page-header: Modals
page-menu: base.modals
layout: default
permalink: modals.html
---
<div class="card">
<div class="card-body">
<div class="btn-list">
{% include "ui/button.html" text="Simple modal" modal-id="simple" %}
{% include "ui/button.html" text="Large modal" modal-id="large" %}
{% include "ui/button.html" text="Small modal" modal-id="small" %}
{% include "ui/button.html" text="Full width modal" modal-id="full-width" %}
{% include "ui/button.html" text="Scrollable modal" modal-id="scrollable" %}
{% include "ui/button.html" text="Modal with form" modal-id="report" %}
{% include "ui/button.html" text="Success modal" modal-id="success" %}
{% include "ui/button.html" text="Danger modal" modal-id="danger" %}
{% include "ui/button.html" text="Modal with simple form" modal-id="team" %}
</div>
</div>
</div>
{% include "ui/modal.html" modal-id="simple" %}
{% include "ui/modal.html" modal-id="large" size="lg" %}
{% include "ui/modal.html" modal-id="small" size="sm" %}
{% include "ui/modal.html" modal-id="full-width" size="full-width" %}
{% include "ui/modal.html" modal-id="scrollable" scrollable=true %}
{% include "ui/modal.html" modal-id="report" size="lg" %}
{% include "ui/modal.html" modal-id="success" size="sm" %}
{% include "ui/modal.html" modal-id="danger" size="sm" %}
{% include "ui/modal.html" modal-id="team" %}