• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2  -- Copyright (c) 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-row">
8  <template>
9    <style>
10      @host {
11        * {
12           -webkit-box-flex: 1;
13           display: -webkit-box;
14           text-align: center;
15           margin-right: 0.25em;
16           margin-top: 0.25em;
17        }
18        *:last-of-type {
19           margin-bottom: 0.25em;
20        }
21      }
22      content::-webkit-distributed(kb-key) {
23        -webkit-flex: 1 auto;
24      }
25    </style>
26    <content select="*"></content>
27  </template>
28  <script>
29    Polymer('kb-row');
30  </script>
31</polymer-element>
32