Files
gerrit/polygerrit-ui/app/elements/change-list/gr-create-change-help/gr-create-change-help.html
Ben Rohlfs 36919a5e3c Introduce -h1 -h2 -h3 css vars for font-size
Change -large to -h3.

Change-Id: I10c293c6e65896f2fdebaa5d24396ace3e6281db
2019-10-28 08:54:09 +01:00

90 lines
2.5 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: 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 h1 {
font-size: var(--font-size-h3);
}
#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">
<h1>Push your first change 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-click="_handleCreateTap">Create Change</gr-button>
</div>
</template>
<script src="gr-create-change-help.js"></script>
</dom-module>