Projet

Général

Profil

0001-template-add-.cell-body-class-to-notification-cell-5.patch

Thomas Jund (congés, retour le 29/04), 28 avril 2021 14:33

Télécharger (1,18 ko)

Voir les différences:

Subject: [PATCH] template: add .cell--body class to notification-cell (#53501)

 .../apps/notifications/templates/combo/notificationscell.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
combo/apps/notifications/templates/combo/notificationscell.html
18 18
</ul>
19 19
</div>
20 20
{% else %}
21
<div>
21
<div class="cell--body">
22 22
<p>{% trans 'No notifications.' %}</p>
23 23
</div>
24 24
{% endif %}
25 25

  
26 26
{% if push_notifications_enabled %}
27
<div class="notification-buttons">
27
<div class="cell--body notification-buttons">
28 28
<div class="notification-push-on" style="display: none"><a href="#" class="pk-button">Activer les notifications</a></div>
29 29
<div class="notification-push-off" style="display: none"><a href="#" class="pk-button">Désactiver les notifications</a></div>
30 30
</div>
31
-