| OLD | NEW |
| 1 /* Copyright 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 html, | 5 html, |
| 6 body, | 6 body, |
| 7 #container { | 7 #container { |
| 8 margin: 0; | 8 margin: 0; |
| 9 padding: 0; | 9 padding: 0; |
| 10 width: 100%; | 10 width: 100%; |
| 11 height: 100%; | 11 height: 100%; |
| 12 font-family:Arial; | 12 font-family:Arial; |
| 13 } | 13 } |
| 14 | 14 |
| 15 tabbox { | 15 tabbox { |
| 16 margin-top: 10px; | 16 padding-top: 10px; |
| 17 } | 17 } |
| 18 | 18 |
| 19 tab { | 19 tab { |
| 20 -webkit-user-select: none; | 20 -webkit-user-select: none; |
| 21 } | 21 } |
| 22 | 22 |
| 23 body tabpanels { | 23 body tabpanels { |
| 24 box-shadow: none; | 24 box-shadow: none; |
| 25 } | 25 } |
| 26 | 26 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 | 199 |
| 200 .no-players-selected #players .property-wrapper, | 200 .no-players-selected #players .property-wrapper, |
| 201 .no-players-selected #players #log-wrapper { | 201 .no-players-selected #players #log-wrapper { |
| 202 display: none; | 202 display: none; |
| 203 } | 203 } |
| 204 | 204 |
| 205 .no-components-selected #audio .property-wrapper { | 205 .no-components-selected #audio .property-wrapper { |
| 206 display: none; | 206 display: none; |
| 207 } | 207 } |
| 208 | 208 |
| OLD | NEW |