Upstream version 7.35.139.0
[platform/framework/web/crosswalk.git] / src / ui / keyboard / resources / elements / kb-altkey-container.html
1 <!--
2   -- Copyright 2013 The Chromium Authors. All rights reserved.
3   -- Use of this source code is governed by a BSD-style license that can be
4   -- found in the LICENSE file.
5   -->
6
7 <polymer-element name="kb-altkey-container" attributes="keyset"
8     on-pointerup="{{up}}" on-pointerout="{{out}}">
9   <template>
10     <style>
11       :host {
12         -webkit-box-flex: 1;
13         background-color: rgba(0, 0, 0, 0.6);
14         bottom: 0;
15         left: 0;
16         position: absolute;
17         right: 0;
18         top: 0;
19       }
20     </style>
21     <content select="#{{keyset}}"></content>
22   </template>
23 </polymer-element>