aboutsummaryrefslogtreecommitdiffstats
path: root/apps/comments
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2017-11-24 13:34:14 +0100
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2017-11-24 16:30:58 +0100
commit6e9c0b908513dd8e268f20875c5e5359fe9cbc35 (patch)
treed1835686185fcc8474f22cff7334db4d65a8dd41 /apps/comments
parent892d2630fe099cb4845d9bcf740e9683c257d5d3 (diff)
downloadnextcloud-server-6e9c0b908513dd8e268f20875c5e5359fe9cbc35.tar.gz
nextcloud-server-6e9c0b908513dd8e268f20875c5e5359fe9cbc35.zip
Show submit working icon at the same position as the submit confirm icon
The submit confirm icon is shown as the background image of an absolutely positioned input element, so the CSS rules for the submit working icon were modified to match those of the submit confirm icon. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'apps/comments')
-rw-r--r--apps/comments/css/comments.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/comments/css/comments.css b/apps/comments/css/comments.css
index 6b0452da1fd..428dc778a65 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 {