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

Side by Side Diff: appengine/chromium_rietveld/new_static/components/cr-try-dialog.html

Issue 1001723003: Create a common directory of widgets and css. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 5 years, 9 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
OLDNEW
1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 <!-- Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be 2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. --> 3 found in the LICENSE file. -->
4 4
5 <link rel="import" href="cr-butterbar.html"> 5 <link rel="import" href="../common/cr-butterbar.html">
6 <link rel="import" href="cr-button.html"> 6 <link rel="import" href="../common/cr-button.html">
7 <link rel="import" href="cr-dialog.html"> 7 <link rel="import" href="../common/cr-dialog.html">
8 <link rel="import" href="cr-toolbar.html"> 8 <link rel="import" href="../common/cr-toolbar.html">
9 9
10 <polymer-element name="cr-try-dialog" attributes="issue"> 10 <polymer-element name="cr-try-dialog" attributes="issue">
11 <template> 11 <template>
12 <link rel="stylesheet" href="common.css"> 12 <link rel="stylesheet" href="../common/common.css">
13 <link rel="stylesheet" href="forms.css"> 13 <link rel="stylesheet" href="../common/forms.css">
14 <style> 14 <style>
15 #servers { 15 #servers {
16 height: 500px; 16 height: 500px;
17 margin: 0.5em 16px; 17 margin: 0.5em 16px;
18 overflow-y: scroll; 18 overflow-y: scroll;
19 } 19 }
20 20
21 h2 { 21 h2 {
22 color: #959595; 22 color: #959595;
23 margin: 0; 23 margin: 0;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 return builder.toLowerCase().contains(builderFilter); 132 return builder.toLowerCase().contains(builderFilter);
133 }); 133 });
134 return server; 134 return server;
135 }).filter(function(server) { 135 }).filter(function(server) {
136 return server.builders.length; 136 return server.builders.length;
137 }); 137 });
138 }, 138 },
139 }); 139 });
140 </script> 140 </script>
141 </polymer-element> 141 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698