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

Side by Side Diff: golden/res/imp/dots.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/package.json ('k') | golden/res/imp/testsummarydetails.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- The <dots-sk> custom element declaration. 1 <!-- The <dots-sk> custom element declaration.
2 2
3 A custom element for displaying a dot chart of digests by trace, such as: 3 A custom element for displaying a dot chart of digests by trace, such as:
4 4
5 ooo-o-o-oo••• 5 ooo-o-o-oo•••
6 6
7 7
8 Attributes: 8 Attributes:
9 None. 9 None.
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 commit_time: 1428445634 53 commit_time: 1428445634
54 hash: "c654e9016a15985ebeb24f94f819d113ad48a251" 54 hash: "c654e9016a15985ebeb24f94f819d113ad48a251"
55 }, 55 },
56 ... 56 ...
57 ] 57 ]
58 --> 58 -->
59 <polymer-element name="dots-sk"> 59 <polymer-element name="dots-sk">
60 <template> 60 <template>
61 <style type="text/css" media="screen"> 61 <style type="text/css" media="screen">
62 g:hover circle { 62 g:hover circle {
63 fill: #44aa99; 63 fill: #E7298A;
64 stroke: #44aa99; 64 stroke: #E7298A;
65 } 65 }
66 66
67 circle.status0 { 67 circle.status0 {
68 fill: #000000; 68 fill: #000000;
69 stroke: #000000; 69 stroke: #000000;
70 } 70 }
71 circle.status1 { 71 circle.status1 {
72 fill: #ffffff; 72 fill: #ffffff;
73 stroke: #1B9E77; 73 stroke: #1B9E77;
74 } 74 }
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 this.value = value; 170 this.value = value;
171 }, 171 },
172 172
173 setCommits: function(commits) { 173 setCommits: function(commits) {
174 this.commits = commits; 174 this.commits = commits;
175 }, 175 },
176 176
177 }); 177 });
178 </script> 178 </script>
179 </polymer-element> 179 </polymer-element>
OLDNEW
« no previous file with comments | « golden/package.json ('k') | golden/res/imp/testsummarydetails.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698