1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-25 20:44:38 +04:00

Release 1.0.0-alpha.20

This commit is contained in:
codecalm
2020-12-19 14:47:47 +01:00
parent 17ec2c39a1
commit c614f07252
143 changed files with 1490 additions and 606 deletions
+51 -15
View File
@@ -1,7 +1,7 @@
<!doctype html>
<!--
* Tabler - Premium and Open Source dashboard template with responsive and high quality UI.
* @version 1.0.0-alpha.19
* @version 1.0.0-alpha.20
* @link https://tabler.io
* Copyright 2018-2020 The Tabler Authors
* Copyright 2018-2020 codecalm.net Paweł Kuna
@@ -94,6 +94,9 @@
<a class="dropdown-item" href="./empty.html" >
Empty page
</a>
<a class="dropdown-item" href="./accordion.html" >
Accordion
</a>
<a class="dropdown-item" href="./blank.html" >
Blank page
</a>
@@ -127,11 +130,11 @@
<a class="dropdown-item" href="./maps-vector.html" >
Vector maps
</a>
</div>
<div class="dropdown-menu-column">
<a class="dropdown-item" href="./navigation.html" >
Navigation
</a>
</div>
<div class="dropdown-menu-column">
<a class="dropdown-item" href="./charts.html" >
Charts
</a>
@@ -354,8 +357,11 @@
<a href="#" class="btn btn-white" data-bs-toggle="modal" data-bs-target="#modal-report">
Modal with form
</a>
<a href="#" class="btn btn-white" data-bs-toggle="modal" data-bs-target="#modal-info">
Info modal
<a href="#" class="btn btn-white" data-bs-toggle="modal" data-bs-target="#modal-success">
Success modal
</a>
<a href="#" class="btn btn-white" data-bs-toggle="modal" data-bs-target="#modal-danger">
Danger modal
</a>
<a href="#" class="btn btn-white" data-bs-toggle="modal" data-bs-target="#modal-team">
Modal with simple form
@@ -382,7 +388,7 @@
All rights reserved.
</li>
<li class="list-inline-item">
<a href="./changelog.html" class="link-secondary" rel="noopener">v1.0.0-alpha.19</a>
<a href="./changelog.html" class="link-secondary" rel="noopener">v1.0.0-alpha.20</a>
</li>
</ul>
</div>
@@ -609,22 +615,52 @@
</div>
</div>
</div>
<div class="modal modal-blur fade" id="modal-info" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal modal-blur fade" id="modal-success" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
<div class="modal-body text-center py-5">
<svg xmlns="http://www.w3.org/2000/svg" class="icon mb-4 text-green" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="12" cy="12" r="9" /><path d="M9 12l2 2l4 -4" /></svg>
<div class="modal-status bg-success"></div>
<div class="modal-body text-center py-4">
<svg xmlns="http://www.w3.org/2000/svg" class="icon mb-2 text-green icon-lg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><circle cx="12" cy="12" r="9" /><path d="M9 12l2 2l4 -4" /></svg>
<h3>Payment succedeed</h3>
<div class="text-muted">Your payment of $290 has been successfully submitted. Your invoice has been sent to support@tabler.io.</div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-primary w-100" data-bs-dismiss="modal">
View invoice
</a>
<a href="#" class="btn btn-white w-100" data-bs-dismiss="modal">
Go to dashboard
</a>
<div class="w-100">
<div class="row">
<div class="col"><a href="#" class="btn btn-white w-100" data-bs-dismiss="modal">
Go to dashboard
</a></div>
<div class="col"><a href="#" class="btn btn-success w-100" data-bs-dismiss="modal">
View invoice
</a></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="modal modal-blur fade" id="modal-danger" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog modal-sm modal-dialog-centered" role="document">
<div class="modal-content">
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
<div class="modal-status bg-danger"></div>
<div class="modal-body text-center py-4">
<svg xmlns="http://www.w3.org/2000/svg" class="icon mb-2 text-danger icon-lg" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 9v2m0 4v.01" /><path d="M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75" /></svg>
<h3>Are you sure?</h3>
<div class="text-muted">Do you really want to remove 84 files? What you've done cannot be undone.</div>
</div>
<div class="modal-footer">
<div class="w-100">
<div class="row">
<div class="col"><a href="#" class="btn btn-white w-100" data-bs-dismiss="modal">
Cancel
</a></div>
<div class="col"><a href="#" class="btn btn-danger w-100" data-bs-dismiss="modal">
Delete 84 items
</a></div>
</div>
</div>
</div>
</div>
</div>