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

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

Issue 385983007: Enrollment recovery: Add UMA stats. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add CHECK() for array access to make access violation impossible. Created 6 years, 5 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 min-height: 609px; 7 min-height: 609px;
8 padding: 70px 17px 21px; 8 padding: 70px 17px 21px;
9 width: 722px; 9 width: 722px;
10 } 10 }
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 #oauth-enroll-signin-right > div { 70 #oauth-enroll-signin-right > div {
71 -webkit-margin-before: 20px; 71 -webkit-margin-before: 20px;
72 } 72 }
73 73
74 #oauth-enroll-learn-more-link, 74 #oauth-enroll-learn-more-link,
75 .oauth-enroll-explain-link { 75 .oauth-enroll-explain-link {
76 display: none; 76 display: none;
77 } 77 }
78 78
79 #oauth-enrollment.mode-manual #oauth-enroll-learn-more-link, 79 #oauth-enrollment.mode-manual #oauth-enroll-learn-more-link,
80 #oauth-enrollment.mode-forced #oauth-enroll-learn-more-link { 80 #oauth-enrollment.mode-forced #oauth-enroll-learn-more-link,
81 #oauth-enrollment.mode-recovery #oauth-enroll-learn-more-link {
81 display: inline; 82 display: inline;
82 } 83 }
83 84
84 #oauth-enrollment.mode-auto .oauth-enroll-explain-link { 85 #oauth-enrollment.mode-auto .oauth-enroll-explain-link {
85 display: inline; 86 display: inline;
86 } 87 }
87 88
88 .oauth-enroll-step-content { 89 .oauth-enroll-step-content {
89 display: table-cell; 90 display: table-cell;
90 vertical-align: middle; 91 vertical-align: middle;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 color: rgb(37, 79, 155); 126 color: rgb(37, 79, 155);
126 cursor: pointer; 127 cursor: pointer;
127 text-decoration: none; 128 text-decoration: none;
128 } 129 }
129 130
130 .oauth-enroll-button { 131 .oauth-enroll-button {
131 display: none; 132 display: none;
132 } 133 }
133 134
134 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button, 135 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button,
136 .oauth-enroll-state-signin.mode-forced #oauth-enroll-back-button,
137 .oauth-enroll-state-signin.mode-recovery #oauth-enroll-back-button,
135 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button, 138 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button,
136 .oauth-enroll-state-signin.mode-forced #oauth-enroll-back-button,
137 .oauth-enroll-state-working.mode-forced #oauth-enroll-back-button, 139 .oauth-enroll-state-working.mode-forced #oauth-enroll-back-button,
140 .oauth-enroll-state-working.mode-recovery #oauth-enroll-back-button,
138 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button, 141 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button,
139 .oauth-enroll-state-error.mode-auto #oauth-enroll-retry-button, 142 .oauth-enroll-state-error.mode-auto #oauth-enroll-retry-button,
140 .oauth-enroll-state-error.mode-forced #oauth-enroll-back-button, 143 .oauth-enroll-state-error.mode-forced #oauth-enroll-back-button,
144 .oauth-enroll-state-error.mode-recovery #oauth-enroll-back-button,
141 .oauth-enroll-state-explain #oauth-enroll-explain-retry-button, 145 .oauth-enroll-state-explain #oauth-enroll-explain-retry-button,
142 .oauth-enroll-state-success #oauth-enroll-done-button { 146 .oauth-enroll-state-success #oauth-enroll-done-button {
143 display: inline; 147 display: inline;
144 } 148 }
145 149
146 #oobe.oauth-enrollment #header-oauth-enrollment { 150 #oobe.oauth-enrollment #header-oauth-enrollment {
147 display: block; 151 display: block;
148 } 152 }
149 153
150 #oauth-saml-notice-container { 154 #oauth-saml-notice-container {
(...skipping 17 matching lines...) Expand all
168 -webkit-padding-end: 17px; 172 -webkit-padding-end: 17px;
169 } 173 }
170 174
171 #oauth-enrollment:not(.saml) #oauth-saml-notice-container { 175 #oauth-enrollment:not(.saml) #oauth-saml-notice-container {
172 display: none; 176 display: none;
173 } 177 }
174 178
175 #oauth-saml-notice-message { 179 #oauth-saml-notice-message {
176 margin: 0 auto; 180 margin: 0 auto;
177 } 181 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698