diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-09-14 14:20:26 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-04 13:04:56 +0200 |
commit | 5ca50d9f317cdba788005b2212161c9a59df7d12 (patch) | |
tree | 922e6864fee11e87406317ee4b980856dfa4a088 /apps/comments/css | |
parent | c5d24a6b0798ee0af94312eea33e4c63631ef9c0 (diff) | |
download | nextcloud-server-5ca50d9f317cdba788005b2212161c9a59df7d12.tar.gz nextcloud-server-5ca50d9f317cdba788005b2212161c9a59df7d12.zip |
Add autosize to comments input
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/comments/css')
-rw-r--r-- | apps/comments/css/comments.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 7f64f1cf7db..d4b72d21478 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -25,7 +25,7 @@ #commentsTabView .newCommentForm .submit { position: absolute; - top: 1px; + bottom: 1px; right: 8px; width: 30px; margin: 0; @@ -47,6 +47,10 @@ margin-right: 6px; } +#commentsTabView .newCommentForm textarea { + resize: none; +} + #commentsTabView .comment { position: relative; z-index: 1; |