| /** |
| * @license |
| * Copyright (C) 2020 The Android Open Source Project |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * http://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| import {html} from '@polymer/polymer/lib/utils/html-tag'; |
| |
| export const htmlTemplate = html` |
| <style include="shared-styles"> |
| :host { |
| display: block; |
| } |
| #graphic, |
| #help { |
| display: inline-block; |
| margin: var(--spacing-m); |
| } |
| #graphic #circle { |
| align-items: center; |
| background-color: var(--chip-background-color); |
| border-radius: 50%; |
| display: flex; |
| height: 10em; |
| justify-content: center; |
| width: 10em; |
| } |
| #graphic iron-icon { |
| color: #9e9e9e; |
| height: 5em; |
| width: 5em; |
| } |
| #graphic p { |
| color: var(--deemphasized-text-color); |
| text-align: center; |
| } |
| #help { |
| padding-top: var(--spacing-xl); |
| vertical-align: top; |
| } |
| #help p { |
| margin-bottom: var(--spacing-m); |
| max-width: 35em; |
| } |
| @media only screen and (max-width: 50em) { |
| #graphic { |
| display: none; |
| } |
| } |
| </style> |
| <div id="graphic"> |
| <div id="circle"> |
| <iron-icon id="icon" icon="gr-icons:zeroState"></iron-icon> |
| </div> |
| <p> |
| No outgoing changes yet |
| </p> |
| </div> |
| <div id="help"> |
| <h2 class="heading-3">Push your first change for code review</h2> |
| <p> |
| Pushing a change for review is easy, but a little different from other git |
| code review tools. Click on the \`Create Change' button and follow the |
| step by step instructions. |
| </p> |
| <gr-button on-click="_handleCreateTap">Create Change</gr-button> |
| </div> |
| `; |