| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2017 The Chromium Authors. All rights reserved. | 3 Copyright 2017 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> | 8 <link type="text/css" rel="stylesheet" href="/dashboard/static/base.css"> |
| 9 | 9 |
| 10 <link rel="import" href="/components/paper-button/paper-button.html"> | 10 <link rel="import" href="/components/paper-button/paper-button.html"> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 font-weight: bold; | 24 font-weight: bold; |
| 25 } | 25 } |
| 26 | 26 |
| 27 .center { | 27 .center { |
| 28 margin: auto; | 28 margin: auto; |
| 29 padding: 10px; | 29 padding: 10px; |
| 30 } | 30 } |
| 31 | 31 |
| 32 #content { | 32 #content { |
| 33 display: inline-flex; | 33 display: inline-flex; |
| 34 display: -webkit-inline-flex; | |
| 35 flex-direction: column; | 34 flex-direction: column; |
| 36 -webkit-flex-direction: column; | |
| 37 align-items: flex-start; | 35 align-items: flex-start; |
| 38 -webkit-align-items: flex-start; | |
| 39 } | 36 } |
| 40 | 37 |
| 41 #loading-spinner { | 38 #loading-spinner { |
| 42 width: 100%; | 39 width: 100%; |
| 43 display: flex; | 40 display: flex; |
| 44 justify-content: center; | 41 justify-content: center; |
| 45 } | 42 } |
| 46 | 43 |
| 47 #success { | 44 #success { |
| 48 color: #15c; | 45 color: #15c; |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 this.tableConfigs = response.table_config_list; | 291 this.tableConfigs = response.table_config_list; |
| 295 }.bind(this), | 292 }.bind(this), |
| 296 function(msg) { | 293 function(msg) { |
| 297 this.error = msg; | 294 this.error = msg; |
| 298 this.loading = false; | 295 this.loading = false; |
| 299 }.bind(this)); | 296 }.bind(this)); |
| 300 } | 297 } |
| 301 }); | 298 }); |
| 302 </script> | 299 </script> |
| 303 </dom-module> | 300 </dom-module> |
| OLD | NEW |