diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-10-11 16:17:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-11 16:17:51 +0200 |
commit | 675230f86d74325d41cec4df59578919241934ce (patch) | |
tree | 7f9e1f12fa45c94f8d748c5cb30abc6a21240908 /apps/comments/css | |
parent | 9785343d6ac879b5e150b128f97b82e788a2df09 (diff) | |
parent | dcddd4b9d5f2298ccfe302cf7041c2220ac79bee (diff) | |
download | nextcloud-server-675230f86d74325d41cec4df59578919241934ce.tar.gz nextcloud-server-675230f86d74325d41cec4df59578919241934ce.zip |
Merge pull request #1407 from nextcloud/multiline_comments
Bring back multiline comments
Diffstat (limited to 'apps/comments/css')
-rw-r--r-- | apps/comments/css/comments.css | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 103564c5faf..667f32871bb 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -21,15 +21,16 @@ width: calc(100% - 81px); /* 36 (left margin) + 30 (right padding) + 15 (right padding of surrounding box) */ margin-left: 36px; padding-right: 30px; + display: block; } #commentsTabView .newCommentForm .submit { position: absolute; - top: 1px; + bottom: 0px; right: 8px; width: 30px; margin: 0; - padding: 9px; + padding: 7px 9px; background-color: transparent; border: none; opacity: .3; @@ -47,6 +48,10 @@ margin-right: 6px; } +#commentsTabView .newCommentForm textarea { + resize: none; +} + #commentsTabView .comment { position: relative; z-index: 1; |