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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
502 -webkit-box-orient: vertical; | 502 -webkit-box-orient: vertical; |
503 display: -webkit-box; | 503 display: -webkit-box; |
504 } | 504 } |
505 | 505 |
506 #list-container { | 506 #list-container { |
507 -webkit-box-flex: 1; | 507 -webkit-box-flex: 1; |
508 display: -webkit-box; | 508 display: -webkit-box; |
509 position: relative; | 509 position: relative; |
510 } | 510 } |
511 | 511 |
512 .spinner { | 512 .spinner { |
Vladislav Kaznacheev
2012/07/30 11:19:46
It might be not obvious but this CSS class is used
Oleg Eterevsky
2012/07/30 12:21:10
I've restored old styled and made spinner in FileM
| |
513 background-image: url('../images/common/spinner.svg'); | 513 background-image: url('../images/common/spinner.svg'); |
514 background-size: 100%; | 514 background-repeat: no-repeat; |
515 opacity: 0.6; | |
516 } | |
517 | |
518 #spinner-without-text { | |
515 height: 22px; | 519 height: 22px; |
516 left: 50%; | 520 width: 22px; |
517 margin-left: -11px; | 521 } |
518 margin-top: -11px; | 522 |
519 opacity: 0.5; | 523 #spinner-container { |
524 -webkit-box-align: center; | |
525 -webkit-box-pack: center; | |
526 bottom: 0; | |
527 display: -webkit-box; | |
528 left: 0; | |
520 position: absolute; | 529 position: absolute; |
521 top: 50%; | 530 right: 0; |
522 width: 22px; | 531 top: 0; |
532 } | |
533 | |
534 #spinner-with-text { | |
535 font-size: 16px; | |
536 padding-left: 26px; | |
523 } | 537 } |
524 | 538 |
525 .downloads-warning { | 539 .downloads-warning { |
526 -webkit-box-align: center; | 540 -webkit-box-align: center; |
527 -webkit-box-orient: horizontal; | 541 -webkit-box-orient: horizontal; |
528 -webkit-transition: height 70ms linear; | 542 -webkit-transition: height 70ms linear; |
529 background-color: #f0f0f0; | 543 background-color: #f0f0f0; |
530 background-image: -webkit-image-set( | 544 background-image: -webkit-image-set( |
531 url('../images/files/ui/warning_icon_square.png') 1x, | 545 url('../images/files/ui/warning_icon_square.png') 1x, |
532 url('../images/files/ui/2x/warning_icon_square.png') 2x); | 546 url('../images/files/ui/2x/warning_icon_square.png') 2x); |
(...skipping 874 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1407 width: 50%; | 1421 width: 50%; |
1408 } | 1422 } |
1409 | 1423 |
1410 #list-container .table-header-inner { | 1424 #list-container .table-header-inner { |
1411 height: 100%; | 1425 height: 100%; |
1412 } | 1426 } |
1413 | 1427 |
1414 #list-container .table-header-cell:hover { | 1428 #list-container .table-header-cell:hover { |
1415 background-color: #f2f2f2; | 1429 background-color: #f2f2f2; |
1416 } | 1430 } |
OLD | NEW |