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

Side by Side Diff: chrome/browser/resources/chromeos/login/screen_gaia_signin.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, 8 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 | Annotate | Revision Log
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 5
6 #gaia-signin { 6 #gaia-signin {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-pack: center; 8 -webkit-box-pack: center;
9 display: -webkit-box; 9 display: -webkit-box;
10 height: 470px; 10 height: 470px;
(...skipping 21 matching lines...) Expand all
32 html[dir=rtl] #signin-right { 32 html[dir=rtl] #signin-right {
33 left: -150px; 33 left: -150px;
34 } 34 }
35 35
36 .signin-text { 36 .signin-text {
37 color: #666; 37 color: #666;
38 margin-top: 20px; 38 margin-top: 20px;
39 } 39 }
40 40
41 .signin-link { 41 .signin-link {
42 color: #254f9b; 42 color: rgb(37, 79, 155);
43 cursor: pointer; 43 cursor: pointer;
44 text-decoration: none; 44 text-decoration: none;
45 } 45 }
46 46
47 #signin-frame { 47 #signin-frame {
48 background-color: #fefefe; 48 background-color: #fefefe;
49 border: 1px solid lightgray; 49 border: 1px solid lightgray;
50 height: 100%; 50 height: 100%;
51 width: 340px; 51 width: 340px;
52 } 52 }
(...skipping 10 matching lines...) Expand all
63 } 63 }
64 64
65 /* Position to be aligned with the login box in iframe */ 65 /* Position to be aligned with the login box in iframe */
66 #login-box { 66 #login-box {
67 height: 31px; 67 height: 31px;
68 position: absolute; 68 position: absolute;
69 top: 77px; 69 top: 77px;
70 visibility: hidden; 70 visibility: hidden;
71 z-index: -1; 71 z-index: -1;
72 } 72 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698