diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-04-17 11:00:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 11:00:26 +0200 |
commit | dfffc0fddaeb952421cf588e74055f26bc8c50a8 (patch) | |
tree | ea2c8e1e37c0fe37eb7db1288ed966c10bded635 | |
parent | cf2731050544be4e67a6040179c5864293e7b530 (diff) | |
parent | 0489643f506f314af8dd76444a7b2f0f375ad80b (diff) | |
download | nextcloud-server-dfffc0fddaeb952421cf588e74055f26bc8c50a8.tar.gz nextcloud-server-dfffc0fddaeb952421cf588e74055f26bc8c50a8.zip |
Merge pull request #9184 from nextcloud/bug-9150
Fixes issue with the large cursor on Safari in the comment section.
-rw-r--r-- | apps/comments/css/comments.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/apps/comments/css/comments.scss b/apps/comments/css/comments.scss index c2bc136ba66..d2ed74adaeb 100644 --- a/apps/comments/css/comments.scss +++ b/apps/comments/css/comments.scss @@ -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 { |