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

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

Issue 2691883002: Uprefix CSS transitions in ui/ and chrome/ styles (Closed)
Patch Set: transitions only Created 3 years, 10 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 #gaia-signin { 5 #gaia-signin {
6 height: 528px; 6 height: 528px;
7 width: 448px; 7 width: 448px;
8 } 8 }
9 9
10 #gaia-signin.full-width { 10 #gaia-signin.full-width {
11 padding: 44px 0 0; 11 padding: 44px 0 0;
12 width: 562px; 12 width: 562px;
13 } 13 }
14 14
15 .signin-link { 15 .signin-link {
16 color: rgb(37, 79, 155); 16 color: rgb(37, 79, 155);
17 cursor: pointer; 17 cursor: pointer;
18 text-decoration: none; 18 text-decoration: none;
19 } 19 }
20 20
21 .signin-link:focus { 21 .signin-link:focus {
22 -webkit-transition: outline-color 200ms;
23 /* Note: May use 1px solid here. */ 22 /* Note: May use 1px solid here. */
24 outline-color: rgb(77, 144, 254); 23 outline-color: rgb(77, 144, 254);
24 transition: outline-color 200ms;
25 } 25 }
26 26
27 #gaia-signin-form-container, 27 #gaia-signin-form-container,
28 #signin-frame { 28 #signin-frame {
29 height: 100%; 29 height: 100%;
30 position: relative; 30 position: relative;
31 width: 100%; 31 width: 100%;
32 } 32 }
33 33
34 #signin-frame { 34 #signin-frame {
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 right: 0; 100 right: 0;
101 top: 0; 101 top: 0;
102 z-index: 1; 102 z-index: 1;
103 } 103 }
104 104
105 .loading #gaia-navigation, 105 .loading #gaia-navigation,
106 .full-width #gaia-navigation { 106 .full-width #gaia-navigation {
107 color: rgba(0, 0, 0, .54); 107 color: rgba(0, 0, 0, .54);
108 } 108 }
109 109
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698