Merge pull request #3849 from asphxia/feature/3806-overflow-comment-textarea
Issue #3806: Overflow comment textarea
This commit is contained in:
commit
ed2258a294
4 changed files with 34 additions and 27 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), [#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).
|
||||
* 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), [#3806](https://github.com/diaspora/diaspora/issues/3806).
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
|
|
|
|||
|
|
@ -527,6 +527,13 @@ ul.as-selections
|
|||
.right
|
||||
:right 4px
|
||||
|
||||
.stream_element
|
||||
.new_comment_form_wrapper
|
||||
:width 415px
|
||||
|
||||
.stream_element .bd
|
||||
& > .likes, & > .comments
|
||||
:margin-right 15px
|
||||
|
||||
.stream_element .post-content .reshare
|
||||
:border-left 2px solid #ddd
|
||||
|
|
@ -538,7 +545,7 @@ form.new_comment
|
|||
textarea
|
||||
:height 21px
|
||||
:font-size 12px
|
||||
:width 355px
|
||||
:width 364px
|
||||
|
||||
&.open
|
||||
input
|
||||
|
|
|
|||
|
|
@ -1,11 +1,3 @@
|
|||
{{#if canRemove}}
|
||||
<div class="controls">
|
||||
<a href="#" class="delete comment_delete" title="{{t "delete"}}">
|
||||
<img alt="Deletelabel" src="{{imageUrl "deletelabel.png"}}" />
|
||||
<a/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<div class="img">
|
||||
{{#linkToPerson author}}
|
||||
{{{personImage this "small" "small"}}}
|
||||
|
|
@ -13,6 +5,14 @@
|
|||
</div>
|
||||
|
||||
<div class="bd">
|
||||
{{#if canRemove}}
|
||||
<div class="controls">
|
||||
<a href="#" class="delete comment_delete" title="{{t "delete"}}">
|
||||
<img alt="Deletelabel" src="{{imageUrl "deletelabel.png"}}" />
|
||||
<a/>
|
||||
</div>
|
||||
{{/if}}
|
||||
|
||||
<a href="/people/{{author.guid}}" class="author author-name {{hovercardable this}}">
|
||||
{{author.name}}
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
<div class="media">
|
||||
|
||||
{{#with author}}
|
||||
<a href="/people/{{guid}}" class="img {{{hovercardable this}}}">
|
||||
{{{personImage this}}}
|
||||
</a>
|
||||
{{/with}}
|
||||
|
||||
<div class="bd">
|
||||
{{#if loggedIn}}
|
||||
<div class="controls">
|
||||
{{#unless authorIsCurrentUser}}
|
||||
|
|
@ -17,13 +24,6 @@
|
|||
</div>
|
||||
{{/if}}
|
||||
|
||||
{{#with author}}
|
||||
<a href="/people/{{guid}}" class="img {{{hovercardable this}}}">
|
||||
{{{personImage this}}}
|
||||
</a>
|
||||
{{/with}}
|
||||
|
||||
<div class="bd">
|
||||
<div>
|
||||
{{#with author}}
|
||||
<a href="/people/{{guid}}" class="author {{{hovercardable this}}}">{{name}}</a>
|
||||
|
|
|
|||
Loading…
Reference in a new issue