| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2017 The LUCI Authors. All rights reserved. | 2 Copyright 2017 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <link rel="import" href="config-file-card.html"> | 7 <link rel="import" href="config-file-card.html"> |
| 8 <link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html"> | 8 <link rel="import" href="../../bower_components/iron-ajax/iron-ajax.html"> |
| 9 <link rel="import" href="../../bower_components/iron-icons/iron-icons.html"> | 9 <link rel="import" href="../../bower_components/iron-icons/iron-icons.html"> |
| 10 <link rel="import" href="../../bower_components/paper-item/paper-item.html"> | 10 <link rel="import" href="../../bower_components/paper-item/paper-item.html"> |
| 11 <link rel="import" href="../../bower_components/paper-spinner/paper-spinner.html
"> | 11 <link rel="import" href="../../bower_components/paper-spinner/paper-spinner.html
"> |
| 12 <link rel="import" href="../../bower_components/polymer/polymer.html"> | 12 <link rel="import" href="../../bower_components/polymer/polymer.html"> |
| 13 <link rel="import" href="../../bower_components/iron-icons/maps-icons.html"> | 13 <link rel="import" href="../../bower_components/iron-icons/maps-icons.html"> |
| 14 <link rel="import" href="../../bower_components/paper-tooltip/paper-tooltip.html
"> | 14 <link rel="import" href="../../bower_components/paper-tooltip/paper-tooltip.html
"> |
| 15 | 15 |
| 16 <dom-module id="config-set"> | 16 <dom-module id="config-set"> |
| 17 <template> | 17 <template> |
| 18 <style> | 18 <style> |
| 19 .spinner { | 19 .spinner { |
| 20 text-align: center; | 20 text-align: center; |
| 21 } | 21 } |
| 22 | 22 |
| 23 .category { | 23 .category { |
| 24 font-size: 100%; | 24 font-size: 100%; |
| 25 font-family: sans-serif; | 25 font-family: sans-serif; |
| 26 } | 26 } |
| 27 | 27 |
| 28 .center { | 28 .center { |
| 29 width: 20%; | 29 width: 550px; |
| 30 margin: auto; | 30 margin: auto; |
| 31 text-align: left; | 31 text-align: left; |
| 32 } | 32 } |
| 33 | 33 |
| 34 .config-card { | 34 .config-card { |
| 35 padding-bottom: 1%; | 35 padding-bottom: 1%; |
| 36 animation: fadein 1.5s; | 36 animation: fadein 1.5s; |
| 37 } | 37 } |
| 38 | 38 |
| 39 @keyframes fadein { | 39 @keyframes fadein { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 this.isLoading = false; | 244 this.isLoading = false; |
| 245 }, | 245 }, |
| 246 | 246 |
| 247 _onRefreshError: function() { | 247 _onRefreshError: function() { |
| 248 this.isRefreshing = false; | 248 this.isRefreshing = false; |
| 249 this.refreshMessage = "Error: Files could not be refreshed."; | 249 this.refreshMessage = "Error: Files could not be refreshed."; |
| 250 } | 250 } |
| 251 }); | 251 }); |
| 252 </script> | 252 </script> |
| 253 </dom-module> | 253 </dom-module> |
| OLD | NEW |