| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |