By default the comment input field goes to new line in the middle of words, which is annoying for English and other European languages where this is not allowed
TikTok fix new line in comment input by zoranravic
Details
Authorzoranravic
LicenseNo License
Categorytiktok.com
Created
Updated
Size520 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name TikTok fix new line in comment input
@namespace github.com/openstyles/stylus
@version 1.0.0
@description By default the comment input field goes to new line in the middle of wirds, which is annoying for english and other european languages where this is not allowed. I am assuming they did this because it is normal in chinese.
@author Zoran
==/UserStyle== */
@-moz-document domain("www.tiktok.com") {
.DraftEditor-root {
word-break: initial;
}
}