mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
@page
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.PopoversModel
|
|
@{
|
|
ViewData["Title"] = "Badges";
|
|
}
|
|
|
|
<h2>Popovers</h2>
|
|
|
|
<p>Based on <a href="https://getbootstrap.com/docs/4.1/components/Popovers/" target="_blank"> Bootstrap Popovers</a>.</p>
|
|
|
|
<h4># Popovers Examples</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
|
|
<abp-button abp-popover="Hi, i'm popover content!">
|
|
Popover Default
|
|
</abp-button>
|
|
<abp-button abp-popover-top="Hi, i'm popover content!" title="Popover Title">
|
|
Popover With Title
|
|
</abp-button>
|
|
<abp-button abp-popover-right="Hi, i'm popover content!" title="Popover Title" dismissible="true">
|
|
Dismissible Popover
|
|
</abp-button>
|
|
<abp-button abp-popover-left="Hi, i'm popover content!" title="Popover Title" disabled="true">
|
|
Disabled Popover
|
|
</abp-button>
|
|
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-button abp-popover="Hi, i'm popover content!">
|
|
Popover Default
|
|
</abp-button>
|
|
<abp-button abp-popover-top="Hi, i'm popover content!" title="Popover Title">
|
|
Popover With Title
|
|
</abp-button>
|
|
<abp-button abp-popover-right="Hi, i'm popover content!" title="Popover Title" dismissible="true">
|
|
Dismissible Popover
|
|
</abp-button>
|
|
<abp-button abp-popover-left="Hi, i'm popover content!" title="Popover Title" disabled="true">
|
|
Disabled Popover
|
|
</abp-button>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|
|
|