Don't constrain max diff line length to 80ch via CSS
Because CJK (Chinese-Japanese-Korean) glyphs may have variable width.
Bug: Issue 7984
Change-Id: Ifef672f03329db3770279f28f50033bd50f23934
diff --git a/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html b/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html
index fc23837..2aaaae5 100644
--- a/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html
+++ b/polygerrit-ui/app/elements/diff/gr-diff/gr-diff.html
@@ -119,9 +119,9 @@
}
.content {
overflow: hidden;
- /* Set max and min width since setting width on table cells still
- allows them to shrink. */
- max-width: var(--content-width, 80ch);
+ /* Set min width since setting width on table cells still
+ allows them to shrink. Do not set max width because
+ CJK (Chinese-Japanese-Korean) glyphs have variable width */
min-width: var(--content-width, 80ch);
width: var(--content-width, 80ch);
}