Files
Phraseanet/templates/web/prod/Tooltip/Tooltip.html.twig
2014-05-22 14:48:58 +02:00

15 lines
630 B
Twig
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="popover" style="display:block;{% if maxwidth is not none %}max-width:{{ maxwidth }}px;{% endif %}{% if width is not none %}width:{{ width }}px;{% endif %}position:relative;">
<div class="arrow"></div>
<div class="popover-inner" style="width:auto;">
<h3 class="popover-title">
{% if title is not none %}
{{ title }}
{% endif %}
<button data-dismiss="modal" class="close tooltip_closer" style="display:none;">×</button>
</h3>
<div class="popover-content">
{% block content %}{% endblock %}
</div>
</div>
</div>