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
parent
commit
1defd0d7c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/components/NewMessageForm/AdvancedInput/AdvancedInput.vue

5
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);

Loading…
Cancel
Save