Merge "Limit the width of comments in the message list"

This commit is contained in:
Wyatt Allen 2016-10-18 21:43:48 +00:00 committed by Gerrit Code Review
commit dd2a08e606
2 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,7 @@ limitations under the License.
}
.message {
flex: 1;
max-width: 80ch;
}
</style>
<template is="dom-repeat" items="[[_computeFilesFromComments(comments)]]" as="file">

View File

@ -80,6 +80,9 @@ limitations under the License.
.content {
font-family: var(--monospace-font-family);
}
.message {
max-width: 80ch;
}
.collapsed .name,
.collapsed .content,
.collapsed .message,