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 { | 5 html { |
6 height: 100%; | 6 height: 100%; |
7 } | 7 } |
8 | 8 |
9 html.col-resize * { | 9 html.col-resize * { |
10 cursor: col-resize !important; | 10 cursor: col-resize !important; |
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
456 url('../images/files/ui/2x/icon_search.png') 2x); | 456 url('../images/files/ui/2x/icon_search.png') 2x); |
457 background-position: 4px 4.5px; | 457 background-position: 4px 4.5px; |
458 background-repeat: no-repeat; | 458 background-repeat: no-repeat; |
459 display: -webkit-box; | 459 display: -webkit-box; |
460 height: 27px; | 460 height: 27px; |
461 margin-right: 10px; | 461 margin-right: 10px; |
462 padding: 1px 6px 2px 23px; | 462 padding: 1px 6px 2px 23px; |
463 width: 150px; | 463 width: 150px; |
464 } | 464 } |
465 | 465 |
| 466 .searching #search-box { |
| 467 background-image: url('../images/common/spinner.svg'); |
| 468 background-size: 17px 17px; |
| 469 } |
| 470 |
466 #search-box:focus { | 471 #search-box:focus { |
467 border-color: rgb(77, 144, 254); | 472 border-color: rgb(77, 144, 254); |
468 outline: none; | 473 outline: none; |
469 width: 240px; | 474 width: 240px; |
470 } | 475 } |
471 | 476 |
472 #search-box, | 477 #search-box, |
473 #filename-input-box input { | 478 #filename-input-box input { |
474 border: 1px solid #BBB; | 479 border: 1px solid #BBB; |
475 border-radius: 2px; | 480 border-radius: 2px; |
(...skipping 1041 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1517 height: 100%; | 1522 height: 100%; |
1518 } | 1523 } |
1519 | 1524 |
1520 #list-container .table-header-cell:hover { | 1525 #list-container .table-header-cell:hover { |
1521 background-color: #f2f2f2; | 1526 background-color: #f2f2f2; |
1522 } | 1527 } |
1523 | 1528 |
1524 button:focus { | 1529 button:focus { |
1525 outline-color: rgb(77, 144, 254); | 1530 outline-color: rgb(77, 144, 254); |
1526 } | 1531 } |
OLD | NEW |