commit | f9524f30b88d0c905d52bb7819a6d49e788b68b3 | [log] [tgz] |
---|---|---|
author | Andrew Bonventre <andybons@chromium.org> | Thu Nov 03 14:16:48 2016 -0700 |
committer | Andrew Bonventre <andybons@chromium.org> | Thu Nov 03 14:16:48 2016 -0700 |
tree | 70a185bf9a47b64f42fa0c82c1e3da26d7840d12 | |
parent | 4b60a0bd7eb7fb1eaa005da801a344aaa59c835e [diff] |
Prevent text from overflowing in change_plugins entry point Otherwise this can happen: http://i.imgur.com/oLiVU6a.png Bug: Issue 4878 Change-Id: I8d5e465be378aa37250d03656a45905d1f3104ae
diff --git a/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.html b/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.html index ecd26ad..4528db1 100644 --- a/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.html +++ b/polygerrit-ui/app/elements/change/gr-change-view/gr-change-view.html
@@ -92,6 +92,10 @@ .changeMetadata { font-size: .95em; } + /* Prevent plugin text from overflowing. */ + #change_plugins { + word-break: break-all; + } .commitMessage { font-family: var(--monospace-font-family); flex: 0 0 72ch;