Skip to content
Snippets Groups Projects
Commit 6f7cfa82 authored by tamaina's avatar tamaina
Browse files

fix(client): 通知のノート表示で_nowrapが効いていない問題を修正

Fix #9834
parent 53c92e3e
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment