commit | 0120594dd01d21dc954d6831f09186488d64c44b | [log] [tgz] |
---|---|---|
author | Andrew Bonventre <andybons@chromium.org> | Thu Nov 03 21:55:16 2016 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Nov 03 21:55:17 2016 +0000 |
tree | a8e72aeb30333ab3fe155ee476879d2aed8a1eac | |
parent | 31871002107152e1c40966c1ba32f58e3b32cadd [diff] | |
parent | f9524f30b88d0c905d52bb7819a6d49e788b68b3 [diff] |
Merge "Prevent text from overflowing in change_plugins entry point"
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 38c48c5..6eeb6df 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
@@ -93,6 +93,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;