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

Side by Side Diff: mojo/spy/ui/spy_shell.html

Issue 281623007: Add mojo web UI framework based on Nat's TVCM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed a few Created 6 years, 7 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
« no previous file with comments | « mojo/spy/ui/spy_project.py ('k') | mojo/spy/ui/spy_shell.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 Copyright 2014 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 <style>
7 html, body {
8 margin: 0;
9 padding: 0;
10 width: 100%;
11 height: 100%;
12 display: -webkit-flex;
13 -webkit-flex-direction: column;
14 }
15 body > x-spy-shell {
16 -webkit-flex: 1 1 auto;
17 }
18
19 x-spy-shell {
20 display: -webkit-flex;
21 -webkit-flex-direction: column;
22 }
23
24 x-spy-shell > #status {
25 -webkit-flex: 0 0 auto;
26 border-bottom: 1px solid black;
27 }
28
29 x-spy-shell > x-spy {
30 -webkit-flex: 1 1 auto;
31 }
32 </style>
33
34
35 <template id="x-spy-shell-template">
36 <div id="status"></div>
37 <x-spy></x-spy>
38 </template>
39
OLDNEW
« no previous file with comments | « mojo/spy/ui/spy_project.py ('k') | mojo/spy/ui/spy_shell.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698