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

Side by Side Diff: appengine/chromium_rietveld/new_static/views/cr-search-view.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="../components/cr-button.html"> 5 <link rel="import" href="../common/cr-button.html">
6 <link rel="import" href="../common/cr-keyboard.html">
7 <link rel="import" href="../common/cr-toolbar.html">
6 <link rel="import" href="../components/cr-issue-list.html"> 8 <link rel="import" href="../components/cr-issue-list.html">
7 <link rel="import" href="../components/cr-keyboard.html">
8 <link rel="import" href="../components/cr-toolbar.html">
9 <link rel="import" href="../components/cr-user-autocomplete.html"> 9 <link rel="import" href="../components/cr-user-autocomplete.html">
10 10
11 <polymer-element name="cr-search-view"> 11 <polymer-element name="cr-search-view">
12 <template> 12 <template>
13 <link rel="stylesheet" href="../components/common.css"> 13 <link rel="stylesheet" href="../common/common.css">
14 <link rel="stylesheet" href="../components/forms.css"> 14 <link rel="stylesheet" href="../common/forms.css">
15 <style> 15 <style>
16 :host { display: block; } 16 :host { display: block; }
17 17
18 .search-layout { 18 .search-layout {
19 display: -webkit-flex; 19 display: -webkit-flex;
20 display: flex; 20 display: flex;
21 } 21 }
22 22
23 .search-form { 23 .search-form {
24 width: 400px; 24 width: 400px;
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 return; 202 return;
203 window.history.pushState(null, null, newUrl); 203 window.history.pushState(null, null, newUrl);
204 }, 204 },
205 updateResult: function(result) { 205 updateResult: function(result) {
206 this.result = result; 206 this.result = result;
207 this.cursor = result.cursor; 207 this.cursor = result.cursor;
208 }, 208 },
209 }); 209 });
210 </script> 210 </script>
211 </polymer-element> 211 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698