Skip to content
Extraits de code Groupes Projets
Valider 838982e9 rédigé par Benjamin Neff's avatar Benjamin Neff
Parcourir les fichiers

Merge branch 'next-minor' into develop

parents 5fd7cb24 16af93f8
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
* Fix tags URLs in hovercards [#7075](https://github.com/diaspora/diaspora/pull/7075) * Fix tags URLs in hovercards [#7075](https://github.com/diaspora/diaspora/pull/7075)
* Fix 500 in html requests for post interactions [#7085](https://github.com/diaspora/diaspora/pull/7085) * Fix 500 in html requests for post interactions [#7085](https://github.com/diaspora/diaspora/pull/7085)
* Remove whitespaces next to like link in stream [#7088](https://github.com/diaspora/diaspora/pull/7088) * Remove whitespaces next to like link in stream [#7088](https://github.com/diaspora/diaspora/pull/7088)
* Prevent overflow of interaction avatars in the single post view [#7070](https://github.com/diaspora/diaspora/pull/7070)
## Features ## Features
* Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045) * Deleted comments will be removed when loading more comments [#7045](https://github.com/diaspora/diaspora/pull/7045)
......
...@@ -147,4 +147,8 @@ ...@@ -147,4 +147,8 @@
.interaction-avatars { .interaction-avatars {
line-height: 25px; line-height: 25px;
} }
.interaction-avatars {
overflow: hidden;
}
} }
{{#if resharesCount}} {{#if resharesCount}}
<div id="reshares" class="clearfix"> <div id="reshares" class="clearfix">
<span class="count"> <div class="count">
<i class="entypo-reshare middle gray"></i> <i class="entypo-reshare middle gray"></i>
<span>{{resharesCount}}</span> <span>{{resharesCount}}</span>
</span> </div>
<span class="interaction-avatars"> <div class="interaction-avatars">
{{#each reshares}} {{#each reshares}}
{{#linkToAuthor author}} {{#linkToAuthor author}}
{{{personImage this 'small' 'micro'}}} {{{personImage this 'small' 'micro'}}}
{{/linkToAuthor}} {{/linkToAuthor}}
{{/each}} {{/each}}
</span> </div>
</div> </div>
{{/if}} {{/if}}
{{#if likesCount}} {{#if likesCount}}
<div id="likes" class="clearfix"> <div id="likes" class="clearfix">
<span class="count"> <div class="count">
<i class="entypo-heart middle gray"></i> <i class="entypo-heart middle gray"></i>
<span>{{likesCount}}</span> <span>{{likesCount}}</span>
</span> </div>
<span class="interaction-avatars"> <div class="interaction-avatars">
{{#each likes}} {{#each likes}}
{{#linkToAuthor author}} {{#linkToAuthor author}}
{{{personImage this 'small' 'micro'}}} {{{personImage this 'small' 'micro'}}}
{{/linkToAuthor}} {{/linkToAuthor}}
{{/each}} {{/each}}
</span> </div>
</div> </div>
{{/if}} {{/if}}
{{#if commentsCount}} {{#if commentsCount}}
<div id="comments-meta" class="clearfix"> <div id="comments-meta" class="clearfix">
<span class="count"> <div class="count">
<i class="entypo-comment middle gray"></i> <i class="entypo-comment middle gray"></i>
<span>{{commentsCount}}</span> <span>{{commentsCount}}</span>
</span> </div>
</div> </div>
{{else}} {{else}}
<div class="no-comments"> <div class="no-comments">
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter