OLD | NEW |
(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 |
OLD | NEW |