blob: 94f3f53d390fe18415fb940004244c157b369392 [file] [log] [blame]
<!--
Copyright 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<polymer-element name="ct-commit" attributes="data" noscript>
<template>
<style>
:host {
display: block;
}
a {
padding: 5px 10px;
margin-right: 5px;
border-radius: 4px;
display: inline-block;
}
:host(:hover) a {
background-color: #555;
color: white;
}
:host(:hover) a::after {
content: '';
width: 0;
height: 0;
margin-top: 5px;
position: absolute;
margin-left: 10px;
border-top: 5px solid white;
border-left: 5px solid #555;
border-bottom: 5px solid white;
}
</style>
<a href="{{ data.url }}">{{ data.repository }}:{{ data.revision }}</a> {{ data.summary }} <em>{{ data.author }}</em>
</template>
</polymer-element>