blob: 85ca1b06afc3a023b65a41858bec4bcff94e855e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<!--
-- Copyright 2013 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="kb-altkey-set" attributes="offset char">
<template>
<style>
:host {
background-color: #3b3b3e;
border-radius: 2px;
display: -webkit-box;
text-align: center;
position: absolute;
}
</style>
<content select="*"></content>
</template>
<script>
Polymer('kb-altkey-set', {
offset: 0,
});
</script>
</polymer-element>
|