Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(643)

Side by Side Diff: ui/keyboard/resources/elements/kb-row.html

Issue 15176004: Web Component Virtual Keyboard (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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 <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: 5px;
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.register(this);
27 </script>
28 </element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698