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

Side by Side Diff: golden/res/imp/testsummarydetails.html

Issue 1134223004: Fix spaces between paramset values. Also change the highlight color. (Closed) Base URL: https://skia.googlesource.com/buildbot@master
Patch Set: Created 5 years, 7 months 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 unified diff | Download patch
« no previous file with comments | « golden/res/imp/dots.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- The <test-summary-details-sk> custom element declaration. 1 <!-- The <test-summary-details-sk> custom element declaration.
2 2
3 Displays the details about all the untriaged digests in one test summary. 3 Displays the details about all the untriaged digests in one test summary.
4 4
5 Attributes: 5 Attributes:
6 test - The name of the test. 6 test - The name of the test.
7 digest - The digest we are interested in. 7 digest - The digest we are interested in.
8 limit - The maximum number of digests to display. 8 limit - The maximum number of digests to display.
9 triage - A boolean, if true, then display the triage controls. 9 triage - A boolean, if true, then display the triage controls.
10 data-diff - A read-only attribute that is the size of the difference between 10 data-diff - A read-only attribute that is the size of the difference between
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 font-weight: bold; 114 font-weight: bold;
115 width: 5em; 115 width: 5em;
116 padding: 1em; 116 padding: 1em;
117 color: #E7298A; 117 color: #E7298A;
118 } 118 }
119 #paramset th { 119 #paramset th {
120 text-align: right; 120 text-align: right;
121 padding-right: 0.5em; 121 padding-right: 0.5em;
122 } 122 }
123 123
124 #paramset span {
125 margin-right: 0.2em;
126 }
127
124 #paramset .hover { 128 #paramset .hover {
125 color: #44aa99; 129 color: #E7298A;
126 font-weight: bold; 130 font-weight: bold;
127 } 131 }
128 </style> 132 </style>
129 <div horizontal layout> 133 <div horizontal layout>
130 <template if="{{triage && negIsClosest}}"> 134 <template if="{{triage && negIsClosest}}">
131 <div vertical layout id=warning> 135 <div vertical layout id=warning>
132 Closest Image Is Negative! 136 Closest Image Is Negative!
133 </div> 137 </div>
134 </template> 138 </template>
135 <template if="{{triage && details.closest.digest}}"> 139 <template if="{{triage && details.closest.digest}}">
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 fixedPercent: function(i) { 355 fixedPercent: function(i) {
352 if (i) { 356 if (i) {
353 return i.toFixed(2); 357 return i.toFixed(2);
354 } else { 358 } else {
355 return ''; 359 return '';
356 } 360 }
357 }, 361 },
358 }); 362 });
359 </script> 363 </script>
360 </polymer-element> 364 </polymer-element>
OLDNEW
« no previous file with comments | « golden/res/imp/dots.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698