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 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
521 top: 50%; | 521 top: 50%; |
522 width: 22px; | 522 width: 22px; |
523 } | 523 } |
524 | 524 |
525 #spinner-container { | 525 #spinner-container { |
526 -webkit-box-align: center; | 526 -webkit-box-align: center; |
527 -webkit-box-pack: center; | 527 -webkit-box-pack: center; |
528 bottom: 0; | 528 bottom: 0; |
529 display: -webkit-box; | 529 display: -webkit-box; |
530 left: 0; | 530 left: 0; |
| 531 pointer-events: none; |
531 position: absolute; | 532 position: absolute; |
532 right: 0; | 533 right: 0; |
533 top: 0; | 534 top: 0; |
534 } | 535 } |
535 | 536 |
536 #spinner-with-text { | 537 #spinner-with-text { |
537 background-image: url('../images/common/spinner.svg'); | 538 background-image: url('../images/common/spinner.svg'); |
538 background-repeat: no-repeat; | 539 background-repeat: no-repeat; |
539 font-size: 16px; | 540 font-size: 16px; |
540 height: 22px; | 541 height: 22px; |
(...skipping 887 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 width: 50%; | 1429 width: 50%; |
1429 } | 1430 } |
1430 | 1431 |
1431 #list-container .table-header-inner { | 1432 #list-container .table-header-inner { |
1432 height: 100%; | 1433 height: 100%; |
1433 } | 1434 } |
1434 | 1435 |
1435 #list-container .table-header-cell:hover { | 1436 #list-container .table-header-cell:hover { |
1436 background-color: #f2f2f2; | 1437 background-color: #f2f2f2; |
1437 } | 1438 } |
OLD | NEW |