blob: 2532c77f12f019cc8d6711364540dfcb972f0015 [file] [log] [blame]
<!--
Copyright (C) 2017 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="../../shared/gr-rest-api-interface/gr-rest-api-interface.html">
<link rel="import" href="../gr-label-score-row/gr-label-score-row.html">
<link rel="import" href="../../../styles/shared-styles.html">
<dom-module id="gr-label-scores">
<template>
<style include="shared-styles">
.mergedMessage {
font-style: italic;
text-align: center;
width: 100%;
}
@media only screen and (max-width: 25em) {
:host {
text-align: center;
}
}
</style>
<template is="dom-repeat" items="[[_labels]]" as="label">
<gr-label-score-row
label="[[label]]"
name="[[label.name]]"
labels="[[change.labels]]"
permitted-labels="[[permittedLabels]]"
label-values="[[_labelValues]]"></gr-label-score-row>
</template>
<div class="mergedMessage"
hidden$="[[!_changeIsMerged(change.status)]]">
Because this change has been merged, votes may not be decreased.
</div>
</template>
<script src="gr-label-scores.js"></script>
</dom-module>