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

Side by Side Diff: chrome/browser/resources/chromeos/login/throbber_notice.css

Issue 1179323005: Polymer upgraded to 1.0 in login flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@polymer_pre_migration
Patch Set: Comments addressed. Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 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 5
6 paper-spinner::shadow .circle { 6 :host {
7 border-color: rgb(66, 133, 244); 7 align-items: center;
8 display: flex;
9 flex-direction: column;
10 justify-content: center;
11 }
12
13 paper-spinner {
14 --paper-spinner-layer-1-color: var(--google-blue-500);
15 --paper-spinner-layer-2-color: var(--google-blue-500);
16 --paper-spinner-layer-3-color: var(--google-blue-500);
17 --paper-spinner-layer-4-color: var(--google-blue-500);
8 } 18 }
9 19
10 paper-spinner { 20 paper-spinner {
11 height: 38px; 21 height: 38px;
22 margin-bottom: 28px;
12 width: 38px; 23 width: 38px;
13 } 24 }
14 25
15 #spinner-container {
16 margin-bottom: 28px;
17 }
18
19 #spinner-comment { 26 #spinner-comment {
20 color: #747474; 27 color: #747474;
21 font-size: 13px; 28 font-size: 13px;
22 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698