diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-02-01 16:37:33 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-02-02 18:01:15 +0100 |
commit | fdf555e814f84063c2dfa763a6aa285c52f9443d (patch) | |
tree | 0977dfb637187ba50db824eeb711560ce8213b88 /apps/comments/css | |
parent | 3b581b051f33e141ba0c76c8bcde104ce65826c2 (diff) | |
download | nextcloud-server-fdf555e814f84063c2dfa763a6aa285c52f9443d.tar.gz nextcloud-server-fdf555e814f84063c2dfa763a6aa285c52f9443d.zip |
Improve comments style, add avatars
Diffstat (limited to 'apps/comments/css')
-rw-r--r-- | apps/comments/css/comments.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css new file mode 100644 index 00000000000..b1108467f68 --- /dev/null +++ b/apps/comments/css/comments.css @@ -0,0 +1,51 @@ +/* + * Copyright (c) 2016 + * + * This file is licensed under the Affero General Public License version 3 + * or later. + * + * See the COPYING-README file. + * + */ + +#commentsTabView .newCommentForm { + margin-bottom: 20px; +} + +#commentsTabView .newCommentForm .message { + width: 90%; + resize: none; +} + +#commentsTabView .newCommentForm .submit { + display: block; +} + +#commentsTabView .comment { + margin-bottom: 30px; +} + +#commentsTabView .comment .avatar { + width: 28px; + height: 28px; + line-height: 28px; +} + +#commentsTabView .authorRow>div { + display: inline-block; + vertical-align: middle; +} + +#commentsTabView .comment .authorRow { + margin-bottom: 5px; + position: relative; +} + +#commentsTabView .comment .author { + font-weight: bold; +} + +#commentsTabView .comment .date { + position: absolute; + right: 0; +} |