mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-14 02:26:55 -07:00
Tooltips
This commit is contained in:
parent
f7f66d4c11
commit
83bb86de06
9 changed files with 61 additions and 87 deletions
|
@ -363,6 +363,14 @@ namespace Ombi.UI.Helpers
|
|||
return helper.Raw(returnString);
|
||||
}
|
||||
|
||||
public static IHtmlString ToolTip(this HtmlHelpers helper, string tooltipText)
|
||||
{
|
||||
//< span class="customTooltip" title="It also requires users to have the Newsletter feature"><i class="fa fa-info-circle"></i></span>
|
||||
return
|
||||
helper.Raw(
|
||||
$"<span class=\"customTooltip\" title=\"{tooltipText}\"><i class=\"fa fa-info-circle\"></i></span>");
|
||||
}
|
||||
|
||||
public static IHtmlString GetBaseUrl(this HtmlHelpers helper)
|
||||
{
|
||||
return helper.Raw(GetBaseUrl());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue