open-vault/ui/app/templates/components/info-tooltip.hbs
Matthew Irish 572fb826be
UI aws engine tweaks (#5294)
* allow passing a path for options so that it can be extracted from the model

* add cred type selector for the aws generate form

* style hint text on generate creds form

* add tests for aws-credential adapter

* allow for the case where we might have zero ttl

* show error for TTL picker if a non-number is entered for the duration part of the TTL

* fix positioning of tooltips

* fix ttl rendering with invalid input for initialValue
2018-09-28 16:45:30 -05:00

15 lines
411 B
Handlebars

{{#tool-tip as |d|}}
{{#d.trigger tagName="button" type="button" class=(concat "tool-tip-trigger button") data-test-tool-tip-trigger=true}}
{{i-con glyph="information-reversed"
class="auto-width"
size=16
aria-label="help"
excludeIconClass=true
}}
{{/d.trigger}}
{{#d.content class="tool-tip"}}
<div class="box">
{{yield}}
</div>
{{/d.content}}
{{/tool-tip}}