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

Side by Side Diff: appengine/chromium_rietveld/new_static/views/cr-inbox-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-action.html"> 5 <link rel="import" href="../common/cr-action.html">
6 <link rel="import" href="../components/cr-butterbar.html"> 6 <link rel="import" href="../common/cr-butterbar.html">
7 <link rel="import" href="../components/cr-issue-inbox.html"> 7 <link rel="import" href="../components/cr-issue-inbox.html">
8 8
9 <polymer-element name="cr-inbox-view"> 9 <polymer-element name="cr-inbox-view">
10 <template> 10 <template>
11 <link rel="stylesheet" href="../components/common.css"> 11 <link rel="stylesheet" href="../common/common.css">
12 <style> 12 <style>
13 :host { display: block; } 13 :host { display: block; }
14 14
15 header { 15 header {
16 display: -webkit-flex; 16 display: -webkit-flex;
17 display: flex; 17 display: flex;
18 align-items: center; 18 align-items: center;
19 -webkit-align-items: center; 19 -webkit-align-items: center;
20 } 20 }
21 21
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 self.butterbarMessage = "Failed to load issues. :("; 132 self.butterbarMessage = "Failed to load issues. :(";
133 }); 133 });
134 }, 134 },
135 login: function() { 135 login: function() {
136 this.fire("login"); 136 this.fire("login");
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