diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-11-27 12:19:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-27 12:19:21 +0100 |
commit | 7bb42438fa44a663934103ef2e83a9692516e165 (patch) | |
tree | b9b7b4e6e9ad1d2afc2ea975fb02d17d10a20d4f /apps/comments/css | |
parent | c5446ebd9a60bac93c2d31d583ae14f841393ef0 (diff) | |
parent | 9bb2bb7870bf1f8715193c4d90d636e08faa7afd (diff) | |
download | nextcloud-server-7bb42438fa44a663934103ef2e83a9692516e165.tar.gz nextcloud-server-7bb42438fa44a663934103ef2e83a9692516e165.zip |
Merge pull request #7280 from nextcloud/fix-working-icon-position-when-sending-or-deleting-a-comment
Fix working icon position when sending or deleting a comment
Diffstat (limited to 'apps/comments/css')
-rw-r--r-- | apps/comments/css/comments.css | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css index 89b3bc37d50..ccfad1d39f1 100644 --- a/apps/comments/css/comments.css +++ b/apps/comments/css/comments.css @@ -42,6 +42,20 @@ #commentsTabView .newCommentForm .submitLoading { background-position: left; + + /* Match rules for '#commentsTabView .newCommentForm .submit' to place the + loading icon at the same position as the confirm icon */ + position: absolute; + bottom: 0px; + right: 8px; + width: 30px; + margin: 0; + padding: 7px 9px; + + /* Match rules for 'input[type="submit"]' to place the loading icon at the + same position as the confirm icon */ + min-height: 34px; + box-sizing: border-box; } #commentsTabView .newCommentForm .cancel { @@ -168,7 +182,8 @@ opacity: 1; } -#commentsTabView .comment .action.delete { +#commentsTabView .comment .action.delete, +#commentsTabView .comment .deleteLoading { position: absolute; right: 0; } |