Home | History | Annotate | Download | only in elements
      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: 5px;
     16            margin-top: 7px;
     17         }
     18       }
     19       content::-webkit-distributed(kb-key) {
     20         -webkit-flex: 1 auto;
     21       }
     22     </style>
     23     <content select="*"></content>
     24   </template>
     25   <script>
     26     Polymer('kb-row');
     27   </script>
     28 </polymer-element>
     29