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

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

Issue 1132043002: Refresh button for FrE and recovery modes added to enrollment screen. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gaia_icon_button
Patch Set: Rebased. Created 5 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #oauth-enrollment { 6 #oauth-enrollment {
7 height: 528px; 7 height: 528px;
8 padding: 0; 8 padding: 0;
9 width: 448px; 9 width: 448px;
10 } 10 }
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 .oauth-enroll-link { 72 .oauth-enroll-link {
73 color: rgb(17, 85, 204); 73 color: rgb(17, 85, 204);
74 cursor: pointer; 74 cursor: pointer;
75 text-decoration: none; 75 text-decoration: none;
76 } 76 }
77 77
78 .oauth-enroll-button { 78 .oauth-enroll-button {
79 display: none; 79 display: none;
80 } 80 }
81 81
82 #oauth-enroll-back-button,
83 #oauth-enrollment.saml #oauth-enroll-back-button {
84 display: none;
85 }
86
87 .oauth-enroll-state-signin #oauth-enroll-back-button {
88 display: inline;
89 }
90
82 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, 91 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button,
83 .oauth-enroll-state-signin #oauth-enroll-back-button, 92 .oauth-enroll-state-signin.mode-forced #oauth-enroll-refresh-button,
93 .oauth-enroll-state-signin.mode-recovery #oauth-enroll-refresh-button,
84 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, 94 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button,
85 .oauth-enroll-state-working #oauth-enroll-back-button, 95 .oauth-enroll-state-working.mode-forced #oauth-enroll-refresh-button,
96 .oauth-enroll-stain-working.mode-recovery #oauth-enroll-refresh-button,
86 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, 97 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button,
87 .oauth-enroll-state-error.mode-manual #oauth-enroll-done-button, 98 .oauth-enroll-state-error.mode-manual #oauth-enroll-done-button,
88 .oauth-enroll-state-error #oauth-enroll-back-button,
89 .oauth-enroll-state-success #oauth-enroll-done-button { 99 .oauth-enroll-state-success #oauth-enroll-done-button {
90 display: inline; 100 display: inline;
91 } 101 }
92 102
93 #oobe.oauth-enrollment #header-oauth-enrollment { 103 #oobe.oauth-enrollment #header-oauth-enrollment {
94 display: block; 104 display: block;
95 } 105 }
96 106
97 #oauth-saml-notice-container { 107 #oauth-saml-notice-container {
98 -webkit-margin-start: 19px; 108 -webkit-margin-start: 19px;
(...skipping 17 matching lines...) Expand all
116 display: none; 126 display: none;
117 } 127 }
118 128
119 #oauth-saml-notice-message { 129 #oauth-saml-notice-message {
120 color: rgb(106, 106, 106); 130 color: rgb(106, 106, 106);
121 font-size: 13px; 131 font-size: 13px;
122 margin: 0 auto; 132 margin: 0 auto;
123 } 133 }
124 134
125 #oauth-enroll-cancel-button, 135 #oauth-enroll-cancel-button,
126 #oauth-enroll-back-button { 136 #oauth-enroll-back-button,
137 #oauth-enroll-refresh-button {
127 position: absolute; 138 position: absolute;
128 top: 10px; 139 top: 10px;
140 z-index: 1;
129 } 141 }
130 142
131 #oauth-enroll-cancel-button { 143 #oauth-enroll-cancel-button,
144 #oauth-enroll-refresh-button {
132 color: rgba(0, 0, 0, .54); 145 color: rgba(0, 0, 0, .54);
133 right: 10px; 146 right: 10px;
134 } 147 }
135 148
136 html[dir=rtl] #oauth-enroll-cancel-button { 149 html[dir=rtl] #oauth-enroll-cancel-button,
150 html[dir=rtl] #oauth-enroll-refresh-button {
137 left: 10px; 151 left: 10px;
138 right: auto; 152 right: auto;
139 } 153 }
140 154
141 #oauth-enrollment.saml #oauth-enroll-cancel-button { 155 #oauth-enrollment.saml #oauth-enroll-cancel-button,
156 #oauth-enrollment.saml #oauth-enroll-refresh-button {
142 color: rgba(0, 0, 0, .54); 157 color: rgba(0, 0, 0, .54);
143 } 158 }
144 159
145 .oauth-enroll-state-signin #oauth-enroll-cancel-button, 160 .oauth-enroll-state-signin #oauth-enroll-cancel-button,
146 .oauth-enroll-state-working #oauth-enroll-cancel-button { 161 .oauth-enroll-state-working #oauth-enroll-cancel-button,
162 .oauth-enroll-state-signin #oauth-enroll-refresh-button,
163 .oauth-enroll-state-working #oauth-enroll-refresh-button {
147 color: white; 164 color: white;
148 } 165 }
149 166
150 #oauth-enroll-back-button { 167 #oauth-enroll-back-button {
151 color: white; 168 color: white;
152 left: 10px; 169 left: 10px;
153 } 170 }
154 171
155 html[dir=rtl] #oauth-enroll-back-button { 172 html[dir=rtl] #oauth-enroll-back-button {
156 -webkit-transform: scaleX(-1); 173 -webkit-transform: scaleX(-1);
157 left: auto; 174 left: auto;
158 right: 10px; 175 right: 10px;
159 } 176 }
160 177
161 #oauth-enrollment.saml #oauth-enroll-back-button { 178 #oauth-enrollment.saml #oauth-enroll-back-button {
162 display: none; 179 display: none;
163 } 180 }
164 181
165 #oauth-enroll-attribute-prompt-message { 182 #oauth-enroll-attribute-prompt-message {
166 color: black; 183 color: black;
167 } 184 }
185
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/login/oobe_screen_oauth_enrollment_webview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698