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

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

Issue 1029053002: Back button for the WebView-based sign-in flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Nit. Created 5 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 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 5
6 #gaia-signin { 6 #gaia-signin {
7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */ 7 height: 609px; /* Should be the same as #user-image.loading min-heigth. */
8 padding: 70px 17px 69px; /* Screen has no controls. */ 8 padding: 70px 17px 69px; /* Screen has no controls. */
9 width: 722px; /* Should be the same as #user-image.loading width. */ 9 width: 722px; /* Should be the same as #user-image.loading width. */
10 } 10 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 } 66 }
67 67
68 .loading #close-button-item { 68 .loading #close-button-item {
69 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); 69 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE);
70 } 70 }
71 71
72 #close-button-item:disabled { 72 #close-button-item:disabled {
73 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED); 73 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED);
74 } 74 }
75 75
76 #back-button-item {
77 background: transparent none;
78 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON);
79 background-position: center;
80 background-repeat: no-repeat;
81 height: 18px;
82 left: 14px;
83 position: absolute;
84 top: 14px;
85 width: 18px;
86 z-index: 1;
87 }
88
89 html[dir=rtl] #close-button-item {
90 left: auto;
91 right: 14px;
92 }
93
94 #back-button-item:disabled {
95 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON_MASKED);
96 }
97
76 .signin-text { 98 .signin-text {
77 color: #666; 99 color: #666;
78 margin-top: 20px; 100 margin-top: 20px;
79 } 101 }
80 102
81 .signin-link { 103 .signin-link {
82 color: rgb(37, 79, 155); 104 color: rgb(37, 79, 155);
83 cursor: pointer; 105 cursor: pointer;
84 text-decoration: none; 106 text-decoration: none;
85 } 107 }
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 left: 0; 218 left: 0;
197 position: absolute; 219 position: absolute;
198 right: 0; 220 right: 0;
199 text-align: center; 221 text-align: center;
200 top: 50px; 222 top: 50px;
201 } 223 }
202 224
203 #saml-notice-message { 225 #saml-notice-message {
204 margin: 0 auto; 226 margin: 0 auto;
205 } 227 }
OLDNEW
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/chromeos/login/screen_gaia_signin.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698