# HG changeset patch
# User Arthur Lutz <arthur.lutz@logilab.fr>
# Date 1481302828 -3600
#      Fri Dec 09 18:00:28 2016 +0100
# Node ID bae55dba843a513e5132293821f9a0c2a52a0481
# Parent  c1f3f939d10b819e0946f6820d4743170ab006eb
[views] don't use <b>, use a diff

diff --git a/views.py b/views.py
--- a/views.py
+++ b/views.py
@@ -293,7 +293,7 @@
                 else:
                     del url_params['es_{}'.format(attribute)]
                 url = self._cw.build_url(**url_params)
-                content = selected and '<b>{}</b>'.format(tag) or tag
+                content = selected and '<div class="facet-active">{}</div>'.format(tag) or tag
                 self.w(facet_item.format(url,
                                          content,
                                          count))