| OLD | NEW |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 1 .scanning-msg { | 6 .scanning-msg { |
| 2 margin-left: 50px; | 7 margin-left: 50px; |
| 3 } | 8 } |
| 4 | 9 |
| 5 .spinner { | 10 .spinner { |
| 6 width: 32px; | 11 -webkit-animation-duration: 2s; |
| 7 height: 32px; | 12 -webkit-animation-iteration-count: infinite; |
| 8 float: left; | 13 -webkit-animation-name: spin; |
| 9 | 14 -webkit-animation-timing-function: linear; |
| 15 background-image: -webkit-canvas(spinner-circle); |
| 10 background-position: 50% 50%; | 16 background-position: 50% 50%; |
| 11 background-repeat: no-repeat; | 17 background-repeat: no-repeat; |
| 12 | 18 float: left; |
| 13 background-image: -webkit-canvas(spinner-circle); | 19 height: 32px; |
| 14 | 20 width: 32px; |
| 15 -webkit-animation-name: spin; | |
| 16 -webkit-animation-duration: 2s; | |
| 17 -webkit-animation-iteration-count: infinite; | |
| 18 -webkit-animation-timing-function: linear; | |
| 19 } | 21 } |
| 20 | 22 |
| 21 .content-area { | 23 .content-area { |
| 22 height: 120px; | 24 height: 120px; |
| 23 overflow: auto; | 25 overflow: auto; |
| 24 } | 26 } |
| 25 | 27 |
| 26 .disabled { | 28 .disabled { |
| 27 opacity: 0.7; | 29 opacity: 0.7; |
| 28 } | 30 } |
| 29 | 31 |
| 30 @-webkit-keyframes spin { | 32 @-webkit-keyframes spin { |
| 31 from { | 33 from { |
| 32 -webkit-transform: rotate(0deg); | 34 -webkit-transform: rotate(0); |
| 33 } | 35 } |
| 34 to { | 36 to { |
| 35 -webkit-transform: rotate(360deg); | 37 -webkit-transform: rotate(360deg); |
| 36 } | 38 } |
| 37 } | 39 } |
| OLD | NEW |