OLD | NEW |
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 <polymer-element name="ct-builder" attributes="builder" noscript> | 7 <polymer-element name="ct-builder" attributes="builder" noscript> |
8 <template> | 8 <template> |
9 <style> | 9 <style> |
10 a { | 10 a { |
11 border: 1px solid gray; | |
12 display: inline-block; | 11 display: inline-block; |
13 font-size: 11px; | 12 font-size: 11px; |
14 margin-bottom: 2px; | 13 margin-bottom: 2px; |
15 padding: 1px; | 14 padding: 1px; |
16 text-decoration: none; | 15 text-decoration: none; |
17 } | 16 } |
18 | 17 |
19 span { | |
20 background-color: #555; | |
21 color: white; | |
22 padding: 0 2px; | |
23 } | |
24 </style> | 18 </style> |
25 <a href="{{ builder.buildUrl }}"> | 19 <a href="{{ builder.buildUrl }}"> |
26 <span>{{ builder.builder }}</span> | 20 <span>{{ builder.builder }}</span> |
27 </a> | 21 </a> |
28 </template> | 22 </template> |
29 </polymer-element> | 23 </polymer-element> |
OLD | NEW |