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

Side by Side Diff: appengine/chromium_rietveld/new_static/components/cr-try-results.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 <polymer-element name="cr-try-results" attributes="results"> 5 <polymer-element name="cr-try-results" attributes="results">
6 <template> 6 <template>
7 <link rel="stylesheet" href="common.css"> 7 <link rel="stylesheet" href="../common/common.css">
8 <style> 8 <style>
9 :host { 9 :host {
10 display: block; 10 display: block;
11 } 11 }
12 12
13 #builders { 13 #builders {
14 display: -webkit-flex; 14 display: -webkit-flex;
15 display: flex; 15 display: flex;
16 flex-wrap: wrap; 16 flex-wrap: wrap;
17 -webkit-flex-wrap: wrap; 17 -webkit-flex-wrap: wrap;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 </div> 83 </div>
84 </template> 84 </template>
85 <script> 85 <script>
86 Polymer("cr-try-results", { 86 Polymer("cr-try-results", {
87 created: function() { 87 created: function() {
88 this.results = null; 88 this.results = null;
89 }, 89 },
90 }); 90 });
91 </script> 91 </script>
92 </polymer-element> 92 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698