From 6f7cfa82b5c591ea47e5556f14c33067d09be391 Mon Sep 17 00:00:00 2001 From: tamaina Date: Wed, 8 Feb 2023 09:50:34 +0000 Subject: fix(client): 通知のノート表示で_nowrapが効いていない問題を修正 Fix #9834 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ packages/frontend/src/style.scss | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00d69dbd19..1c4efdea7c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,13 @@ You should also include the user name that made the change. --> +## 13.x.x (unreleased) + +### Improvements + +### Bugfixes +- Client: 通知のノート表示で_nowrapが効いていない問題を修正 + ## 13.5.0 (2023/02/08) ### Changes 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; } -- cgit v1.2.3-freya