| 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%; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 label.selectable-button { | 181 label.selectable-button { |
| 182 -webkit-user-select: none; | 182 -webkit-user-select: none; |
| 183 display: inline-block; | 183 display: inline-block; |
| 184 background: #BDF; | 184 background: #BDF; |
| 185 cursor: pointer; | 185 cursor: pointer; |
| 186 border: solid 1px #999; | 186 border: solid 1px #999; |
| 187 border-radius: 3px; | 187 border-radius: 3px; |
| 188 padding: 6px; | 188 padding: 6px; |
| 189 margin: 4px 0; | 189 margin: 4px 0; |
| 190 line-height: 1.4; | 190 line-height: 1.4; |
| 191 word-break: break-all; |
| 191 } | 192 } |
| 192 | 193 |
| 193 input.selectable-button { | 194 input.selectable-button { |
| 194 display: none; | 195 display: none; |
| 195 } | 196 } |
| 196 | 197 |
| 197 input.selectable-button:checked + label.selectable-button { | 198 input.selectable-button:checked + label.selectable-button { |
| 198 background-color: #2196F3; | 199 background-color: #2196F3; |
| 199 border-color: #666; | 200 border-color: #666; |
| 200 color: #FFF; | 201 color: #FFF; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 218 | 219 |
| 219 .no-players-selected #players .property-wrapper, | 220 .no-players-selected #players .property-wrapper, |
| 220 .no-players-selected #players #log-wrapper { | 221 .no-players-selected #players #log-wrapper { |
| 221 display: none; | 222 display: none; |
| 222 } | 223 } |
| 223 | 224 |
| 224 .no-components-selected #audio .property-wrapper { | 225 .no-components-selected #audio .property-wrapper { |
| 225 display: none; | 226 display: none; |
| 226 } | 227 } |
| 227 | 228 |
| OLD | NEW |