| 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"> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 color: #232323; | 39 color: #232323; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .link { | 42 .link { |
| 43 font-size: 75%; | 43 font-size: 75%; |
| 44 color: white; | 44 color: white; |
| 45 margin-right: 10px; | 45 margin-right: 10px; |
| 46 } | 46 } |
| 47 | 47 |
| 48 .title { | 48 .title { |
| 49 text-decoration: none; |
| 49 color: white; | 50 color: white; |
| 50 font-size: 125%; | 51 font-size: 115%; |
| 51 } | 52 } |
| 53 |
| 54 [main-title] { |
| 55 pointer-events: auto; |
| 56 margin-right: 100px; |
| 57 } |
| 58 |
| 52 </style> | 59 </style> |
| 53 | 60 |
| 54 <app-drawer-layout fullbleed force-narrow> | 61 <app-drawer-layout fullbleed force-narrow> |
| 55 <app-header-layout> | 62 <app-header-layout> |
| 56 <app-header reveals slot="header"> | 63 <app-header reveals slot="header"> |
| 57 <app-toolbar> | 64 <app-toolbar> |
| 58 <!--<image class="logo" src="/static/images/chromium.png"/>--> | 65 <!--<image class="logo" src="/static/images/chromium.png"/>--> |
| 59 <div class="title" main-title> | 66 <div main-title> |
| 60 Configuration Service | 67 <a href="/#/" class="title"> |
| 68 Configuration Service |
| 69 </a> |
| 61 </div> | 70 </div> |
| 62 | 71 |
| 63 <a href="https://luci-config.appspot.com/_ah/api/explorer" | 72 <a href="https://luci-config.appspot.com/_ah/api/explorer" |
| 64 class="link" | 73 class="link" |
| 65 target="_blank"> APIs explorer | 74 target="_blank"> APIs explorer |
| 66 </a> | 75 </a> |
| 67 | 76 |
| 68 <template is="dom-if" if="[[client_id]]"> | 77 <template is="dom-if" if="[[client_id]]"> |
| 69 <auth-signin | 78 <auth-signin |
| 70 class="right" | 79 class="right" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 // If the path is blank, redirect to / | 152 // If the path is blank, redirect to / |
| 144 if (!this.route.path) { | 153 if (!this.route.path) { |
| 145 this.set('route.path', '/'); | 154 this.set('route.path', '/'); |
| 146 } | 155 } |
| 147 }); | 156 }); |
| 148 }, | 157 }, |
| 149 | 158 |
| 150 }); | 159 }); |
| 151 </script> | 160 </script> |
| 152 </dom-module> | 161 </dom-module> |
| OLD | NEW |