Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Unified Diff: dashboard/dashboard/elements/alerts-table.html

Issue 2572543005: Fixes table formatting and changes unknown units labeling. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | dashboard/dashboard/elements/alerts-table-test.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/dashboard/elements/alerts-table.html
diff --git a/dashboard/dashboard/elements/alerts-table.html b/dashboard/dashboard/elements/alerts-table.html
index a3ba0eca2b7bbf0a422a01c56e0910453289b858..84a8ee0bc8a37b50ea0cb065ff8b0ea3650030f6 100644
--- a/dashboard/dashboard/elements/alerts-table.html
+++ b/dashboard/dashboard/elements/alerts-table.html
@@ -67,6 +67,24 @@ found in the LICENSE file.
width: 100px;
}
+ #alerts #test {
+ max-width:50%;
+ min-width: 20%;
+ width: 30%;
+ }
+
+ #alerts #testsuite {
+ max-width:20%;
+ min-width: 10%;
+ width: 15%;
+ }
+
+ #alerts #bot {
+ max-width:20%;
+ min-width: 10%;
+ width: 10%;
+ }
+
#alerts #percent_changed {
text-align: right;
width: 50px;
@@ -159,6 +177,10 @@ found in the LICENSE file.
color: #a00;
}
+ #absolute_delta {
+ width: 100px;
+ }
+
/* Checkboxes */
input[type=checkbox]:checked::after {
font-size: 1.3em;
@@ -509,7 +531,7 @@ found in the LICENSE file.
var value = item[key];
value = parseFloat(value).toFixed(3);
if (!unitName)
- unitName = 'units - unformatted';
+ unitName = '(unformatted)';
value = value + ' ' + unitName;
return value;
}
« no previous file with comments | « no previous file | dashboard/dashboard/elements/alerts-table-test.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698