Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2842)

Unified Diff: chrome/browser/resources/chromeos/choose_mobile_network.css

Issue 9864032: [WebUI] Fix all CSS nits in chrome/browser/resources/chromeos. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing screen_account_picker.css Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/keyboard_overlay.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/keyboard_overlay.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698