Commit 68248f17 authored by Quentin Smith's avatar Quentin Smith

analysis/appengine/template: truncate long label values

Change-Id: Ica888f19254759a060015e9635cffd0231721dd4
Reviewed-on: https://go-review.googlesource.com/35946Reviewed-by: default avatarRuss Cox <rsc@golang.org>
parent 35b59d8e
......@@ -59,6 +59,12 @@ table.benchstat td, table.benchstat th {
}
#labels .diff {
padding-bottom: 1em;
}
#labels .diff table td {
max-width: 20em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment