OLD | NEW |
(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 <!-- Status bar at top of screen --> |
| 8 |
| 9 <style> |
| 10 #top-bar-view { |
| 11 -webkit-align-items: center; |
| 12 border-bottom: 1px solid gray; |
| 13 color: #fff; |
| 14 display: -webkit-flex; |
| 15 padding: 2px 2px 4px 7px; |
| 16 } |
| 17 </style> |
| 18 |
| 19 <div id=top-bar-view> |
| 20 <div style="-webkit-flex-grow: 1"> |
| 21 <!-- Status bar at top of screen --> |
| 22 <div id=loaded-status-view> |
| 23 <span id=loaded-status-view-dump-file-name></span> |
| 24 |
| 25 <!-- TODO(rayraymond): Add any extra tools here --> |
| 26 <select id=capture-status-view-actions> |
| 27 </select> |
| 28 </div> |
| 29 </div> |
| 30 </div> |
| 31 |
OLD | NEW |