Merge pull request #3878 from asphxia/3874-distorted-profile-image
Issue #3874: Distorted profile thumbnail
This commit is contained in:
commit
31849e1442
5 changed files with 9 additions and 4 deletions
|
|
@ -27,7 +27,7 @@
|
||||||
* Re-add hovercards [#3802](https://github.com/diaspora/diaspora/pull/3802)
|
* Re-add hovercards [#3802](https://github.com/diaspora/diaspora/pull/3802)
|
||||||
* Add images to notifications [#3821](https://github.com/diaspora/diaspora/pull/3821)
|
* Add images to notifications [#3821](https://github.com/diaspora/diaspora/pull/3821)
|
||||||
* Show pod version in footer and updated the link to the changelog [#3822](https://github.com/diaspora/diaspora/pull/3822)
|
* Show pod version in footer and updated the link to the changelog [#3822](https://github.com/diaspora/diaspora/pull/3822)
|
||||||
* User interface enhancements [#3832](https://github.com/diaspora/diaspora/pull/3832), [#3839](https://github.com/diaspora/diaspora/pull/3839), [#3834](https://github.com/diaspora/diaspora/pull/3834), [#3840](https://github.com/diaspora/diaspora/issues/3840), [#3846](https://github.com/diaspora/diaspora/issues/3846), [#3851](https://github.com/diaspora/diaspora/issues/3851), [#3828](https://github.com/diaspora/diaspora/issues/3828).
|
* User interface enhancements [#3832](https://github.com/diaspora/diaspora/pull/3832), [#3839](https://github.com/diaspora/diaspora/pull/3839), [#3834](https://github.com/diaspora/diaspora/pull/3834), [#3840](https://github.com/diaspora/diaspora/issues/3840), [#3846](https://github.com/diaspora/diaspora/issues/3846), [#3851](https://github.com/diaspora/diaspora/issues/3851), [#3828](https://github.com/diaspora/diaspora/issues/3828), [#3874](https://github.com/diaspora/diaspora/issues/3874).
|
||||||
|
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1893,6 +1893,11 @@ ul#press_logos
|
||||||
:margin
|
:margin
|
||||||
:top 9px
|
:top 9px
|
||||||
|
|
||||||
|
.conversation_participants
|
||||||
|
a:hover
|
||||||
|
:text-decoration none
|
||||||
|
|
||||||
|
|
||||||
.stream_element.conversation
|
.stream_element.conversation
|
||||||
:padding 8px
|
:padding 8px
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
.media
|
.media
|
||||||
.img
|
.img
|
||||||
= person_image_link(contact.person)
|
= person_image_link(contact.person, :size => :thumb_small)
|
||||||
|
|
||||||
.bd
|
.bd
|
||||||
= person_link(contact.person)
|
= person_link(contact.person)
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
= conversation.subject
|
= conversation.subject
|
||||||
|
|
||||||
- for participant in conversation.participants
|
- for participant in conversation.participants
|
||||||
= person_image_link(participant)
|
= person_image_link(participant, :size => :thumb_small)
|
||||||
|
|
||||||
.span-15.last
|
.span-15.last
|
||||||
.stream
|
.stream
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
.notification_element{:data=>{:guid => n.id}, :class => (n.unread ? "unread" : "read")}
|
.notification_element{:data=>{:guid => n.id}, :class => (n.unread ? "unread" : "read")}
|
||||||
= person_image_tag n.actors.first, :thumb_medium
|
= person_image_tag n.actors.first, :thumb_small
|
||||||
= notification_message_for(n)
|
= notification_message_for(n)
|
||||||
%div
|
%div
|
||||||
%time
|
%time
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue