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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 .dialog-header div[role=button]:hover, | 423 .dialog-header div[role=button]:hover, |
424 .dialog-header div[role=button]:active { | 424 .dialog-header div[role=button]:active { |
425 border-color: #ddd; | 425 border-color: #ddd; |
426 } | 426 } |
427 | 427 |
428 .dialog-header div[role=button][disabled] { | 428 .dialog-header div[role=button][disabled] { |
429 background-color: #f1f1f1; | 429 background-color: #f1f1f1; |
430 } | 430 } |
431 | 431 |
432 #search-box { | 432 #search-box { |
433 background: url('../images/icon_search.png') no-repeat scroll 3px 3px; | 433 background: url('../images/icon_search.png') no-repeat scroll 2px 1.5px; |
434 border: 1px solid #BBB; | 434 border: 1px solid #BBB; |
435 border-radius: 2px; | 435 border-radius: 2px; |
436 display: -webkit-box; | 436 display: -webkit-box; |
437 height: 20px; | 437 height: 20px; |
438 margin-right: 10px; | 438 margin-right: 10px; |
439 padding-left: 22px; | 439 padding-left: 22px; |
440 } | 440 } |
441 | 441 |
442 /* button:hover and button[disabled]:hover rules must be override by placing | 442 /* button:hover and button[disabled]:hover rules must be override by placing |
443 * the following four rules after them. | 443 * the following four rules after them. |
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1270 100% { opacity: 1; } | 1270 100% { opacity: 1; } |
1271 } | 1271 } |
1272 | 1272 |
1273 :hover > .tooltip { | 1273 :hover > .tooltip { |
1274 -webkit-animation-duration: 800ms; | 1274 -webkit-animation-duration: 800ms; |
1275 -webkit-animation-iteration-count: 1; | 1275 -webkit-animation-iteration-count: 1; |
1276 -webkit-animation-name: tooltip-show; | 1276 -webkit-animation-name: tooltip-show; |
1277 -webkit-animation-timing-function: linear; | 1277 -webkit-animation-timing-function: linear; |
1278 opacity: 1; | 1278 opacity: 1; |
1279 } | 1279 } |
OLD | NEW |