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

Side by Side Diff: Tools/GardeningServer/ui/ct-builder-grid.html

Issue 400353006: Fix a bunch of UI nits in sheriff-o-matic. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
1 <!-- 1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved. 2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 6
7 <link rel="import" href="ct-builder.html"> 7 <link rel="import" href="ct-builder.html">
8 8
9 <!-- Table of failure types, listing the failing builders for each type. --> 9 <!-- Table of failure types, listing the failing builders for each type. -->
10 <polymer-element name="ct-builder-grid" attributes="failures"> 10 <polymer-element name="ct-builder-grid" attributes="failures">
11 <template> 11 <template>
12 <style> 12 <style>
13 table { 13 table {
14 border-collapse: collapse; 14 border-collapse: collapse;
15 font-size: 11px; 15 font-size: 11px;
16 table-layout: fixed; 16 table-layout: fixed;
17 width: 350px; 17 width: 350px;
18 } 18 }
19 19
20 tbody tr {
21 border-top: 1px solid #eee;
22 }
23
24 tbody td:first-child { 20 tbody td:first-child {
25 width: 20%; 21 width: 20%;
26 } 22 }
27 23
28 tbody td { 24 tbody td {
29 padding: 2px; 25 padding: 2px;
30 vertical-align: top; 26 vertical-align: top;
31 width: 40%; 27 width: 40%;
32 } 28 }
33 29
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 if (!config.builders[builderName]) 151 if (!config.builders[builderName])
156 return; 152 return;
157 building[builderName] = 153 building[builderName] =
158 {'debug': config.builders[builderName].debug}; 154 {'debug': config.builders[builderName].debug};
159 }); 155 });
160 return building; 156 return building;
161 }, 157 },
162 }); 158 });
163 </script> 159 </script>
164 </polymer-element> 160 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698