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