| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 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 height: 100%; | 6 height: 100%; |
| 7 } | 7 } |
| 8 | 8 |
| 9 body { | 9 body { |
| 10 -webkit-app-region: drag; | 10 -webkit-app-region: drag; |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 width: 240px; | 266 width: 240px; |
| 267 } | 267 } |
| 268 | 268 |
| 269 /* [hidden] does display:none, but its priority is too low. */ | 269 /* [hidden] does display:none, but its priority is too low. */ |
| 270 [hidden], | 270 [hidden], |
| 271 body[custom] [visibleif]:not([visibleif~='custom']), | 271 body[custom] [visibleif]:not([visibleif~='custom']), |
| 272 body:not([custom]) [visibleif~='custom'] { | 272 body:not([custom]) [visibleif~='custom'] { |
| 273 display: none !important; | 273 display: none !important; |
| 274 } | 274 } |
| 275 | 275 |
| 276 body[surprise-me-disabled] [visibleif]:not([visibleif~='surprise-me-disabled']), |
| 277 body:not([surprise-me-disabled]) [visibleif~='surprise-me-disabled'] { |
| 278 display: none !important; |
| 279 } |
| 280 |
| 276 .progress-bar { | 281 .progress-bar { |
| 277 background-color: rgba(255, 255, 255, 0.7); | 282 background-color: rgba(255, 255, 255, 0.7); |
| 278 height: 6px; | 283 height: 6px; |
| 279 position: absolute; | 284 position: absolute; |
| 280 top: 62px; | 285 top: 62px; |
| 281 width: 100%; | 286 width: 100%; |
| 282 } | 287 } |
| 283 | 288 |
| 284 .progress-track { | 289 .progress-track { |
| 285 -webkit-transition: width 1ms linear; | 290 -webkit-transition: width 1ms linear; |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 margin-right: 4px; | 368 margin-right: 4px; |
| 364 opacity: 0.7; | 369 opacity: 0.7; |
| 365 position: relative; | 370 position: relative; |
| 366 top: 4px; | 371 top: 4px; |
| 367 width: 17px; | 372 width: 17px; |
| 368 } | 373 } |
| 369 | 374 |
| 370 #surprise-me #checkbox.checked { | 375 #surprise-me #checkbox.checked { |
| 371 background-image: url(../images/ui/checkbox_checked.png); | 376 background-image: url(../images/ui/checkbox_checked.png); |
| 372 } | 377 } |
| OLD | NEW |