From 6f7cfa82b5c591ea47e5556f14c33067d09be391 Mon Sep 17 00:00:00 2001 From: tamaina Date: Wed, 8 Feb 2023 09:50:34 +0000 Subject: [PATCH] =?UTF-8?q?fix(client):=20=E9=80=9A=E7=9F=A5=E3=81=AE?= =?UTF-8?q?=E3=83=8E=E3=83=BC=E3=83=88=E8=A1=A8=E7=A4=BA=E3=81=A7=5Fnowrap?= =?UTF-8?q?=E3=81=8C=E5=8A=B9=E3=81=84=E3=81=A6=E3=81=84=E3=81=AA=E3=81=84?= =?UTF-8?q?=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3=20Fix=20#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 00d69dbd1..1c4efdea7 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 bacdc967d..88e15abdb 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; }