| 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;
|
| }
|
|
|