mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
Prevent comment being composed from overlapping the submit button
The submit button is placed in the text area using absolute positioning, so it is not taken into account when calculating the text layout. Due to this it is necessary to add an explicit padding to the right of the text area to prevent the text from overlapping the submit button. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
parent
fb9379db3e
commit
896c8df6ad
1 changed files with 3 additions and 0 deletions
|
|
@ -22,6 +22,9 @@
|
|||
padding: 10px;
|
||||
min-height: 44px;
|
||||
margin: 0;
|
||||
|
||||
/* Prevent the text from overlapping with the submit button. */
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
#commentsTabView .newCommentForm {
|
||||
|
|
|
|||
Loading…
Reference in a new issue