Browse Source
Merge pull request #2898 from nextcloud/bugfix/noid/fontsize
Fix font-size of the chat input
pull/2957/head
Joas Schilling
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue
|
|
@ -352,6 +352,11 @@ export default { |
|
|
|
white-space: pre-wrap; |
|
|
|
} |
|
|
|
|
|
|
|
// Support for the placeholder text in the div contenteditable |
|
|
|
div[contenteditable] { |
|
|
|
font-size: 14px; |
|
|
|
} |
|
|
|
|
|
|
|
// Support for the placeholder text in the div contenteditable |
|
|
|
[contenteditable]:empty:before{ |
|
|
|
content: attr(placeholder); |
|
|
|