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

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

Issue 1109823002: ChromeOS GAIA: Fixed size for close and back buttons on signin and enrollment screens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
« 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: 609px; 7 height: 609px;
8 padding: 0; 8 padding: 0;
9 width: 522px; 9 width: 522px;
10 } 10 }
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 display: none; 130 display: none;
131 } 131 }
132 132
133 #oauth-saml-notice-message { 133 #oauth-saml-notice-message {
134 color: rgb(106, 106, 106); 134 color: rgb(106, 106, 106);
135 font-size: 13px; 135 font-size: 13px;
136 margin: 0 auto; 136 margin: 0 auto;
137 } 137 }
138 138
139 #oauth-enroll-cancel-button { 139 #oauth-enroll-cancel-button {
140 background: transparent none;
141 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON); 140 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON);
142 background-position: center; 141 right: 0;
143 background-repeat: no-repeat;
144 height: 14px;
145 position: absolute;
146 right: 15px;
147 top: 15px;
148 width: 14px;
149 z-index: 1;
150 } 142 }
151 143
152 html[dir=rtl] #oauth-enroll-cancel-button { 144 html[dir=rtl] #oauth-enroll-cancel-button {
153 left: 15px; 145 left: 0;
154 right: auto; 146 right: auto;
155 } 147 }
156 148
157 #oauth-enrollment.saml #oauth-enroll-cancel-button { 149 #oauth-enrollment.saml #oauth-enroll-cancel-button {
158 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE); 150 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE);
159 } 151 }
160 152
161 #oauth-enroll-cancel-button:hover { 153 #oauth-enroll-cancel-button:hover {
162 cursor: pointer; 154 cursor: pointer;
163 } 155 }
164 156
165 #oauth-enroll-back-button { 157 #oauth-enroll-back-button {
166 background: transparent none;
167 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON); 158 background-image: url(chrome://theme/IDR_LOGIN_BACK_BUTTTON);
168 background-position: center; 159 left: 0;
169 background-repeat: no-repeat;
170 height: 18px;
171 left: 14px;
172 position: absolute;
173 top: 14px;
174 width: 18px;
175 z-index: 1;
176 } 160 }
177 161
178 html[dir=rtl] #oauth-enroll-back-button { 162 html[dir=rtl] #oauth-enroll-back-button {
179 -webkit-transform: scaleX(-1); 163 -webkit-transform: scaleX(-1);
180 left: auto; 164 left: auto;
181 right: 14px; 165 right: 0;
182 } 166 }
183 167
184 #oauth-enrollment.saml #oauth-enroll-back-button { 168 #oauth-enrollment.saml #oauth-enroll-back-button {
185 display: none; 169 display: none;
186 } 170 }
187 171
188 #oauth-enroll-back-button:hover { 172 #oauth-enroll-back-button:hover {
189 cursor: pointer; 173 cursor: pointer;
190 } 174 }
191 175
192 .oauth-enroll-textbox { 176 .oauth-enroll-textbox {
193 display: inline-block; 177 display: inline-block;
194 position: relative; 178 position: relative;
195 top: 10px; 179 top: 10px;
196 vertical-align: top; 180 vertical-align: top;
197 } 181 }
198 182
199 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] { 183 .oauth-enroll-textbox.oauth-enroll-attribute-field[type='text'] {
200 border-color: black; 184 border-color: black;
201 font-size: 16px; 185 font-size: 16px;
202 position: relative; 186 position: relative;
203 width: 250px; 187 width: 250px;
204 } 188 }
205 189
206 .oauth-enroll-textbox.auth-enroll-attribute-label { 190 .oauth-enroll-textbox.auth-enroll-attribute-label {
207 display: inline; 191 display: inline;
208 position: relative; 192 position: relative;
209 } 193 }
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