| Index: chrome/browser/resources/chromeos/choose_mobile_network.css
|
| diff --git a/chrome/browser/resources/chromeos/choose_mobile_network.css b/chrome/browser/resources/chromeos/choose_mobile_network.css
|
| index 5d5f67e95001fedef21fd7a0dc97311fb9dd4a0c..e2fb7f17b5c6359c5a06ad9b886d6a49a3d546b6 100644
|
| --- a/chrome/browser/resources/chromeos/choose_mobile_network.css
|
| +++ b/chrome/browser/resources/chromeos/choose_mobile_network.css
|
| @@ -1,21 +1,23 @@
|
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| .scanning-msg {
|
| margin-left: 50px;
|
| }
|
|
|
| .spinner {
|
| - width: 32px;
|
| - height: 32px;
|
| - float: left;
|
| -
|
| - background-position: 50% 50%;
|
| - background-repeat: no-repeat;
|
| -
|
| - background-image: -webkit-canvas(spinner-circle);
|
| -
|
| - -webkit-animation-name: spin;
|
| -webkit-animation-duration: 2s;
|
| -webkit-animation-iteration-count: infinite;
|
| + -webkit-animation-name: spin;
|
| -webkit-animation-timing-function: linear;
|
| + background-image: -webkit-canvas(spinner-circle);
|
| + background-position: 50% 50%;
|
| + background-repeat: no-repeat;
|
| + float: left;
|
| + height: 32px;
|
| + width: 32px;
|
| }
|
|
|
| .content-area {
|
| @@ -29,7 +31,7 @@
|
|
|
| @-webkit-keyframes spin {
|
| from {
|
| - -webkit-transform: rotate(0deg);
|
| + -webkit-transform: rotate(0);
|
| }
|
| to {
|
| -webkit-transform: rotate(360deg);
|
|
|