Issue #3840: Fix extra blank on streams
This commit is contained in:
parent
8d72447d47
commit
284c40b4da
4 changed files with 11 additions and 7 deletions
|
|
@ -27,7 +27,7 @@
|
|||
* Re-add hovercards [#3802](https://github.com/diaspora/diaspora/pull/3802)
|
||||
* 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)
|
||||
* 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).
|
||||
* 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).
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
|
|
|
|||
|
|
@ -411,6 +411,10 @@ ul.as-selections
|
|||
&:hover
|
||||
@include opacity(1)
|
||||
|
||||
.controls
|
||||
a:hover
|
||||
:text-decoration none
|
||||
|
||||
.status_message_show
|
||||
.comment_box
|
||||
:width 653px
|
||||
|
|
@ -2418,6 +2422,10 @@ a.toggle_selector
|
|||
:margin
|
||||
:bottom -2px
|
||||
|
||||
.stream-faces
|
||||
a:hover
|
||||
:text-decoration none
|
||||
|
||||
#view_all_contacts_link
|
||||
@include border-radius(2px)
|
||||
:display block
|
||||
|
|
|
|||
|
|
@ -13,9 +13,7 @@
|
|||
{{#with root}}
|
||||
<div class="bd">
|
||||
<div>
|
||||
<a href="/people/{{author.guid}}" class="author {{{hovercardable this}}}">
|
||||
{{author.name}}
|
||||
</a>
|
||||
<a href="/people/{{author.guid}}" class="author {{{hovercardable this}}}">{{author.name}}</a>
|
||||
|
||||
<span class="details grey">
|
||||
-
|
||||
|
|
|
|||
|
|
@ -26,9 +26,7 @@
|
|||
<div class="bd">
|
||||
<div>
|
||||
{{#with author}}
|
||||
<a href="/people/{{guid}}" class="author {{{hovercardable this}}}">
|
||||
{{name}}
|
||||
</a>
|
||||
<a href="/people/{{guid}}" class="author {{{hovercardable this}}}">{{name}}</a>
|
||||
{{/with}}
|
||||
|
||||
<span class="details grey">
|
||||
|
|
|
|||
Loading…
Reference in a new issue