| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <!-- Status bar at top of screen --> | 7 <!-- Status bar at top of screen --> |
| 8 | 8 |
| 9 <style> | 9 <style> |
| 10 | 10 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 top: 1px; | 41 top: 1px; |
| 42 } | 42 } |
| 43 | 43 |
| 44 #top-bar-view-tab-selecter:focus { | 44 #top-bar-view-tab-selecter:focus { |
| 45 box-shadow: 0 0 3px 4px rgba(255, 238, 0, 0.50); | 45 box-shadow: 0 0 3px 4px rgba(255, 238, 0, 0.50); |
| 46 } | 46 } |
| 47 | 47 |
| 48 #top-bar-view { | 48 #top-bar-view { |
| 49 -webkit-align-items: center; | 49 -webkit-align-items: center; |
| 50 border-bottom: 1px solid gray; | 50 border-bottom: 1px solid gray; |
| 51 color: #eee; | 51 color: #fff; |
| 52 display: -webkit-flex; | 52 display: -webkit-flex; |
| 53 padding: 2px 2px 4px 7px; | 53 padding: 2px 2px 4px 7px; |
| 54 } | 54 } |
| 55 </style> | 55 </style> |
| 56 | 56 |
| 57 <div id=top-bar-view> | 57 <div id=top-bar-view> |
| 58 <span class=top-bar-view-arrow> | 58 <span class=top-bar-view-arrow> |
| 59 <select id=top-bar-view-tab-selecter></select> | 59 <select aria-label="Tab selector" id=top-bar-view-tab-selecter></select> |
| 60 </span> | 60 </span> |
| 61 <div style="-webkit-flex-grow: 1"> | 61 <div style="-webkit-flex-grow: 1"> |
| 62 <include src="status_view.html"/> | 62 <include src="status_view.html"/> |
| 63 </div> | 63 </div> |
| 64 </div> | 64 </div> |
| OLD | NEW |