diff options
Diffstat (limited to 'templates/web/base')
-rw-r--r-- | templates/web/base/around/on_map_list_items.html | 2 | ||||
-rwxr-xr-x | templates/web/base/around/tabbed_lists.html | 2 | ||||
-rw-r--r-- | templates/web/base/front/recent.html | 2 | ||||
-rw-r--r-- | templates/web/base/my/_problem-list.html | 4 | ||||
-rw-r--r-- | templates/web/base/my/my.html | 2 | ||||
-rw-r--r-- | templates/web/base/report/_item.html | 4 | ||||
-rw-r--r-- | templates/web/base/reports/_problem-list.html | 4 |
7 files changed, 10 insertions, 10 deletions
diff --git a/templates/web/base/around/on_map_list_items.html b/templates/web/base/around/on_map_list_items.html index 90f836fc8..b7257030d 100644 --- a/templates/web/base/around/on_map_list_items.html +++ b/templates/web/base/around/on_map_list_items.html @@ -8,7 +8,7 @@ [% INCLUDE 'reports/_list-entry.html' %] [% END %] [% ELSE %] - <li class="empty"> + <li class="item-list__item item-list__item--empty"> <p>[% loc('There are no reports to show.') %]</p> </li> [% END %] diff --git a/templates/web/base/around/tabbed_lists.html b/templates/web/base/around/tabbed_lists.html index 2828027e2..b0d46444d 100755 --- a/templates/web/base/around/tabbed_lists.html +++ b/templates/web/base/around/tabbed_lists.html @@ -1,5 +1,5 @@ [% INCLUDE "reports/_list-filters.html" %] -<ul id="current" class="issue-list-a"> +<ul id="current" class="item-list item-list--reports"> [% INCLUDE "around/on_map_list_items.html" %] </ul> diff --git a/templates/web/base/front/recent.html b/templates/web/base/front/recent.html index de74f3326..cb83c51b8 100644 --- a/templates/web/base/front/recent.html +++ b/templates/web/base/front/recent.html @@ -13,7 +13,7 @@ </h2> <section class="full-width"> - <ul class="issue-list-a"> + <ul class="item-list item-list--reports item-list--front-page"> [% FOREACH problem IN recent_photos %] [% INCLUDE 'front/_list-entry.html' %] [% END %] diff --git a/templates/web/base/my/_problem-list.html b/templates/web/base/my/_problem-list.html index 4b5fc73d6..e74dd25ec 100644 --- a/templates/web/base/my/_problem-list.html +++ b/templates/web/base/my/_problem-list.html @@ -1,10 +1,10 @@ -<ul class='issue-list-a full-width'> +<ul class='item-list item-list--reports full-width'> [% IF problems.size %] [% FOREACH problem = problems %] [% INCLUDE 'reports/_list-entry.html' no_fixed = 1 %] [% END %] [% ELSE %] - <li class="empty"> + <li class="item-list__item item-list__item--empty"> <p>[% loc('There are no reports to show.') %]</p> </li> [% END %] diff --git a/templates/web/base/my/my.html b/templates/web/base/my/my.html index 91cf40b68..9be4edfca 100644 --- a/templates/web/base/my/my.html +++ b/templates/web/base/my/my.html @@ -43,7 +43,7 @@ pager = updates_pager, param = 'u' %] - <ul class="issue-list full-width"> + <ul class="item-list item-list--updates full-width"> [% END %] <li>“[% u.text | html %]” diff --git a/templates/web/base/report/_item.html b/templates/web/base/report/_item.html index 2fcfa9fb8..d79a4e9f3 100644 --- a/templates/web/base/report/_item.html +++ b/templates/web/base/report/_item.html @@ -1,5 +1,5 @@ -<li> -<a class="text" href="[% c.uri_for('/report', problem.id ) %]"> +<li class="item-list__item item-list--reports__item [% item_extra_class %]"> +<a href="[% c.uri_for('/report', problem.id ) %]"> [% IF problem.photo; photo = problem.get_photo_params %] diff --git a/templates/web/base/reports/_problem-list.html b/templates/web/base/reports/_problem-list.html index a4c78877a..4da9e1bb6 100644 --- a/templates/web/base/reports/_problem-list.html +++ b/templates/web/base/reports/_problem-list.html @@ -5,13 +5,13 @@ </section> [% BLOCK column %] - <ul class="issue-list-a"> + <ul class="item-list item-list--reports"> [% IF problems %] [% FOREACH problem IN problems %] [% INCLUDE 'reports/_list-entry.html' include_sentinfo = 1 include_lastupdate = 1 %] [% END %] [% ELSE %] - <li class="empty"> + <li class="item-list__item item-list__item--empty"> <p>[% loc('There are no reports to show.') %]</p> </li> [% END %] |