OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 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.col-resize * { | 5 html.col-resize * { |
6 cursor: col-resize !important; | 6 cursor: col-resize !important; |
7 } | 7 } |
8 | 8 |
9 /* Outer frame of the dialog. */ | 9 /* Outer frame of the dialog. */ |
10 body { | 10 body { |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
515 height: 22px; | 515 height: 22px; |
516 left: 50%; | 516 left: 50%; |
517 margin-left: -11px; | 517 margin-left: -11px; |
518 margin-top: -11px; | 518 margin-top: -11px; |
519 opacity: 0.5; | 519 opacity: 0.5; |
520 position: absolute; | 520 position: absolute; |
521 top: 50%; | 521 top: 50%; |
522 width: 22px; | 522 width: 22px; |
523 } | 523 } |
524 | 524 |
525 #spinner-container { | |
526 -webkit-box-align: center; | |
527 -webkit-box-pack: center; | |
528 bottom: 0; | |
529 display: -webkit-box; | |
530 left: 0; | |
531 position: absolute; | |
532 right: 0; | |
533 top: 0; | |
534 } | |
535 | |
536 #spinner-with-text { | |
537 background-image: url('../images/common/spinner.svg'); | |
538 background-repeat: no-repeat; | |
539 font-size: 16px; | |
540 height: 22px; | |
541 min-width: 22px; | |
542 opacity: 0.6; | |
543 padding-left: 26px; | |
544 } | |
545 | |
546 .downloads-warning { | 525 .downloads-warning { |
547 -webkit-box-align: center; | 526 -webkit-box-align: center; |
548 -webkit-box-orient: horizontal; | 527 -webkit-box-orient: horizontal; |
549 -webkit-transition: height 70ms linear; | 528 -webkit-transition: height 70ms linear; |
550 background-color: #f0f0f0; | 529 background-color: #f0f0f0; |
551 background-image: -webkit-image-set( | 530 background-image: -webkit-image-set( |
552 url('../images/files/ui/warning_icon_square.png') 1x, | 531 url('../images/files/ui/warning_icon_square.png') 1x, |
553 url('../images/files/ui/2x/warning_icon_square.png') 2x); | 532 url('../images/files/ui/2x/warning_icon_square.png') 2x); |
554 background-position: 15px center; | 533 background-position: 15px center; |
555 background-repeat: no-repeat; | 534 background-repeat: no-repeat; |
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 width: 50%; | 1407 width: 50%; |
1429 } | 1408 } |
1430 | 1409 |
1431 #list-container .table-header-inner { | 1410 #list-container .table-header-inner { |
1432 height: 100%; | 1411 height: 100%; |
1433 } | 1412 } |
1434 | 1413 |
1435 #list-container .table-header-cell:hover { | 1414 #list-container .table-header-cell:hover { |
1436 background-color: #f2f2f2; | 1415 background-color: #f2f2f2; |
1437 } | 1416 } |
OLD | NEW |