OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 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 /* Outer frame of the dialog. */ | 7 /* Outer frame of the dialog. */ |
8 body { | 8 body { |
9 -webkit-box-flex: 1; | 9 -webkit-box-flex: 1; |
10 -webkit-box-orient: vertical; | 10 -webkit-box-orient: vertical; |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 -webkit-box-orient: vertical; | 410 -webkit-box-orient: vertical; |
411 -webkit-box-flex: 1; | 411 -webkit-box-flex: 1; |
412 } | 412 } |
413 | 413 |
414 .list-container { | 414 .list-container { |
415 display: -webkit-box; | 415 display: -webkit-box; |
416 -webkit-box-flex: 1; | 416 -webkit-box-flex: 1; |
417 position: relative; | 417 position: relative; |
418 } | 418 } |
419 | 419 |
| 420 .spinner { |
| 421 width: 22px; |
| 422 height: 22px; |
| 423 position: absolute; |
| 424 left: 50%; |
| 425 top: 50%; |
| 426 margin-left: -11px; |
| 427 margin-top: -11px; |
| 428 background-image: url(../images/spinner.svg); |
| 429 background-size: 100%; |
| 430 opacity: 0.5; |
| 431 } |
| 432 |
420 .downloads-warning { | 433 .downloads-warning { |
421 display: -webkit-box; | 434 display: -webkit-box; |
422 -webkit-box-orient: horizontal; | 435 -webkit-box-orient: horizontal; |
423 height: 57px; | 436 height: 57px; |
424 background-color: #f0f0f0; | 437 background-color: #f0f0f0; |
425 font-size: 13px; | 438 font-size: 13px; |
426 color: #666; | 439 color: #666; |
427 -webkit-box-align: center; | 440 -webkit-box-align: center; |
428 overflow: hidden; | 441 overflow: hidden; |
429 -webkit-transition: height 70ms linear; | 442 -webkit-transition: height 70ms linear; |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
875 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ | 888 /* Overlay pane covering the entire file manager window (e.g. image editor)*/ |
876 .overlay-pane { | 889 .overlay-pane { |
877 position: absolute; | 890 position: absolute; |
878 top: 0; | 891 top: 0; |
879 left: 0; | 892 left: 0; |
880 width: 100%; | 893 width: 100%; |
881 height: 100%; | 894 height: 100%; |
882 border: none; | 895 border: none; |
883 z-index: 100; | 896 z-index: 100; |
884 } | 897 } |
OLD | NEW |