Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[Site] Fix tooltips positioning on FileTree component #2190

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ux.symfony.com/assets/styles/components/_FileTree.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

.FileTree li > span {
display: flex;
display: inline-flex;
flex-direction: row;
align-items: center;
gap: .75rem;
Expand Down
2 changes: 1 addition & 1 deletion ux.symfony.com/templates/main/_file_tree.html.twig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% macro summaryAttributes(description) %}
{% if description %}
data-bs-toggle="tooltip" data-bs-html="true" data-bs-placement="auto" title="{{ description|e('html_attr') }}"
data-bs-toggle="tooltip" data-bs-html="true" data-bs-placement="right" title="{{ description|e('html_attr') }}"
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not required for the fix, but it was more friendly

{% endif %}
{% endmacro %}

Expand Down