diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2023-02-08 09:50:34 +0000 |
|---|---|---|
| committer | tamaina <tamaina@hotmail.co.jp> | 2023-02-08 09:50:34 +0000 |
| commit | 6f7cfa82b5c591ea47e5556f14c33067d09be391 (patch) | |
| tree | a69991c5c175ca315d0b5ae56bb573f50f6ce0ea /packages/frontend/src | |
| parent | 13.5.1 (diff) | |
| download | misskey-6f7cfa82b5c591ea47e5556f14c33067d09be391.tar.gz misskey-6f7cfa82b5c591ea47e5556f14c33067d09be391.tar.bz2 misskey-6f7cfa82b5c591ea47e5556f14c33067d09be391.zip | |
fix(client): 通知のノート表示で_nowrapが効いていない問題を修正
Fix #9834
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/style.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/style.scss b/packages/frontend/src/style.scss index bacdc967d8..88e15abdbf 100644 --- a/packages/frontend/src/style.scss +++ b/packages/frontend/src/style.scss @@ -157,9 +157,9 @@ hr { } ._nowrap { - white-space: pre; - word-wrap: normal; // https://codeday.me/jp/qa/20190424/690106.html - overflow: clip; + white-space: pre !important; + word-wrap: normal !important; // https://codeday.me/jp/qa/20190424/690106.html + overflow: hidden; text-overflow: ellipsis; } |