Merge pull request #9184 from nextcloud/bug-9150

Fixes issue with the large cursor on Safari in the comment section.
This commit is contained in:
Morris Jobke 2018-04-17 11:00:26 +02:00 committed by GitHub
commit dfffc0fdda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -17,9 +17,12 @@
}
#commentsTabView .newCommentForm .message {
/* width = 100% - (width of submit button (44px) + margin (3px) + inline-block gap) */
width: calc(100% - 52px);
display: inline-block;
/* width = 100% - (width of submit button (44px) + margin (3px) + border (1px)) */
width: calc(100% - 48px);
/* Need to use float left instead of display inline-block because Safari shows a big cursor */
float: left;
/* To align it to the button on the side */
margin-top: 5px;
}
#commentsTabView .newCommentForm .submit {