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

Side by Side Diff: mojo/spy/ui/spy.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/dev_server.py ('k') | mojo/spy/ui/spy.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 x-spy-log-message {
8 display: block;
9 border-style: 1px solid black;
10 margin-top: 4px;
11 margin-bottom: 4px;
12 }
13
14 x-spy {
15 display: -webkit-flex;
16 -webkit-flex-direction: column;
17 }
18 x-spy > messages {
19 display: block;
20 -webkit-flex: 1 1 auto;
21 }
22 x-spy > form {
23 -webkit-flex: 0 0 auto;
24 }
25 x-spy > form > input {
26 width: 300px;
27 }
28 </style>
29
30
31 <template id="x-spy-template">
32 <messages>
33 </messages>
34 <input type="text" id="command" placeholder="enter spy command + enter" />
35 </template>
36
OLDNEW
« no previous file with comments | « mojo/spy/ui/dev_server.py ('k') | mojo/spy/ui/spy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698