blur-admin/src/app/pages/ui/alerts/alerts.html

87 lines
3.4 KiB
HTML

<div class="widgets">
<div class="row">
<div class="col-md-6"
ba-panel
ba-panel-title="Basic"
ba-panel-class="with-scroll">
<div >
<div class="alert bg-success">
<strong>Well done!</strong> You successfully read this important alert message.
</div>
<div class="alert bg-info">
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
</div>
<div class="alert bg-warning">
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
<div class="alert bg-danger">
<strong>Oh snap!</strong> Change a few things up and try submitting again.
</div>
</div>
</div>
<div class="col-md-6"
ba-panel
ba-panel-title="Dismissible alerts"
ba-panel-class="with-scroll">
<div >
<div class="alert bg-success closeable" role="alert"><button type="button" class="close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<strong>Well done!</strong> You successfully read this important alert message.
</div>
<div class="alert bg-info closeable" role="alert"><button type="button" class="close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
</div>
<div class="alert bg-warning closeable" role="alert"><button type="button" class="close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<strong>Warning!</strong> Better check yourself, you're not looking too good.
</div>
<div class="alert bg-danger closeable" role="alert"><button type="button" class="close" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<strong>Oh snap!</strong> Change a few things up and try submitting again.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6"
ba-panel
ba-panel-title="Links in alerts"
ba-panel-class="with-scroll">
<div >
<div class="alert bg-success">
<strong>Well done!</strong> You successfully read <a href class="alert-link">this important alert message</a>.
</div>
<div class="alert bg-info">
<strong>Heads up!</strong> This <a href class="alert-link">alert needs your attention</a>, but it's not super important.
</div>
<div class="alert bg-warning">
<strong>Warning!</strong> Better check yourself, you're <a href class="alert-link">not looking too good</a>.
</div>
<div class="alert bg-danger">
<strong>Oh snap!</strong> <a href class="alert-link">Change a few things up</a> and try submitting again.
</div>
</div>
</div>
<div class="col-md-6"
ba-panel
ba-panel-title="Composite alerts"
ba-panel-class="with-scroll">
<div >
<div class="alert bg-warning">
<h4>Warning!</h4>
<strong>Pay attention.</strong> Change a few things up and try submitting again.
<div class="control-alert">
<button type="button" class="btn btn-danger">Pay Attention</button>
<button type="button" class="btn btn-primary">Ignore</button>
</div>
</div>
</div>
</div>
</div>
</div>