mirror of https://github.com/abpframework/abp
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.
54 lines
1.4 KiB
54 lines
1.4 KiB
@page
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.TooltipsModel
|
|
@{
|
|
ViewData["Title"] = "Badges";
|
|
}
|
|
|
|
<h2>Tooltips</h2>
|
|
|
|
<p>Based on <a href="https://getbootstrap.com/docs/4.1/components/tooltips/" target="_blank"> Bootstrap Tooltips</a>.</p>
|
|
|
|
<h4># Tooltips Examples</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
|
|
<abp-button abp-tooltip="Tooltip Default">
|
|
Tooltip Default
|
|
</abp-button>
|
|
<abp-button abp-tooltip-top="Tooltip on top">
|
|
Tooltip on top
|
|
</abp-button>
|
|
<abp-button abp-tooltip-right="Tooltip on right">
|
|
Tooltip on right
|
|
</abp-button>
|
|
<abp-button abp-tooltip-bottom="Tooltip on bottom">
|
|
Tooltip on bottom
|
|
</abp-button>
|
|
<abp-button abp-tooltip-left="Tooltip on left">
|
|
Tooltip on left
|
|
</abp-button>
|
|
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-button abp-tooltip="Tooltip Default">
|
|
Tooltip Default
|
|
</abp-button>
|
|
<abp-button abp-tooltip-top="Tooltip on top">
|
|
Tooltip on top
|
|
</abp-button>
|
|
<abp-button abp-tooltip-right="Tooltip on right">
|
|
Tooltip on right
|
|
</abp-button>
|
|
<abp-button abp-tooltip-bottom="Tooltip on bottom">
|
|
Tooltip on bottom
|
|
</abp-button>
|
|
<abp-button abp-tooltip-left="Tooltip on left">
|
|
Tooltip on left
|
|
</abp-button>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|