| OLD | NEW |
| 1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 * This is the stylesheet used by user pods row of account picker UI. | 5 * This is the stylesheet used by user pods row of account picker UI. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 podrow { | 8 podrow { |
| 9 /* Temporarily disabled because animation interferes with updating screen's | 9 /* Temporarily disabled because animation interferes with updating screen's |
| 10 size. */ | 10 size. */ |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 z-index: 4; | 384 z-index: 4; |
| 385 } | 385 } |
| 386 | 386 |
| 387 html[dir=rtl] .action-box-area { | 387 html[dir=rtl] .action-box-area { |
| 388 left: 0; | 388 left: 0; |
| 389 right: auto; | 389 right: auto; |
| 390 } | 390 } |
| 391 | 391 |
| 392 .action-box-area:focus, | 392 .action-box-area:focus, |
| 393 .action-box-area.hovered, | 393 .action-box-area.hovered, |
| 394 .action-box-area.active { | 394 .action-box-area.active, |
| 395 .action-box-area.forced { |
| 395 opacity: 1; | 396 opacity: 1; |
| 396 } | 397 } |
| 397 | 398 |
| 398 .action-box-button { | 399 .action-box-button { |
| 399 background-image: url(chrome://theme/IDR_OOBE_ACTION_BOX_BUTTON_NORMAL); | 400 background-image: url(chrome://theme/IDR_OOBE_ACTION_BOX_BUTTON_NORMAL); |
| 400 height: 13px; | 401 height: 13px; |
| 401 margin: 5px; | 402 margin: 5px; |
| 402 width: 13px; | 403 width: 13px; |
| 403 } | 404 } |
| 404 | 405 |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 -webkit-animation: ellipsis-component2 1.5s infinite; | 760 -webkit-animation: ellipsis-component2 1.5s infinite; |
| 760 } | 761 } |
| 761 | 762 |
| 762 @-webkit-keyframes ellipsis-component2 { | 763 @-webkit-keyframes ellipsis-component2 { |
| 763 0% { opacity: 0; } | 764 0% { opacity: 0; } |
| 764 25% { opacity: 0; } | 765 25% { opacity: 0; } |
| 765 50% { opacity: 0; } | 766 50% { opacity: 0; } |
| 766 75% { opacity: 1; } | 767 75% { opacity: 1; } |
| 767 100% { opacity: 0; } | 768 100% { opacity: 0; } |
| 768 } | 769 } |
| OLD | NEW |