summaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
diff options
context:
space:
mode:
Diffstat (limited to 'lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html')
-rw-r--r--lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html b/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
index a3fcdb09e..0a24e9217 100644
--- a/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
+++ b/lib/toaster/toastergui/templates/snippets/pkg_dependencies_popover.html
@@ -2,11 +2,11 @@
{% with data.package_dependencies_source.all_depends.count as dep_count %}
{% load projecttags %}
{% if dep_count %}
- <a data-content="<ul class='unstyled'>
+ <a data-content="<ul class='list-unstyled'>
{% for dep in data.package_dependencies_source.all_depends %}
<li>{{dep.depends_on.name}} {% if dep.depends_on.size > 0 %}({{dep.depends_on.size|filtered_filesizeformat}}){% endif %}</li>
{% endfor %}
- </ul>" title="" class="btn" data-original-title="
+ </ul>" class="btn btn-default" title="
<strong>{{data.name}}</strong> dependencies - <strong>{{data.package_dependencies_source.get_total_source_deps_size.depends_on__size__sum|filtered_filesizeformat}}</strong>">
{{dep_count}}
</a>