Files
Phraseanet/templates/web/prod/Tooltip/Tooltip.html.twig
Ysolyne Gresille 6293f94715 View bug fixes
2012-05-24 18:30:37 +02:00

15 lines
594 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 %}max-width:{{ maxwidth }}px;{% endif %}{% if width %}width:{{ width }}px;{% endif %}position:relative;">
<div class="arrow"></div>
<div class="popover-inner" style="width:auto;">
<h3 class="popover-title">
{% if title %}
{{ 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>