summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2023-02-08 09:50:34 +0000
committertamaina <tamaina@hotmail.co.jp>2023-02-08 09:50:34 +0000
commit6f7cfa82b5c591ea47e5556f14c33067d09be391 (patch)
treea69991c5c175ca315d0b5ae56bb573f50f6ce0ea
parent13.5.1 (diff)
downloadmisskey-6f7cfa82b5c591ea47e5556f14c33067d09be391.tar.gz
misskey-6f7cfa82b5c591ea47e5556f14c33067d09be391.tar.bz2
misskey-6f7cfa82b5c591ea47e5556f14c33067d09be391.zip
fix(client): 通知のノート表示で_nowrapが効いていない問題を修正
Fix #9834
-rw-r--r--CHANGELOG.md7
-rw-r--r--packages/frontend/src/style.scss6
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;
}