donation/public/assets/html/material/ui-notifications.html

525 lines
37 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
@@include("partials/title-meta.html", {"title": "Notifications"})
<!-- Jquery Toast css -->
<link href="../assets/libs/jquery-toast-plugin/jquery.toast.min.css" rel="stylesheet" type="text/css" />
@@include('./partials/head-css.html')
</head>
<body class="loading">
<!-- Begin page -->
<div id="wrapper">
@@include('./partials/topbar.html')
@@include('./partials/left-sidebar.html')
<!-- ============================================================== -->
<!-- Start Page Content here -->
<!-- ============================================================== -->
<div class="content-page">
<div class="content">
<!-- Start Content-->
<div class="container-fluid">
<!-- start page title -->
<div class="row">
<div class="col-12">
<div class="page-title-box page-title-box-alt">
<h4 class="page-title">Notifications</h4>
<div class="page-title-right">
<ol class="breadcrumb m-0">
<li class="breadcrumb-item"><a href="javascript: void(0);">Minton</a></li>
<li class="breadcrumb-item"><a href="javascript: void(0);">UI</a></li>
<li class="breadcrumb-item active">Notifications</li>
</ol>
</div>
</div>
</div>
</div>
<!-- end page title -->
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<h4 class="header-title">Bootstrap Toasts</h4>
<p class="text-muted">Push notifications to your visitors with a toast, a lightweight and easily customizable alert message.</p>
<div class="row">
<div class="col-md-6">
<h5 class="mb-2">Basic</h5>
<p class="text-muted">Toasts are as flexible as you need and have very little required markup. At a minimum, we
require a single element to contain your “toasted” content and strongly encourage a dismiss button.</p>
<div class="p-3">
<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-toggle="toast">
<div class="toast-header">
<img src="../assets/images/users/avatar-2.jpg" alt="user-image" height="28" class="mr-1 rounded" />
<strong class="mr-auto">Alfredo</strong>
<small>11 mins ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div> <!--end toast-->
</div>
</div> <!-- end col-->
<div class="col-md-6">
<h5 class="mb-2">Translucent</h5>
<p class="text-muted">Toasts are slightly translucent, too, so they blend over whatever they might appear over.
For browsers that support the backdrop-filter CSS property, well also attempt to blur the elements under a toast.</p>
<div class="p-3 bg-secondary">
<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-toggle="toast">
<div class="toast-header">
<img src="../assets/images/users/avatar-2.jpg" alt="user-image" height="28" class="mr-1 rounded" />
<strong class="mr-auto">Andrew</strong>
<small>11 mins ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div> <!--end toast-->
</div>
</div> <!-- end col-->
</div>
<!-- end row-->
<div class="row">
<div class="col-md-6 mt-4">
<h5 class="mb-2">Stacking</h5>
<p class="text-muted">When you have multiple toasts, we default to vertiaclly stacking them in a readable manner.</p>
<div class="p-3">
<div aria-live="polite" aria-atomic="true" style="position: relative; min-height: 200px;">
<!-- Position it -->
<div style="position: absolute; top: 0; right: 0;">
<!-- Then put toasts within -->
<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-toggle="toast">
<div class="toast-header">
<img src="../assets/images/users/avatar-4.jpg" alt="user-image" height="28" class="mr-1 rounded" />
<strong class="mr-auto">Richard</strong>
<small class="text-muted">just now</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="toast-body">
See? Just like this.
</div>
</div> <!--end toast-->
<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-toggle="toast">
<div class="toast-header">
<img src="../assets/images/users/avatar-5.jpg" alt="user-image" height="28" class="mr-1 rounded" />
<strong class="mr-auto">Edward</strong>
<small class="text-muted">2 seconds ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="toast-body">
Heads up, toasts will stack automatically
</div>
</div> <!--end toast-->
</div>
</div>
</div>
</div> <!-- end col-->
<div class="col-md-6 mt-4">
<h5 class="mb-2">Placement</h5>
<p class="text-muted">Place toasts with custom CSS as you need them. The top right is often used for
notifications, as is the top middle. If youre only ever going to show one toast at a time, put the positioning
styles right on the <code>.toast</code>.</p>
<div class="p-3">
<div aria-live="polite" aria-atomic="true" class="d-flex justify-content-center align-items-center" style="min-height: 200px;">
<!-- Then put toasts within -->
<div class="toast fade show" role="alert" aria-live="assertive" aria-atomic="true" data-toggle="toast">
<div class="toast-header">
<img src="../assets/images/users/avatar-6.jpg" alt="user-image" height="28" class="mr-1 rounded" />
<strong class="mr-auto">Ronnie</strong>
<small>11 mins ago</small>
<button type="button" class="ml-2 mb-1 close" data-dismiss="toast" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="toast-body">
Hello, world! This is a toast message.
</div>
</div> <!--end toast-->
</div>
</div>
</div> <!-- end col-->
</div>
<!-- end row-->
</div> <!-- end card-body-->
</div> <!-- end card-->
</div> <!-- end col-->
</div>
<div class="row">
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h4 class="header-title">Default Alert</h4>
<p class="sub-header">
Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight
<strong>required</strong> contextual classes (e.g., <code>.alert-success</code>).
</p>
<div class="alert alert-primary" role="alert">
This is a <strong>primary</strong> alert—check it out!
</div>
<div class="alert alert-secondary" role="alert">
This is a <strong>secondary</strong> alert—check it out!
</div>
<div class="alert alert-success" role="alert">
<i class="mdi mdi-check-all mr-2"></i> This is a <strong>success</strong> alert—check it out!
</div>
<div class="alert alert-danger" role="alert">
<i class="mdi mdi-block-helper mr-2"></i> This is a <strong>danger</strong> alert—check it out!
</div>
<div class="alert alert-warning" role="alert">
<i class="mdi mdi-alert-outline mr-2"></i> This is a <strong>warning</strong> alert—check it out!
</div>
<div class="alert alert-info" role="alert">
<i class="mdi mdi-alert-circle-outline mr-2"></i> A simple info alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-light" role="alert">
A simple light alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
<div class="alert alert-dark mb-0" role="alert">
A simple dark alert with <a href="#" class="alert-link">an example link</a>. Give it a click if you like.
</div>
</div>
</div> <!-- end card-->
</div> <!-- end col -->
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h4 class="header-title">Dismissing Alerts</h4>
<p class="sub-header">
Add a dismiss button and the <code>.alert-dismissible</code> class, which adds extra padding
to the right of the alert and positions the <code>.close</code> button.
</p>
<div class="alert alert-primary alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a primary alert—check it out!
</div>
<div class="alert alert-secondary alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a secondary alert—check it out!
</div>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a success alert—check it out!
</div>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a danger alert—check it out!
</div>
<div class="alert alert-warning alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a warning alert—check it out!
</div>
<div class="alert alert-info alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a info alert—check it out!
</div>
<div class="alert alert-light alert-dismissible fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a light alert—check it out!
</div>
<div class="alert alert-dark alert-dismissible fade show mb-0" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a dark alert—check it out!
</div>
</div>
</div> <!-- end card-->
</div> <!-- end col -->
</div>
<!-- end row -->
<div class="row">
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h4 class="header-title">Custom Outline Alert</h4>
<p class="sub-header">
Use <code>.bg-transparent</code>,<code>.text-*</code> classes.
</p>
<div class="alert alert-primary alert-dismissible bg-transparent text-primary fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a primary alert—check it out!
</div>
<div class="alert alert-secondary alert-dismissible bg-transparent text-secondary fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a secondary alert—check it out!
</div>
<div class="alert alert-success alert-dismissible bg-transparent text-success fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a success alert—check it out!
</div>
<div class="alert alert-danger alert-dismissible bg-transparent text-danger fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a danger alert—check it out!
</div>
<div class="alert alert-warning alert-dismissible bg-transparent text-warning fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a warning alert—check it out!
</div>
<div class="alert alert-info alert-dismissible bg-transparent text-info fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a info alert—check it out!
</div>
<div class="alert alert-light alert-dismissible bg-transparent text-dark fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a light alert—check it out!
</div>
<div class="alert alert-dark alert-dismissible bg-transparent text-dark fade show mb-0" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a dark alert—check it out!
</div>
</div>
</div> <!-- end card -->
</div> <!-- end col -->
<div class="col-lg-6">
<div class="card">
<div class="card-body">
<h4 class="header-title">Custom Background Alert</h4>
<p class="sub-header">
Use <code>.bg-*</code>,<code>.border-0</code> classes.
</p>
<div class="alert alert-primary alert-dismissible bg-primary text-white border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a primary alert—check it out!
</div>
<div class="alert alert-secondary alert-dismissible bg-secondary text-white border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a secondary alert—check it out!
</div>
<div class="alert alert-success alert-dismissible bg-success text-white border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a success alert—check it out!
</div>
<div class="alert alert-danger alert-dismissible bg-danger text-white border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a danger alert—check it out!
</div>
<div class="alert alert-warning alert-dismissible bg-warning text-white border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a warning alert—check it out!
</div>
<div class="alert alert-info alert-dismissible bg-info text-white border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a info alert—check it out!
</div>
<div class="alert alert-light alert-dismissible bg-light text-dark border-0 fade show" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a light alert—check it out!
</div>
<div class="alert alert-dark alert-dismissible bg-dark text-light border-0 fade show mb-0" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
This is a dark alert—check it out!
</div>
</div>
</div> <!-- end card -->
</div> <!-- end col -->
</div>
<!-- end row -->
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<div class="table-responsivee">
<table class="table table-borderless table-centered mb-0">
<thead class="thead-light">
<tr>
<th style="min-width:50%;">Jquery Toast</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>Info Example</td>
<td>
<button type="button" class="btn btn-info waves-effect waves-light btn-sm" id="toastr-one">Click me</button>
</td>
</tr>
<tr>
<td>Warning Example</td>
<td>
<button type="button" class="btn btn-warning waves-effect waves-light btn-sm" id="toastr-two">Click me</button>
</td>
</tr>
<tr>
<td>Success Example</td>
<td>
<button type="button" class="btn btn-success waves-effect waves-light btn-sm" id="toastr-three">Click me</button>
</td>
</tr>
<tr>
<td>Danger Example</td>
<td>
<button type="button" class="btn btn-danger waves-light waves-effect btn-sm" id="toastr-four">Click me</button>
</td>
</tr>
<tr>
<td>The text can be an array</td>
<td>
<button type="button" class="btn btn-light waves-effect btn-sm" id="toastr-five">Click me</button>
</td>
</tr>
<tr>
<td>Put some HTML in the text</td>
<td>
<button type="button" class="btn btn-light waves-effect btn-sm" id="toastr-six">Click me</button>
</td>
</tr>
<tr>
<td>Making them sticky</td>
<td>
<button type="button" class="btn btn-light waves-effect btn-sm" id="toastr-seven">Click me</button>
</td>
</tr>
<tr>
<td>Fade transitions</td>
<td>
<button type="button" class="btn btn-light waves-effect btn-sm" id="toastr-eight">Click me</button>
</td>
</tr>
<tr>
<td>Slide up and down transitions</td>
<td>
<button type="button" class="btn btn-light waves-effect btn-sm" id="toastr-nine">Click me</button>
</td>
</tr>
<tr>
<td>Simple show from and hide to corner transition</td>
<td>
<button type="button" class="btn btn-light waves-effect btn-sm" id="toastr-ten">Click me</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div> <!-- end card-box-->
</div> <!-- end col -->
</div>
<!-- end row -->
</div> <!-- container -->
</div> <!-- content -->
@@include('./partials/footer.html')
</div>
<!-- ============================================================== -->
<!-- End Page content -->
<!-- ============================================================== -->
</div>
<!-- END wrapper -->
@@include('./partials/right-sidebar.html')
<!-- Vendor js -->
<script src="../assets/js/vendor.min.js"></script>
<!-- Tost-->
<script src="../assets/libs/jquery-toast-plugin/jquery.toast.min.js"></script>
<!-- toastr init js-->
<script src="../assets/js/pages/toastr.init.js"></script>
<!-- App js -->
<script src="../assets/js/app.min.js"></script>
</body>
</html>