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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 .dialog-header div[role=button]:hover, | 448 .dialog-header div[role=button]:hover, |
449 .dialog-header div[role=button]:active { | 449 .dialog-header div[role=button]:active { |
450 border-color: #ddd; | 450 border-color: #ddd; |
451 } | 451 } |
452 | 452 |
453 .dialog-header div[role=button][disabled] { | 453 .dialog-header div[role=button][disabled] { |
454 background-color: #f1f1f1; | 454 background-color: #f1f1f1; |
455 } | 455 } |
456 | 456 |
457 #search-box { | 457 #search-box { |
458 -webkit-transition: width 600ms; | 458 -webkit-transition: width 200ms; |
459 background: -webkit-image-set( | 459 background: -webkit-image-set( |
460 url('../images/files/ui/icon_search.png') 1x, | 460 url('../images/files/ui/icon_search.png') 1x, |
461 url('../images/files/ui/2x/icon_search.png') 2x); | 461 url('../images/files/ui/2x/icon_search.png') 2x); |
462 background-position: 4px 4.5px; | 462 background-position: 4px 4.5px; |
463 background-repeat: no-repeat; | 463 background-repeat: no-repeat; |
464 display: -webkit-box; | 464 display: -webkit-box; |
465 height: 27px; | 465 height: 27px; |
466 margin-right: 10px; | 466 margin-right: 10px; |
467 padding: 1px 6px 2px 23px; | 467 padding: 1px 6px 2px 23px; |
468 width: 150px; | 468 width: 150px; |
(...skipping 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1464 height: 100%; | 1464 height: 100%; |
1465 } | 1465 } |
1466 | 1466 |
1467 #list-container .table-header-cell:hover { | 1467 #list-container .table-header-cell:hover { |
1468 background-color: #f2f2f2; | 1468 background-color: #f2f2f2; |
1469 } | 1469 } |
1470 | 1470 |
1471 button:focus { | 1471 button:focus { |
1472 outline-color: rgb(77, 144, 254); | 1472 outline-color: rgb(77, 144, 254); |
1473 } | 1473 } |
OLD | NEW |