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

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

Issue 470623003: Remove the CSS styling from sherrif-o-matic builder buttons that made them not look like links (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update1 Created 6 years, 4 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 | « no previous file | 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 <!-- 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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698