| 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="../../bower_components/polymer/polymer.html"> | 7 <link rel="import" href="../../bower_components/polymer/polymer.html"> |
| 8 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht
ml"> | 8 <link rel="import" href="../../bower_components/paper-search/paper-search-bar.ht
ml"> |
| 9 <link rel="import" href="../../bower_components/app-route/app-location.html"> | 9 <link rel="import" href="../../bower_components/app-route/app-location.html"> |
| 10 <link rel="import" href="../../bower_components/app-route/app-route.html"> | 10 <link rel="import" href="../../bower_components/app-route/app-route.html"> |
| 11 <link rel="import" href="../../bower_components/app-layout/app-drawer-layout/app
-drawer-layout.html"> | 11 <link rel="import" href="../../bower_components/app-layout/app-drawer-layout/app
-drawer-layout.html"> |
| 12 <link rel="import" href="../../bower_components/app-layout/app-header/app-header
.html"> | 12 <link rel="import" href="../../bower_components/app-layout/app-header/app-header
.html"> |
| 13 <link rel="import" href="../../bower_components/app-layout/app-header-layout/app
-header-layout.html"> | 13 <link rel="import" href="../../bower_components/app-layout/app-header-layout/app
-header-layout.html"> |
| 14 <link rel="import" href="../../bower_components/app-layout/app-toolbar/app-toolb
ar.html"> | 14 <link rel="import" href="../../bower_components/app-layout/app-toolbar/app-toolb
ar.html"> |
| 15 <link rel="import" href="../../bower_components/app-layout/app-scroll-effects/ef
fects/resize-title.html"> | |
| 16 | 15 |
| 17 <link rel="import" href="../../common/auth-signin.html"> | 16 <link rel="import" href="../../common/auth-signin.html"> |
| 18 <link rel="import" href="config-set.html"> | 17 <link rel="import" href="config-set.html"> |
| 19 <link rel="import" href="front-page.html"> | 18 <link rel="import" href="front-page.html"> |
| 20 | 19 |
| 21 <dom-module id="config-ui"> | 20 <dom-module id="config-ui"> |
| 22 <template> | 21 <template> |
| 23 <style> | 22 <style> |
| 24 * { font-family: sans-serif; } | 23 * { font-family: sans-serif; } |
| 25 | 24 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 38 .title { | 37 .title { |
| 39 font-size: 125%; | 38 font-size: 125%; |
| 40 color: white; | 39 color: white; |
| 41 } | 40 } |
| 42 </style> | 41 </style> |
| 43 | 42 |
| 44 <app-drawer-layout fullbleed force-narrow> | 43 <app-drawer-layout fullbleed force-narrow> |
| 45 | 44 |
| 46 <app-header-layout> | 45 <app-header-layout> |
| 47 | 46 |
| 48 <app-header reveals slot="header" effects="resize-title"> | 47 <app-header reveals slot="header"> |
| 49 <app-toolbar> | 48 <app-toolbar> |
| 50 <!--<image class="logo" src="/static/images/chromium.png"/>--> | 49 <!--<image class="logo" src="/static/images/chromium.png"/>--> |
| 51 <div class="title" main-title> | 50 <div class="title" main-title> |
| 52 Configuration Service | 51 Configuration Service |
| 53 </div> | 52 </div> |
| 54 | 53 |
| 55 <template is="dom-if" if="[[client_id]]"> | 54 <template is="dom-if" if="[[client_id]]"> |
| 56 <auth-signin | 55 <auth-signin |
| 57 class="right" | 56 class="right" |
| 58 client_id="[[client_id]]" | 57 client_id="[[client_id]]" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 // If the path is blank, redirect to / | 125 // If the path is blank, redirect to / |
| 127 if (!this.route.path) { | 126 if (!this.route.path) { |
| 128 this.set('route.path', '/'); | 127 this.set('route.path', '/'); |
| 129 } | 128 } |
| 130 }); | 129 }); |
| 131 }, | 130 }, |
| 132 | 131 |
| 133 }); | 132 }); |
| 134 </script> | 133 </script> |
| 135 </dom-module> | 134 </dom-module> |
| OLD | NEW |