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)
|
* 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).
|
* 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
|
## Bug Fixes
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -411,6 +411,10 @@ ul.as-selections
|
||||||
&:hover
|
&:hover
|
||||||
@include opacity(1)
|
@include opacity(1)
|
||||||
|
|
||||||
|
.controls
|
||||||
|
a:hover
|
||||||
|
:text-decoration none
|
||||||
|
|
||||||
.status_message_show
|
.status_message_show
|
||||||
.comment_box
|
.comment_box
|
||||||
:width 653px
|
:width 653px
|
||||||
|
|
@ -2418,6 +2422,10 @@ a.toggle_selector
|
||||||
:margin
|
:margin
|
||||||
:bottom -2px
|
:bottom -2px
|
||||||
|
|
||||||
|
.stream-faces
|
||||||
|
a:hover
|
||||||
|
:text-decoration none
|
||||||
|
|
||||||
#view_all_contacts_link
|
#view_all_contacts_link
|
||||||
@include border-radius(2px)
|
@include border-radius(2px)
|
||||||
:display block
|
:display block
|
||||||
|
|
|
||||||
|
|
@ -13,9 +13,7 @@
|
||||||
{{#with root}}
|
{{#with root}}
|
||||||
<div class="bd">
|
<div class="bd">
|
||||||
<div>
|
<div>
|
||||||
<a href="/people/{{author.guid}}" class="author {{{hovercardable this}}}">
|
<a href="/people/{{author.guid}}" class="author {{{hovercardable this}}}">{{author.name}}</a>
|
||||||
{{author.name}}
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<span class="details grey">
|
<span class="details grey">
|
||||||
-
|
-
|
||||||
|
|
|
||||||
|
|
@ -26,9 +26,7 @@
|
||||||
<div class="bd">
|
<div class="bd">
|
||||||
<div>
|
<div>
|
||||||
{{#with author}}
|
{{#with author}}
|
||||||
<a href="/people/{{guid}}" class="author {{{hovercardable this}}}">
|
<a href="/people/{{guid}}" class="author {{{hovercardable this}}}">{{name}}</a>
|
||||||
{{name}}
|
|
||||||
</a>
|
|
||||||
{{/with}}
|
{{/with}}
|
||||||
|
|
||||||
<span class="details grey">
|
<span class="details grey">
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue