Files
gerrit/polygerrit-ui/app/elements/change-list/gr-create-change-help/gr-create-change-help.html
Kasper Nilsson 57c1a28741 Refactor create change help into element
Gerrit may, in the embedded scenario, need to redefine the flow that
occurs when the "Create Change" button is tapped.

Change-Id: I034abf458cb6b79bff650da9a0311c6e82508eee
2018-10-05 23:45:46 +00:00

88 lines
2.4 KiB
HTML

<!--
@license
Copyright (C) 2018 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.
-->
<link rel="import" href="../../../bower_components/polymer/polymer.html">
<link rel="import" href="../../../styles/shared-styles.html">
<link rel="import" href="../../shared/gr-button/gr-button.html">
<link rel="import" href="../../shared/gr-icons/gr-icons.html">
<dom-module id="gr-create-change-help">
<template>
<style include="shared-styles">
:host {
display: block;
}
#graphic,
#help {
display: inline-block;
margin: .5em;
}
#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 {
vertical-align: top;
}
#help h1 {
font-size: var(--font-size-large);
}
#help p {
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">
<h1>Push your first changes for code review</h1>
<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-tap="_handleCreateTap">Create Change</gr-button>
</div>
</template>
<script src="gr-create-change-help.js"></script>
</dom-module>