| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 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 This in an HTML Import-able file that contains the definition | 6 This in an HTML Import-able file that contains the definition |
| 7 of the following elements: | 7 of the following elements: |
| 8 | 8 |
| 9 <swarming-app> | 9 <swarming-app> |
| 10 | 10 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 </template> | 166 </template> |
| 167 <template is="dom-if" if="[[!client_id]]"> | 167 <template is="dom-if" if="[[!client_id]]"> |
| 168 <div class="right">No OAauth client id found.</div> | 168 <div class="right">No OAauth client id found.</div> |
| 169 </template> | 169 </template> |
| 170 </app-toolbar> | 170 </app-toolbar> |
| 171 </app-header> | 171 </app-header> |
| 172 <div class="main-content"> | 172 <div class="main-content"> |
| 173 <content></content> | 173 <content></content> |
| 174 </div> | 174 </div> |
| 175 <error-toast></error-toast> | 175 <error-toast></error-toast> |
| 176 <a target="_blank" rel="noopener" href="https://bugs.chromium.org/p/chromi
um/issues/entry?components=Infra%3EPlatform%3ESwarming&owner=kjlubick@chromium.o
rg&status=Assigned"> | 176 <a target="_blank" rel="noopener" href="https://bugs.chromium.org/p/chromi
um/issues/entry?components=Infra%3EPlatform%3ESwarming%3EWebUI&owner=kjlubick@ch
romium.org&status=Assigned"> |
| 177 <paper-fab mini icon="icons:bug-report"></paper-fab> | 177 <paper-fab mini icon="icons:bug-report"></paper-fab> |
| 178 </a> | 178 </a> |
| 179 </app-header-layout> | 179 </app-header-layout> |
| 180 | 180 |
| 181 <iron-media-query query="min-width: 600px" query-matches="{{wide_layout}}"><
/iron-media-query> | 181 <iron-media-query query="min-width: 600px" query-matches="{{wide_layout}}"><
/iron-media-query> |
| 182 | 182 |
| 183 </template> | 183 </template> |
| 184 <script> | 184 <script> |
| 185 Polymer({ | 185 Polymer({ |
| 186 is: 'swarming-app', | 186 is: 'swarming-app', |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 border: none; | 363 border: none; |
| 364 line-height: 20px; | 364 line-height: 20px; |
| 365 vertical-align: middle; | 365 vertical-align: middle; |
| 366 } | 366 } |
| 367 | 367 |
| 368 select { | 368 select { |
| 369 overflow-y: auto; | 369 overflow-y: auto; |
| 370 } | 370 } |
| 371 </style> | 371 </style> |
| 372 </dom-module> | 372 </dom-module> |
| OLD | NEW |