Add bidi support

Adding these styles is the easiest way to add bidi (bidirectional text) support without or with least side effect. I have tested it by adding it manually on yewtu.be instance and so far it works very well.
このコミットが含まれているのは:
Mostafa Ahangarha 2021-06-24 11:56:58 +04:30 committed by GitHub
コミット 3e8ddabcc1
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更13行の追加0行の削除

ファイルの表示

@ -515,3 +515,16 @@ hr {
order: 1;
margin-top: 20px;
}
/* Bidi (bidirectional text) support */
h1,
h2,
h3,
h4,
h5,
p,
#descriptionWrapper,
#description-box {
unicode-bidi: plaintext;
text-align: start;
}